/* ================================================
   TRANSFERISTE - ANA STYLE DOSYASI
   Versiyon: 1.0
   Son Güncelleme: Aralık 2024
   ================================================ */


/* ================================================
   1. ROOT DEĞİŞKENLER (CSS Variables)
   ================================================ */
:root {
    --primary-orange: #ff6600;
    --primary-orange-hover: #e55a00;
    --primary-orange-light: #ff9933;
    --dark-bg: #020202;
    --dark-bg-secondary: #0a0a0a;
    --dark-bg-card: #1a1a1a;
    --dark-bg-card-hover: #222222;
    --light-text: #fcf7f7;
    --muted-text: #9ca3af;
    --border-color: #333333;
    --success-color: #28a745;
    --google-star: #fbbc04;
}


/* ================================================
   2. GLOBAL / BODY STİLLERİ
   ================================================ */
* {
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, system-ui, sans-serif;
    margin: 0;
    padding: 0;
    background: var(--dark-bg);
    color: var(--light-text);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Bootstrap bg-light override for dark theme */
.bg-light {
    background: var(--dark-bg-secondary) !important;
}


/* ================================================
   3. ORTAK ELEMANLAR (Divider, Highlight, vb.)
   ================================================ */
.highlight-orange {
    color: var(--primary-orange);
    font-weight: 700;
}

.divider {
    border: none;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 102, 0, 0.3), transparent);
    margin: 0;
}


/* ================================================
   4. SECTION BAŞLIKLARI
   ================================================ */
.section-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--light-text) !important;
    margin-bottom: 0.5rem;
}

.section-subtitle {
    color: var(--muted-text);
    font-size: 1.1rem;
}


/* ================================================
   5. HERO SECTION
   ================================================ */

/* ---------- Hero Section Container ---------- */
.hero-section {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 50%, #0d0d0d 100%);
    position: relative;
    overflow: hidden;
}

/* Subtle background pattern */
.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 20% 50%, rgba(255, 102, 0, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255, 102, 0, 0.02) 0%, transparent 40%);
    pointer-events: none;
}

/* ---------- Trust Bar ---------- */
.hero-trust-bar {
    background: rgba(255, 102, 0, 0.1);
    border-bottom: 1px solid rgba(255, 102, 0, 0.2);
    padding: 12px 0;
    position: relative;
    z-index: 10;
}

.trust-items {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    flex-wrap: wrap;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #fff;
    font-size: 0.9rem;
}

.trust-icon {
    font-size: 1.1rem;
}

.trust-item:nth-child(2) .trust-icon {
    color: #00c853;
    font-weight: bold;
}

.trust-text strong {
    color: var(--primary-orange, #ff6600);
}

.trust-detail {
    color: #aaa;
    font-size: 0.85rem;
}

/* ---------- Hero Main Content ---------- */
.hero-main {
    flex: 1;
    display: flex;
    align-items: center;
    padding: 40px 0;
    position: relative;
    z-index: 5;
}

/* ---------- Hero Image ---------- */
.hero-image-col {
    margin-bottom: 30px;
}

.hero-image-wrapper {
    position: relative;
    display: inline-block;
    margin-left: -50px;
    margin-top: 20px;
}

.hero-image {
    width: 100%;
    max-width: 650px;
    height: auto;
    border-radius: 16px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
}

/* Floating Badge on Image */
.hero-floating-badge {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 102, 0, 0.3);
    border-radius: 12px;
    padding: 12px 16px;
    display: flex;
    align-items: center;
    gap: 10px;
    animation: float 3s ease-in-out infinite;
}

.badge-icon {
    font-size: 1.5rem;
}

.badge-text {
    font-size: 0.8rem;
    color: #ccc;
    line-height: 1.3;
}

.badge-text strong {
    color: var(--primary-orange, #ff6600);
    display: block;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}

/* ---------- Hero Content ---------- */
.hero-content-col {
    padding-left: 30px;
}

/* Brand */
.hero-brand {
    text-transform: uppercase;
    color: var(--primary-orange, #ff6600);
    font-weight: 700;
    letter-spacing: 3px;
    font-size: 0.95rem;
    margin-bottom: 15px;
}

/* H1 Title */
.hero-title {
    font-size: clamp(2rem, 5vw, 3.2rem);
    font-weight: 800;
    color: #fff;
    line-height: 1.15;
    margin-bottom: 15px;
}

.text-gradient {
    background: linear-gradient(135deg, #ff6600 0%, #ff8533 50%, #ffaa00 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* H2 Subtitle */
.hero-subtitle {
    font-size: clamp(1rem, 2.5vw, 1.25rem);
    font-weight: 400;
    color: #aaa;
    margin-bottom: 20px;
    line-height: 1.5;
}

/* Description */
.hero-description {
    font-size: 1rem;
    color: #ccc;
    line-height: 1.7;
    margin-bottom: 25px;
}

.hero-description mark {
    background: linear-gradient(135deg, rgba(255, 102, 0, 0.2), rgba(255, 102, 0, 0.1));
    color: #fff;
    padding: 2px 8px;
    border-radius: 4px;
    font-weight: 500;
}

.hero-description strong {
    color: #fff;
}

/* ---------- Destination Quick Links ---------- */
.hero-destinations {
    margin-bottom: 25px;
}

.destinations-label {
    display: block;
    font-size: 0.85rem;
    color: #888;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.destinations-links {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.destination-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #fff;
    padding: 8px 16px;
    border-radius: 30px;
    font-size: 0.9rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.destination-link:hover {
    background: var(--primary-orange, #ff6600);
    border-color: var(--primary-orange, #ff6600);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(255, 102, 0, 0.3);
}

/* Featured Destination (Kuşadası) */
.destination-featured {
    background: linear-gradient(135deg, rgba(255, 102, 0, 0.2), rgba(255, 102, 0, 0.1));
    border-color: var(--primary-orange, #ff6600);
    position: relative;
}

.destination-featured::before {
    content: '★';
    position: absolute;
    top: -8px;
    right: -5px;
    background: var(--primary-orange, #ff6600);
    color: #fff;
    font-size: 0.6rem;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.dest-icon {
    font-size: 1rem;
}

/* ---------- Price Teaser ---------- */
.hero-price-teaser {
    background: linear-gradient(135deg, rgba(255, 102, 0, 0.15), rgba(255, 102, 0, 0.05));
    border: 1px solid rgba(255, 102, 0, 0.3);
    border-radius: 12px;
    padding: 15px 20px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 25px;
}

.price-label {
    color: #aaa;
    font-size: 0.95rem;
}

.price-value {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--primary-orange, #ff6600);
}

.price-suffix {
    color: #888;
    font-size: 0.9rem;
}

/* ---------- CTA Buttons ---------- */
.hero-cta {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.hero-btn-primary {
    background: linear-gradient(135deg, #ff6600 0%, #ff8533 100%);
    border: none;
    padding: 14px 28px;
    font-weight: 600;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.hero-btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255, 102, 0, 0.4);
}

.hero-btn-whatsapp {
    background: #25d366;
    border: none;
    padding: 14px 28px;
    font-weight: 600;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.hero-btn-whatsapp:hover {
    background: #1fb855;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.4);
}

.hero-btn-prices {
    border: 1px solid rgba(255, 255, 255, 0.3);
    padding: 14px 28px;
    font-weight: 600;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.hero-btn-prices:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
}

/* ---------- Stats Bar ---------- */
.hero-stats-bar {
    background: rgba(0, 0, 0, 0.5);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 30px 0;
    position: relative;
    z-index: 10;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    text-align: center;
}

.stat-item {
    padding: 10px;
}

.stat-number {
    display: block;
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 800;
    color: var(--primary-orange, #ff6600);
    margin-bottom: 5px;
}

.stat-label {
    font-size: 0.85rem;
    color: #aaa;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ---------- Scroll Indicator ---------- */
.hero-scroll-indicator {
    position: absolute;
    bottom: 100px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    z-index: 10;
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

.hero-scroll-indicator:hover {
    opacity: 1;
}

.scroll-text {
    display: block;
    font-size: 0.75rem;
    color: #888;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 8px;
}

.scroll-arrow {
    animation: bounce 2s ease-in-out infinite;
}

.scroll-arrow i {
    font-size: 1.2rem;
    color: var(--primary-orange, #ff6600);
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(10px); }
    60% { transform: translateY(5px); }
}

/* ========================================= */
/* RESPONSIVE                               */
/* ========================================= */

/* Tablet */
@media (max-width: 991px) {
    .hero-section {
        min-height: auto;
    }
    
    .hero-main {
        padding: 30px 0;
    }
    
    .hero-content-col {
        padding-left: 0;
        text-align: center;
        margin-top: 30px;
    }
    
    .hero-image-wrapper {
        display: block;
        text-align: center;
        margin-left: 0;   /* Reset */
        margin-top: 0;    /* Reset */
    }
    
    .hero-image {
        max-width: 100%;
        width: 100%;
    }
    
    .hero-floating-badge {
        bottom: 10px;
        left: 10px;
    }
    
    .destinations-links {
        justify-content: center;
    }
    
    .hero-price-teaser {
        justify-content: center;
        width: 100%;
    }
    
    .hero-cta {
        justify-content: center;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .hero-scroll-indicator {
        display: none;
    }
}

/* Mobile */
@media (max-width: 575px) {
    .trust-items {
        gap: 15px;
    }
    
    .trust-item {
        font-size: 0.8rem;
    }
    
    .trust-detail {
        display: none;
    }
    
    .hero-title {
        font-size: 1.75rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .destination-link {
        padding: 6px 12px;
        font-size: 0.85rem;
    }
    
    .hero-btn-primary,
    .hero-btn-whatsapp,
    .hero-btn-prices {
        width: 100%;
        justify-content: center;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .stat-number {
        font-size: 1.3rem;
    }
    
    .stat-label {
        font-size: 0.75rem;
    }
}

/* ================================================
   6. PRICING SECTION (Fiyat Tablosu + Resimli)
   ================================================ */
.pricing-section {
    background: var(--dark-bg-secondary);
}

.pricing-table-wrapper {
    background: var(--dark-bg-card);
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid var(--border-color);
}

.pricing-table {
    width: 100%;
    border-collapse: collapse;
    margin: 0;
}

.pricing-table thead {
    background: linear-gradient(135deg, rgba(255, 102, 0, 0.15), rgba(255, 102, 0, 0.05));
}

.pricing-table th {
    padding: 1rem 1.25rem;
    color: var(--primary-orange) !important;
    font-weight: 600;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-bottom: 2px solid var(--primary-orange);
}

.pricing-table td {
    padding: 1rem 1.25rem;
    border-bottom: 1px solid var(--border-color);
    vertical-align: middle;
}

.pricing-table tbody tr {
    transition: all 0.3s ease;
}

.pricing-table tbody tr:hover {
    background: rgba(255, 102, 0, 0.08);
}

.pricing-table tbody tr:last-child td {
    border-bottom: none;
}

/* Route Name with Thumbnail */
.route-name {
    display: flex;
    align-items: center;
    gap: 0.875rem;
}

/* Mini Thumbnail (40x40) */
.route-thumb-mini {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    overflow: hidden;
    flex-shrink: 0;
    border: 2px solid var(--border-color);
    transition: all 0.3s ease;
}

.pricing-table tbody tr:hover .route-thumb-mini {
    border-color: var(--primary-orange);
}

.route-thumb-mini img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.pricing-table tbody tr:hover .route-thumb-mini img {
    transform: scale(1.1);
}

/* Route Info */
.route-info {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
}

.route-info strong {
    color: #ffffff !important;
    font-size: 0.95rem;
    font-weight: 600;
}

.badge-popular {
    display: inline-block;
    background: var(--primary-orange);
    color: #ffffff !important;
    font-size: 0.6rem;
    padding: 0.15rem 0.4rem;
    border-radius: 3px;
    font-weight: 700;
    text-transform: uppercase;
    width: fit-content;
}

/* Info Text (Mesafe, Süre) */
.info-text {
    color: #aaaaaa !important;
    font-size: 0.9rem;
}

/* Price Cell */
.price-cell {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.1rem;
}

.price-try {
    color: var(--primary-orange) !important;
    font-size: 1.25rem;
    font-weight: 700;
}

.price-eur {
    color: #777777 !important;
    font-size: 0.75rem;
}

/* Detail Button */
.btn-detail {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    color: var(--primary-orange) !important;
    font-size: 1.4rem;
    transition: all 0.3s ease;
    border-radius: 50%;
}

.btn-detail:hover {
    color: #ffffff !important;
    background: var(--primary-orange);
    transform: translateX(3px);
}

/* Pricing Footer */
.pricing-footer {
    background: rgba(255, 102, 0, 0.05);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 1.25rem 1.5rem;
}

.pricing-features-inline {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.pricing-features-inline span {
    color: #bbbbbb !important;
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.pricing-features-inline i {
    color: var(--success-color) !important;
}

/* Outline Orange Button */
.btn-outline-orange {
    border: 2px solid var(--primary-orange) !important;
    color: var(--primary-orange) !important;
    background: transparent !important;
    padding: 0.6rem 1.25rem;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-outline-orange:hover {
    background: var(--primary-orange) !important;
    color: #ffffff !important;
}

/* ---- Responsive ---- */
@media (max-width: 768px) {
    .pricing-table th,
    .pricing-table td {
        padding: 0.875rem 0.75rem;
    }
    
    .route-thumb-mini {
        width: 36px;
        height: 36px;
        border-radius: 6px;
    }
    
    .route-info strong {
        font-size: 0.85rem;
    }
    
    .badge-popular {
        font-size: 0.55rem;
        padding: 0.1rem 0.3rem;
    }
    
    .price-try {
        font-size: 1.1rem;
    }
    
    .pricing-features-inline {
        flex-direction: column;
        gap: 0.5rem;
    }
}

@media (max-width: 576px) {
    .route-name {
        gap: 0.625rem;
    }
    
    .route-thumb-mini {
        width: 32px;
        height: 32px;
    }
    
    .route-info strong {
        font-size: 0.8rem;
    }
    
    .price-try {
        font-size: 1rem;
    }
    
    .btn-detail {
        width: 32px;
        height: 32px;
        font-size: 1.2rem;
    }
}

/* ================================================
   7. SERVICES SECTION (GBP SEO + Blacklane Style)
   ================================================ */
.services-section {
    background: var(--dark-bg-secondary) !important;
}

.services-grid {
    display: grid !important;
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 2rem !important;
}

/* Service Card - Minimal */
.service-card-minimal {
    display: flex !important;
    flex-direction: column !important;
    background: transparent !important;
    border: none !important;
    padding: 0 !important;
}

/* Service Image */
.service-image-wrapper {
    display: block !important;
    border-radius: 16px !important;
    overflow: hidden !important;
    margin-bottom: 1.25rem !important;
    aspect-ratio: 5 / 3 !important;
    background: var(--dark-bg-card) !important;
    border: 1px solid var(--border-color) !important;
    min-height: 160px !important;
}

.service-image-wrapper img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    transition: transform 0.4s ease !important;
}

.service-card-minimal:hover .service-image-wrapper {
    border-color: var(--primary-orange) !important;
}

.service-card-minimal:hover .service-image-wrapper img {
    transform: scale(1.05) !important;
}

/* Service Content */
.service-content {
    display: flex !important;
    flex-direction: column !important;
    flex-grow: 1 !important;
}

/* Service Title */
.service-title-minimal {
    font-size: 1.1rem !important;
    font-weight: 700 !important;
    color: #ffffff !important;
    margin: 0 0 0.75rem 0 !important;
    line-height: 1.3 !important;
    display: flex !important;
    align-items: center !important;
    gap: 0.5rem !important;
    flex-wrap: wrap !important;
}

/* Service Badge */
.service-badge {
    display: inline-block !important;
    background: var(--primary-orange) !important;
    color: #ffffff !important;
    font-size: 0.6rem !important;
    font-weight: 700 !important;
    padding: 0.2rem 0.5rem !important;
    border-radius: 4px !important;
    text-transform: uppercase !important;
    letter-spacing: 0.5px !important;
}

/* Service Description */
.service-desc-minimal {
    color: #999999 !important;
    font-size: 0.9rem !important;
    line-height: 1.65 !important;
    margin: 0 0 1rem 0 !important;
    flex-grow: 1 !important;
}

.service-desc-minimal strong {
    color: #cccccc !important;
    font-weight: 600 !important;
}

/* Service Link */
.service-link-minimal {
    display: inline-block !important;
    color: var(--primary-orange) !important;
    font-size: 0.9rem !important;
    font-weight: 600 !important;
    text-decoration: none !important;
    padding-bottom: 2px !important;
    border-bottom: 1px solid transparent !important;
    transition: all 0.3s ease !important;
    width: fit-content !important;
}

.service-link-minimal:hover {
    color: #ff8533 !important;
    border-bottom-color: #ff8533 !important;
}

/* Services CTA */
.services-cta {
    background: rgba(255, 102, 0, 0.05) !important;
    border: 1px solid var(--border-color) !important;
    border-radius: 12px !important;
    padding: 1.5rem 2rem !important;
}

.services-cta-text {
    color: #999999 !important;
    margin-bottom: 1rem !important;
}

/* ---- Responsive ---- */
@media (max-width: 992px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 1.5rem !important;
    }
}

@media (max-width: 576px) {
    .services-grid {
        grid-template-columns: 1fr !important;
        gap: 2rem !important;
    }
    
    .service-image-wrapper {
        border-radius: 12px !important;
        aspect-ratio: 16 / 9 !important;
        min-height: 180px !important;
    }
    
    .service-title-minimal {
        font-size: 1rem !important;
    }
    
    .service-desc-minimal {
        font-size: 0.85rem !important;
    }
}
/* ================================================
   8. ROUTES SECTION (Entity-Based SEO + Geo Images)
   Layout: Resim solda (140px), içerik sağda
   ================================================ */
.routes-section {
    background: var(--dark-bg);
}

.routes-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

/* Route Entity Card - İki Kolonlu Grid Layout */
.route-entity-card {
    background: var(--dark-bg-card);
    border-radius: 16px;
    padding: 1.75rem;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
    display: grid;
    grid-template-columns: 140px 1fr;
    gap: 1.5rem;
}

.route-entity-card:hover {
    border-color: var(--primary-orange);
    box-shadow: 0 10px 40px rgba(255, 102, 0, 0.15);
    transform: translateY(-3px);
}

/* Route Thumbnail (Sol Kolon - Sabit) */
.route-thumb {
    grid-row: 1 / -1;
    width: 160px;
    height: 340px;
    border-radius: 12px;
    overflow: hidden;
    margin: 0;
    border: 2px solid var(--border-color);
    transition: all 0.3s ease;
    align-self: start;
    flex-shrink: 0;
}

.route-entity-card:hover .route-thumb {
    border-color: var(--primary-orange);
}

.route-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.route-entity-card:hover .route-thumb img {
    transform: scale(1.1);
}

/* Route Content (Sağ Kolon - Tüm İçerik) */
.route-card-content {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    min-width: 0;
}

/* Route Header (Başlık + Meta) */
.route-entity-header {
    padding-bottom: 0;
    margin-bottom: 0;
    border-bottom: none;
}

.route-header-content h3 {
    font-size: 1.1rem;
    font-weight: 700;
    margin: 0 0 0.5rem 0;
    line-height: 1.3;
}

.route-header-content h3 a {
    color: #ffffff !important;
    text-decoration: none;
    transition: color 0.3s ease;
}

.route-header-content h3 a:hover {
    color: var(--primary-orange) !important;
}

/* Route Meta (Mesafe, Süre, Badge) */
.route-entity-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    align-items: center;
}

.route-entity-meta span {
    font-size: 0.8rem;
    color: #999999 !important;
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

.route-entity-meta i {
    color: var(--primary-orange) !important;
    font-size: 0.75rem;
}

/* Badges */
.badge-popular,
.badge-cruise,
.badge-unesco,
.badge-cittaslow {
    font-size: 0.65rem !important;
    padding: 0.2rem 0.5rem;
    border-radius: 4px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

.badge-popular {
    background: var(--primary-orange);
    color: #ffffff !important;
}

.badge-cruise {
    background: #0077b6;
    color: #ffffff !important;
}

.badge-unesco {
    background: #1d4e89;
    color: #ffffff !important;
}

.badge-cittaslow {
    background: #2d6a4f;
    color: #ffffff !important;
}

/* Route Content (Entity Text) */
.route-entity-content {
    flex-grow: 1;
}

.route-entity-content p {
    color: #bbbbbb !important;
    font-size: 0.9rem;
    line-height: 1.7;
    margin-bottom: 0.5rem;
}

.route-entity-content p:last-child {
    margin-bottom: 0;
}

.route-entity-content strong {
    color: #ffffff !important;
}

.route-entity-content em {
    color: #cccccc !important;
    font-style: normal;
}

/* Place Tags */
.route-entity-places {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    padding-top: 0.75rem;
    border-top: 1px solid var(--border-color);
}

.place-tag {
    background: rgba(255, 102, 0, 0.1);
    color: var(--primary-orange) !important;
    padding: 0.3rem 0.6rem;
    border-radius: 6px;
    font-size: 0.75rem;
    font-weight: 500;
}

/* Route Link */
.route-entity-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary-orange) !important;
    font-weight: 600;
    font-size: 0.9rem;
    text-decoration: none;
    transition: all 0.3s ease;
    margin-top: auto;
    padding-top: 0.5rem;
}

.route-entity-link:hover {
    color: #ff8533 !important;
    gap: 0.75rem;
}

.route-entity-link i {
    transition: transform 0.3s ease;
}

.route-entity-link:hover i {
    transform: translateX(3px);
}

/* Routes CTA */
.routes-cta {
    background: rgba(255, 102, 0, 0.05);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 2rem;
}

.routes-cta-text {
    color: #bbbbbb !important;
    font-size: 1rem;
    margin-bottom: 1.25rem;
}

.routes-cta-text strong {
    color: #ffffff !important;
}

/* ---- Responsive ---- */
@media (max-width: 992px) {
    .routes-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 576px) {
    .route-entity-card {
        padding: 1.25rem;
        grid-template-columns: 100px 1fr;
        gap: 1rem;
    }
    
    .route-thumb {
        width: 100px;
        height: 100px;
        border-radius: 10px;
    }
    
    .route-header-content h3 {
        font-size: 0.95rem;
    }
    
    .route-entity-meta {
        gap: 0.5rem;
    }
    
    .route-entity-content p {
        font-size: 0.85rem;
    }
    
    .place-tag {
        font-size: 0.7rem;
        padding: 0.2rem 0.4rem;
    }
}
/* ================================================
   9. REVIEWS SECTION (Müşteri Yorumları)
   ================================================ */
.reviews-section {
    background: var(--dark-bg);
}

.google-rating-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--dark-bg-card);
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    margin-top: 1rem;
}

.rating-stars {
    color: var(--google-star) !important;
}

.rating-score {
    font-weight: 700;
    color: #ffffff !important;
}

.rating-count {
    color: #aaaaaa !important;
    font-size: 0.9rem;
}

.review-card {
    background: var(--dark-bg-card);
    border-radius: 12px;
    padding: 1.5rem;
    height: 100%;
    border: 1px solid var(--border-color);
}

.review-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.review-avatar {
    width: 50px;
    height: 50px;
    background: var(--primary-orange);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
    color: #ffffff !important;
}

.review-name {
    font-size: 1rem;
    font-weight: 600;
    color: #ffffff !important;
    margin: 0;
}

.review-route {
    font-size: 0.8rem;
    color: #aaaaaa !important;
}

.review-date {
    margin-left: auto;
    font-size: 0.8rem;
    color: #aaaaaa !important;
}

.review-stars {
    color: var(--google-star) !important;
    margin-bottom: 0.75rem;
}

.review-text {
    color: #bbbbbb !important;
    font-size: 0.95rem;
    line-height: 1.6;
    font-style: italic;
}

.review-source {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid var(--border-color);
    font-size: 0.8rem;
    color: #888888 !important;
}


/* ================================================
   10. VIDEO SECTION (Videolar)
   ================================================ */
.video-section {
    background: var(--dark-bg);
}

.video-card {
    background: var(--dark-bg-card);
    border-radius: 12px;
    overflow: hidden;
    transition: transform 0.3s ease;
}

.video-card:hover {
    transform: translateY(-5px);
}

.video-thumbnail {
    position: relative;
    cursor: pointer;
}

.video-thumbnail img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.video-play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 4rem;
    color: var(--primary-orange) !important;
    opacity: 0.9;
    transition: all 0.3s ease;
}

.video-thumbnail:hover .video-play-btn {
    transform: translate(-50%, -50%) scale(1.1);
    opacity: 1;
}

.video-content {
    padding: 1rem;
}

.video-title {
    font-size: 1rem;
    font-weight: 600;
    color: #ffffff !important;
    margin-bottom: 0.5rem;
}

.video-desc {
    font-size: 0.85rem;
    color: #aaaaaa !important;
}


/* ================================================
   11. SERVICE AREAS SECTION (Hizmet Bölgeleri / Local SEO)
   ================================================ */
.service-areas-section {
    background: var(--dark-bg-secondary);
}

.area-card {
    background: var(--dark-bg-card);
    border-radius: 12px;
    padding: 1.5rem;
    border: 1px solid var(--border-color);
    height: 100%;
    transition: all 0.3s ease;
}

.area-card:hover {
    border-color: var(--primary-orange);
    box-shadow: 0 10px 30px rgba(255, 102, 0, 0.1);
}

.area-header {
    margin-bottom: 1rem;
}

.area-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: #ffffff !important;
    margin-bottom: 0.25rem;
}

.area-location {
    font-size: 0.85rem;
    color: #aaaaaa !important;
}

.area-location i {
    color: var(--primary-orange) !important;
}

.area-description {
    color: #bbbbbb !important;
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.area-stats {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 1rem;
}

.area-stat {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #aaaaaa !important;
    font-size: 0.85rem;
}

.area-stat i {
    color: var(--primary-orange) !important;
}

.area-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 0.5rem;
}

.area-tag {
    background: rgba(255, 102, 0, 0.1);
    color: var(--primary-orange) !important;
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
    font-size: 0.75rem;
}

.area-actions {
    display: flex;
    gap: 0.5rem;
    margin-top: 1rem;
}


/* ================================================
   12. FAQ SECTION
   ================================================ */
.faq-section {
    background: var(--dark-bg);
}

/* Tabs */
.faq-section .nav-pills {
    gap: 0.5rem;
}

.faq-section .nav-pills .nav-link {
    background: var(--dark-bg-card);
    color: #aaaaaa;
    border: 1px solid var(--border-color);
    border-radius: 25px;
    padding: 0.6rem 1.25rem;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.faq-section .nav-pills .nav-link:hover {
    color: var(--primary-orange);
    border-color: var(--primary-orange);
}

.faq-section .nav-pills .nav-link.active {
    background: var(--primary-orange);
    color: #ffffff;
    border-color: var(--primary-orange);
}

/* Accordion */
.faq-section .accordion-item {
    background: var(--dark-bg-card);
    border: 1px solid var(--border-color);
    border-radius: 12px !important;
    margin-bottom: 0.75rem;
    overflow: hidden;
}

.faq-section .accordion-button {
    background: var(--dark-bg-card);
    color: #ffffff;
    font-weight: 500;
    padding: 1.25rem;
    box-shadow: none;
}

.faq-section .accordion-button:not(.collapsed) {
    background: rgba(255, 102, 0, 0.1);
    color: var(--primary-orange);
}

.faq-section .accordion-button::after {
    filter: invert(1);
}

.faq-section .accordion-button:not(.collapsed)::after {
    filter: invert(60%) sepia(100%) saturate(500%) hue-rotate(360deg);
}

.faq-section .accordion-button span {
    flex: 1;
}

.faq-section .accordion-body {
    background: var(--dark-bg-secondary);
    color: #cccccc;
    padding: 1.5rem;
    line-height: 1.7;
}

.faq-section .accordion-body strong {
    color: #ffffff;
}

.faq-section .accordion-body ul {
    padding-left: 1.25rem;
    margin-bottom: 1rem;
}

.faq-section .accordion-body ul li {
    margin-bottom: 0.5rem;
}

/* Tables inside FAQ */
.faq-section .table {
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.faq-section .table th {
    background: rgba(255, 102, 0, 0.15);
    color: var(--primary-orange);
    font-weight: 600;
    border-color: var(--border-color);
}

.faq-section .table td {
    border-color: var(--border-color);
    vertical-align: middle;
}

.faq-section .table-dark {
    --bs-table-bg: var(--dark-bg-card);
    --bs-table-border-color: var(--border-color);
}

/* Cards inside FAQ */
.faq-section .card {
    border: none;
    border-radius: 12px;
}

.faq-section .card-body {
    padding: 1.25rem;
}

/* Alerts inside FAQ */
.faq-section .alert {
    border-radius: 8px;
    border: none;
    font-size: 0.9rem;
}

.faq-section .alert-info {
    background: rgba(13, 202, 240, 0.15);
    color: #0dcaf0;
}

.faq-section .alert-success {
    background: rgba(25, 135, 84, 0.15);
    color: #198754;
}

.faq-section .alert-warning {
    background: rgba(255, 193, 7, 0.15);
    color: #ffc107;
}

/* Multilingual text */
.faq-section .text-muted.small em {
    color: #666666;
    font-size: 0.8rem;
}

/* CTA Box */
.faq-cta {
    background: linear-gradient(135deg, var(--primary-orange), #ff9900);
    border-radius: 16px;
}

.faq-cta .text-white-50 {
    color: rgba(255, 255, 255, 0.7) !important;
}

/* Responsive */
@media (max-width: 768px) {
    .faq-section .nav-pills {
        flex-wrap: nowrap;
        overflow-x: auto;
        padding-bottom: 0.5rem;
    }
    
    .faq-section .nav-pills .nav-link {
        white-space: nowrap;
        font-size: 0.8rem;
        padding: 0.5rem 1rem;
    }
    
    .faq-section .accordion-button {
        padding: 1rem;
        font-size: 0.9rem;
    }
    
    .faq-section .accordion-button i {
        font-size: 1rem;
    }
    
    .faq-section .accordion-body {
        padding: 1rem;
    }
    
    .faq-cta {
        padding: 1.5rem !important;
    }
    
    .faq-cta .btn-lg {
        padding: 0.6rem 1rem;
        font-size: 0.9rem;
    }
}

/* ================================================
   13. BUTTONS (Butonlar)
   ================================================ */
.btn-primary {
    background: linear-gradient(135deg, var(--primary-orange), var(--primary-orange-light)) !important;
    border: none !important;
    padding: 0.9rem 2rem;
    font-weight: 700;
    border-radius: 8px;
    transition: all 0.3s ease;
    color: #ffffff !important;
}

.btn-primary:hover {
    background: linear-gradient(135deg, var(--primary-orange-hover), var(--primary-orange)) !important;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 102, 0, 0.4);
}

.btn-outline-primary {
    border: 2px solid var(--primary-orange) !important;
    color: var(--primary-orange) !important;
    background: transparent !important;
}

.btn-outline-primary:hover {
    background: var(--primary-orange) !important;
    color: #ffffff !important;
}

.btn-success {
    background: #25d366 !important;
    border: none !important;
    color: #ffffff !important;
}

.btn-success:hover {
    background: #1da851 !important;
}


/* ================================================
   14. MAP WRAPPER (Harita)
   ================================================ */
.map-wrapper {
    background: var(--dark-bg-card);
    border-radius: 12px;
    padding: 1.5rem;
    border: 1px solid var(--border-color);
}

.map-wrapper h3 {
    color: #ffffff !important;
}


/* ================================================
   15. NAVBAR (Üst Menü) - Eğer gerekirse
   ================================================ */
/* Navbar stilleri navbar.php içinde veya ayrı dosyada olabilir */


/* ================================================
   16. FOOTER (Alt Bilgi) - Eğer gerekirse
   ================================================ */
/* Footer stilleri footer.php içinde veya ayrı dosyada olabilir */


/* ================================================
   17. UTILITY CLASSES (Yardımcı Sınıflar)
   ================================================ */
.text-orange {
    color: var(--primary-orange) !important;
}

.bg-dark-card {
    background: var(--dark-bg-card) !important;
}

.border-orange {
    border-color: var(--primary-orange) !important;
}


/* ================================================
   18. RESPONSIVE (Mobil Uyumluluk)
   ================================================ */
@media (max-width: 992px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 1.75rem;
    }
    
    .pricing-price .amount {
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 1.8rem;
    }
    
    .hero-section {
        padding-top: 100px;
    }
    
    .section-title {
        font-size: 1.5rem;
    }
    
    .pricing-price .amount {
        font-size: 2rem;
    }
    
    .service-header {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .area-stats {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .review-header {
        flex-wrap: wrap;
    }
    
    .review-date {
        width: 100%;
        margin-left: 0;
        margin-top: 0.5rem;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 1.5rem;
    }
    
    .pricing-card {
        padding: 1.5rem;
    }
    
    .pricing-price .amount {
        font-size: 1.8rem;
    }
    
    .btn-primary,
    .btn-outline-primary {
        padding: 0.75rem 1.5rem;
        font-size: 0.9rem;
    }
    
    .service-tags,
    .route-tags,
    .area-tags {
        gap: 0.3rem;
    }
}
/* ================================================
   15. FLOATING SOCIAL SIDEBAR
   ================================================ */
.social-sidebar {
    position: fixed;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 0;
    z-index: 9999;
}

.social-icon {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff !important;
    font-size: 1.2rem;
    text-decoration: none;
    transition: all 0.3s ease;
    transform: translateX(0);
}

.social-icon:hover {
    transform: translateX(-5px);
    width: 50px;
}

/* WhatsApp */
.social-icon.whatsapp {
    background: #25d366;
}

.social-icon.whatsapp:hover {
    background: #1da851;
}

/* Telefon */
.social-icon.phone {
    background: var(--primary-orange);
}

.social-icon.phone:hover {
    background: var(--primary-orange-hover);
}

/* Instagram */
.social-icon.instagram {
    background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
}

.social-icon.instagram:hover {
    background: linear-gradient(45deg, #e6683c, #dc2743, #cc2366, #bc1888, #f09433);
}

/* Facebook */
.social-icon.facebook {
    background: #1877f2;
}

.social-icon.facebook:hover {
    background: #0d65d9;
}

/* YouTube */
.social-icon.youtube {
    background: #ff0000;
}

.social-icon.youtube:hover {
    background: #cc0000;
}

/* İlk ve son ikon için border-radius */
.social-sidebar .social-icon:first-child {
    border-radius: 8px 0 0 0;
}

.social-sidebar .social-icon:last-child {
    border-radius: 0 0 0 8px;
}

/* Mobilde küçült */
@media (max-width: 768px) {
    .social-sidebar {
        right: 0;
        top: auto;
        bottom: 80px;
    }
    
    .social-icon {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .social-icon:hover {
        width: 45px;
    }
}

/* ================================================
   19. ANİMASYONLAR (Opsiyonel)
   ================================================ */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-fadeInUp {
    animation: fadeInUp 0.5s ease forwards;
}

/* ================================================
   DESTINATION PAGE STYLES
   Bu stilleri style.css dosyasının SONUNA ekleyin
   ================================================ */

/* ================================================
   HOWTO SECTION (Nasıl Rezervasyon Yapılır)
   ================================================ */
.howto-section {
    padding: 5rem 2rem;
    background: var(--dark-bg) !important;
    max-width: 1200px;
    margin: 0 auto;
}

.howto-section .section-header {
    text-align: center;
    margin-bottom: 2rem;
}

.howto-section .section-title {
    color: var(--light-text) !important;
    font-size: 2rem;
    font-weight: 700;
}

.howto-section .section-title span {
    color: var(--primary-orange) !important;
}

.howto-section .section-subtitle {
    color: var(--muted-text) !important;
}

.howto-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.howto-step {
    text-align: center;
    padding: 2rem 1.5rem;
    background: var(--dark-bg-card) !important;
    border-radius: 16px;
    border: 1px solid var(--border-color) !important;
    position: relative;
    transition: all 0.3s ease;
}

.howto-step:hover {
    background: rgba(255, 102, 0, 0.1) !important;
    border-color: var(--primary-orange) !important;
    transform: translateY(-5px);
}

.step-number {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 30px;
    height: 30px;
    background: var(--primary-orange);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.9rem;
}

.step-icon {
    font-size: 2.5rem;
    color: var(--primary-orange);
    margin-bottom: 1rem;
}

.howto-step h3 {
    color: var(--light-text) !important;
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.howto-step p {
    color: var(--muted-text) !important;
    font-size: 0.9rem;
    line-height: 1.5;
    margin: 0;
}

/* HowTo Responsive */
@media (max-width: 992px) {
    .howto-steps {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .howto-steps {
        grid-template-columns: 1fr;
    }
    
    .howto-step {
        padding: 2rem 1rem;
    }
}

/* ================================================
   DESTINATION FAQ SECTION (.faq class için)
   ================================================ */
.faq {
    padding: 6rem 2rem;
    max-width: 900px;
    margin: 0 auto;
    background: var(--dark-bg) !important;
}

.faq .section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.faq .section-title {
    color: var(--light-text) !important;
    font-size: 2rem;
    font-weight: 700;
}

.faq .section-title span {
    color: var(--primary-orange) !important;
}

.faq .section-subtitle {
    color: var(--muted-text) !important;
}

.faq .accordion {
    background: transparent !important;
}

.faq .accordion-item {
    background: var(--dark-bg-card) !important;
    border: 1px solid var(--border-color) !important;
    border-radius: 12px !important;
    margin-bottom: 1rem;
    overflow: hidden;
}

.faq .accordion-item:hover {
    border-color: var(--primary-orange) !important;
}

.faq .accordion-button {
    background: transparent !important;
    color: var(--light-text) !important;
    padding: 1.5rem;
    font-weight: 600;
    font-size: 1.05rem;
    border: none !important;
    box-shadow: none !important;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
}

.faq .accordion-button:hover {
    background: rgba(255, 102, 0, 0.1) !important;
}

.faq .accordion-button:focus {
    box-shadow: none !important;
    outline: none !important;
}

.faq .accordion-button::after {
    display: none;
}

.faq .accordion-icon {
    width: 32px;
    height: 32px;
    background: rgba(255, 102, 0, 0.1);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-orange);
    font-size: 1.25rem;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.faq .accordion-button.active .accordion-icon {
    background: var(--primary-orange);
    color: white;
    transform: rotate(45deg);
}

.faq .accordion-body {
    padding: 0 1.5rem 1.5rem;
    color: var(--muted-text) !important;
    background: transparent !important;
    line-height: 1.7;
}

/* ================================================
   DESTINATION PRICE SECTION
   ================================================ */
.price-section {
    padding: 5rem 2rem;
    background: var(--dark-bg) !important;
}

.price-container {
    max-width: 600px;
    margin: 0 auto;
}

.price-section .section-header {
    text-align: center;
    margin-bottom: 2rem;
}

.price-section .section-title {
    color: var(--light-text) !important;
}

.price-section .section-title span {
    color: var(--primary-orange) !important;
}

.price-section .section-subtitle {
    color: var(--muted-text) !important;
}

.price-card {
    background: var(--dark-bg-card) !important;
    border: 1px solid var(--border-color) !important;
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
}

.price-route {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid var(--border-color);
}

.price-route-point {
    text-align: center;
}

.price-route-point .icon {
    font-size: 1.5rem;
    color: var(--primary-orange);
    margin-bottom: 0.5rem;
}

.price-route-point .name {
    color: var(--light-text);
    font-size: 0.9rem;
    font-weight: 500;
}

.price-route-arrow {
    color: var(--muted-text);
    font-size: 1.5rem;
}

.price-amount {
    margin-bottom: 1.5rem;
}

.price-amount .price-try {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-orange) !important;
}

.price-amount .price-try small {
    font-size: 1rem;
    font-weight: 400;
    color: var(--muted-text);
}

.price-amount .price-eur {
    color: var(--muted-text) !important;
    font-size: 1rem;
    margin-top: 0.25rem;
}

.price-note {
    color: var(--muted-text) !important;
    font-size: 0.85rem;
    margin-bottom: 1.5rem;
}

.price-features {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.price-feature {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--muted-text) !important;
    font-size: 0.9rem;
}

.price-feature i {
    color: #28a745 !important;
}

.price-info {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--border-color);
}

.price-info-item {
    text-align: center;
}

.price-info-item .value {
    color: var(--primary-orange) !important;
    font-size: 1.25rem;
    font-weight: 700;
}

.price-info-item .label {
    color: var(--muted-text) !important;
    font-size: 0.85rem;
}

/* ================================================
   DESTINATION CTA SECTION
   ================================================ */
.cta {
    padding: 6rem 2rem;
    text-align: center;
    background: linear-gradient(135deg, rgba(255, 102, 0, 0.1) 0%, transparent 50%, rgba(255, 102, 0, 0.05) 100%);
    position: relative;
}

.cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 102, 0, 0.3), transparent);
}

.cta h2 {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 800;
    color: var(--light-text) !important;
    margin-bottom: 1rem;
}

.cta h2 span {
    color: var(--primary-orange) !important;
}

.cta p {
    color: var(--muted-text) !important;
    margin-bottom: 2.5rem;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
    font-size: 1.1rem;
}

/* ================================================
   SPEAKABLE (AI/Voice için gizli içerik)
   ================================================ */
.visually-hidden {
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    padding: 0 !important;
    margin: -1px !important;
    overflow: hidden !important;
    clip: rect(0, 0, 0, 0) !important;
    white-space: nowrap !important;
    border: 0 !important;
}

/* ================================================
   BREADCRUMB (Destination Page)
   ================================================ */
.breadcrumb-nav {
    background: rgba(0, 0, 0, 0.5);
    padding: 0.75rem 0;
}

.breadcrumb-nav .breadcrumb {
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    margin: 0;
    padding: 0 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.breadcrumb-nav .breadcrumb-item {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.7);
}

.breadcrumb-nav .breadcrumb-item a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.2s;
}

.breadcrumb-nav .breadcrumb-item a:hover {
    color: var(--primary-orange);
}

.breadcrumb-nav .breadcrumb-item + .breadcrumb-item::before {
    content: "›";
    padding: 0 0.5rem;
    color: rgba(255, 255, 255, 0.5);
}

.breadcrumb-nav .breadcrumb-item.active {
    color: var(--primary-orange);
}

/* ================================================
   DOSYA SONU
   ================================================ */
