/* Kazalı Araç Custom Styles */

/* SVG Icon Styles - With Skeleton Placeholder */
.icon {
    display: inline-block;
    width: 1em;
    height: 1em;
    min-width: 1em;
    min-height: 1em;
    fill: currentColor;
    vertical-align: -0.125em;
    flex-shrink: 0;
    background: transparent;
}

.icon:empty {
    background: rgba(0, 0, 0, 0.05);
    border-radius: 2px;
}

/* Specific icon names - forced dimensions */
.icon-phone,
.icon-whatsapp,
.icon-shield-alt,
.icon-check-circle {
    flex-shrink: 0;
    min-width: 1em;
    min-height: 1em;
    display: inline-block;
}

.icon-2x { 
    width: 2em; 
    height: 2em;
    min-width: 2em;
    min-height: 2em;
    flex-shrink: 0;
}

.icon-2x:empty {
    background: rgba(0, 0, 0, 0.05);
    border-radius: 4px;
}

.icon-3x { 
    width: 3em; 
    height: 3em;
    min-width: 3em;
    min-height: 3em;
    flex-shrink: 0;
}

.icon-3x:empty {
    background: rgba(0, 0, 0, 0.05);
    border-radius: 4px;
}

.icon-lg { 
    width: 1.33em; 
    height: 1.33em;
    min-width: 1.33em;
    min-height: 1.33em;
    vertical-align: -0.25em;
    flex-shrink: 0;
}

:root {
    --primary-color: #0d6efd;
    --secondary-color: #6c757d;
    --success-color: #198754;
    --warning-color: #ffc107;
    --danger-color: #dc3545;
    --info-color: #0dcaf0;
    --light-color: #f8f9fa;
    --dark-color: #212529;
}

/* Global Styles */
html {
    overflow-x: hidden;
}



body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    margin: 0;
    padding: 0;
}

* {
    box-sizing: border-box;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.container-fluid {
    max-width: 100%;
    padding: 0 15px;
}

/* Hero Section */

.hero-section {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%) !important;
    position: relative;
    padding: 80px 0 60px 0; /* Balanced padding */
}

@media (max-width: 768px) {
    .hero-section {
        padding: 40px 0 40px 0; /* Mobile padding */
    }
}

/* Hero Image - CLS Optimization with aspect-ratio */
.hero-media {
    aspect-ratio: 1200 / 519;
    width: 100%;
    max-height: 500px;
    overflow: clip;
    border-radius: 0.5rem;
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
}

.hero-media img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.1);
    opacity: 0.3;
    z-index: 1;
}

.hero-section .container {
    position: relative;
    z-index: 2;
}

.hero-section h1 {
    color: #ffffff !important;
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.2);
}

/* Hero title - Font shift prevention */
.hero-title {
    line-height: 1.1;
    min-height: 2.4em;
}

/* CLS Fix: Hero content - defined in critical CSS (baseof.html head) */
/* Additional hero styling */
.hero-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 1rem;
    width: 100%;
}

.hero-content .lead {
    line-height: 1.8;
    display: block;
}

.hero-content p.small {
    line-height: 1.5;
}

.hero-section .text-warning {
    color: #ffd700 !important;
}

.hero-section .text-white {
    color: #ffffff !important;
}

.hero-section ul li {
    color: #ffffff !important;
    font-size: 1.1rem;
}

.hero-section .btn-warning {
    background-color: #ffc107;
    border-color: #ffc107;
    color: #000;
    font-weight: 600;
}

.hero-section .btn-success {
    background-color: #25d366;
    border-color: #25d366;
    color: #fff;
}

.btn-success {
    background-color: #25d366;
    border-color: #25d366;
    color: #fff !important;
    font-weight: 700;
    text-shadow: 0 1px 2px rgba(0,0,0,0.15);
}

.btn-warning {
    color: #222 !important;
    font-weight: 700;
}

/* Hızlı İletişim başlığı için kontrast artırıcı stil */
.card-header.text-white, .card-header.bg-primary.text-white, .card-header[style*="linear-gradient"] {
    color: #fff !important;
    text-shadow: 0 1px 2px rgba(0,0,0,0.18);
    font-weight: 600;
}

/* Cards */
.card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: none;
    border-radius: 15px;
    overflow: hidden;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.15) !important;
}

.card-body {
    padding: 2rem;
}

.card-body h5 {
    font-weight: 700;
    color: #333;
    margin-bottom: 1rem;
}

.card-body p {
    color: #666;
    line-height: 1.6;
}

.card .text-primary {
    color: #667eea !important;
}

.card .text-success {
    color: #198754 !important;
}

.card .text-info {
    color: #0dcaf0 !important;
}

.card .text-warning {
    color: #ffc107 !important;
}

.service-card-title,
.city-card-title {
    font-size: 0.95rem;
    line-height: 1.4;
    font-weight: 600;
}

.service-card-summary,
.city-card-summary {
    font-size: 0.875rem;
    line-height: 1.5;
}

.service-card-title + .service-card-summary,
.city-card-title + .city-card-summary {
    margin-top: 0.5rem;
}

@media (max-width: 768px) {
    .service-card-title,
    .city-card-title {
        font-size: 0.9rem;
    }

    .service-card-summary,
    .city-card-summary {
        font-size: 0.85rem;
    }
}

/* Sidebar Sticky */
.sidebar-sticky {
    position: sticky;
    top: 80px;
    z-index: 100;
}

.sidebar-services {
    position: static;
}

.sidebar-services-header {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%) !important;
    color: #ffffff !important;
    padding: 1.5rem 1rem;
    border-radius: 10px 10px 0 0;
}

.sidebar-services-header h2 {
    color: #ffffff !important;
    font-weight: 700;
    margin: 0;
    font-size: 1.25rem;
}

.sidebar-services-header i {
    color: #ffc107;
}

.list-group-item {
    color: #333 !important;
    background-color: #fff !important;
}

.list-group-item:hover {
    background-color: #f8f9fa !important;
}

/* Buttons */
.btn {
    border-radius: 50px;
    padding: 12px 30px;
    font-weight: 600;
    transition: all 0.3s ease;
    height: 44px;
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.25rem;
    flex-shrink: 0;
}

.btn-lg {
    height: 50px;
    min-height: 50px;
    width: 180px;
    min-width: 180px;
    padding: 0.5rem 1rem;
    white-space: nowrap;
    flex-shrink: 0;
}

.btn-warning {
    width: 200px;
    min-width: 200px;
    padding: 0.5rem 1.5rem;
}

.btn-success {
    width: 160px;
    min-width: 160px;
}

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

/* Navigation */
/* Navbar - CLS Optimized */
.navbar {
    background-color: #ffffff !important;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 1000;
    height: 70px;
    min-height: 70px;
}

/* Navbar collapse - no transition to prevent CLS */
.navbar-collapse {
    transition: none !important;
}

.navbar-collapse.collapsing {
    transition: none !important;
    height: auto !important;
}

.navbar-toggler {
    border: 1px solid rgba(0,0,0,.1);
    padding: 0.25rem 0.5rem;
    width: 44px;
    height: 44px;
    min-width: 44px;
    min-height: 44px;
}

.navbar-toggler-icon {
    width: 1.5em;
    height: 1.5em;
    display: inline-block;
    vertical-align: middle;
    background-repeat: no-repeat;
    background-position: center;
    background-size: 100%;
}

/* Navbar container constraint */
header .container {
    max-width: 1200px;
    padding-left: 2rem;
    padding-right: 2rem;
    margin: 0 auto;
}

@media (min-width: 1600px) {
    header .container {
        max-width: 1400px;
        padding-left: 4rem;
        padding-right: 4rem;
    }
}

@media (max-width: 1200px) {
    header .container {
        max-width: 960px;
        padding-left: 1.5rem;
        padding-right: 1.5rem;
    }
}

@media (max-width: 992px) {
    header .container {
        max-width: 100%;
        padding-left: 1rem;
        padding-right: 1rem;
    }
    
    .navbar-brand {
        margin-left: 0 !important;
    }
    
    .navbar .btn-success,
    .navbar .btn-warning {
        margin-right: 0 !important;
    }
}

/* Main content padding removed - now using body padding to prevent CLS */

/* CLS Fix: Sections flexible min-height */
section.py-5 {
    min-height: 300px;
}

section.hero-section {
    min-height: 450px;
}

.navbar-brand {
    font-size: 1.5rem;
    font-weight: 700;
    color: #667eea !important;
    margin-left: 2rem;
    width: 180px;
    min-height: 48px;
    display: inline-flex;
    align-items: center;
    flex-shrink: 0;
}

.navbar-brand:empty::before {
    content: '';
    display: inline-block;
    width: 180px;
    height: 48px;
    background: rgba(0, 0, 0, 0.03);
}

.navbar-brand i {
    color: #667eea;
}

.navbar .btn-success, 
.navbar .btn-warning {
    margin-right: 2rem;
}

.navbar-nav .nav-link {
    font-weight: 500;
    margin: 0 5px;
    transition: color 0.3s ease;
    color: #333 !important;
    min-height: 40px;
    display: inline-flex;
    align-items: center;
    padding: 0.5rem 1rem;
}

.navbar-nav .nav-item {
    min-height: 40px;
    display: flex;
    align-items: center;
}

.navbar-nav .nav-link:hover {
    color: #667eea !important;
}

.navbar .btn-warning {
    background-color: #ffc107;
    border-color: #ffc107;
    color: #000;
    min-height: 38px;
    min-width: 165px;
    width: auto;
    padding: 0.375rem 1rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    white-space: nowrap;
}

.navbar .btn-success {
    background-color: #25d366 !important;
    border-color: #25d366 !important;
    color: #fff !important;
    min-height: 38px;
    min-width: 120px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.btn-success {
    background-color: #25d366 !important;
    border-color: #25d366 !important;
    color: #ffffff !important;
    font-weight: 700 !important;
    text-shadow: 0 1px 2px rgba(0,0,0,0.2);
}

.btn-success:hover {
    background-color: #20b858 !important;
    border-color: #20b858 !important;
    color: #ffffff !important;
}

.btn-warning {
    background-color: #ffc107 !important;
    border-color: #ffc107 !important;
    color: #000000 !important;
    font-weight: 700 !important;
}

.btn-warning:hover {
    background-color: #ffb300 !important;
    border-color: #ffb300 !important;
    color: #000000 !important;
}

.dropdown-menu {
    border: none;
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
    border-radius: 10px;
    z-index: 1050;
    min-width: 250px;
    position: absolute !important;
    top: 100% !important;
    left: 0 !important;
    margin: 0 !important;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: opacity 0.15s ease, transform 0.15s ease, visibility 0.15s ease;
    will-change: opacity, transform;
    display: block !important;
}

.dropdown-menu.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* Card header text contrast */
.card-header.text-white, 
.card-header.bg-primary.text-white, 
.card-header[style*="linear-gradient"] {
    color: #fff !important;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.3);
}

.card-header h2, 
.card-header h5 {
    color: #ffffff !important;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.3);
}

.navbar .dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
}

/* Mobile first: Bootstrap default dropdown behavior */
.navbar-nav .dropdown .dropdown-toggle {
    cursor: pointer;
    pointer-events: auto !important;
}

/* Mobile: Dropdown menü tam genişlik ve daha iyi görünüm */
@media (max-width: 991px) {
    .navbar-brand {
        min-width: 150px !important;
    }

    /* Mobile menu container - white background with scroll */
    .navbar-collapse {
        background-color: #ffffff !important;
        padding: 1rem 0;
        margin-top: 0.5rem;
        border-radius: 0.5rem;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
        max-height: calc(100vh - 100px);
        overflow-y: auto;
        overflow-x: hidden;
    }

    /* Mobile: Dropdown toggle - ensure clickable */
    .navbar-nav .dropdown-toggle {
        cursor: pointer;
        pointer-events: auto !important;
        user-select: none;
    }

    /* Mobile: Dropdown menu - Vanilla JS behavior */
    .navbar-nav .dropdown-menu {
        width: 100%;
        border: none;
        box-shadow: none;
        background-color: #f8f9fa;
        position: static !important;
        transform: none !important;
        margin-top: 0.5rem;
        opacity: 1 !important;
        visibility: visible !important;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease-out;
        -webkit-overflow-scrolling: touch;
    }

    /* Mobile: Show dropdown with .show class */
    .navbar-nav .dropdown-menu.show {
        max-height: 500px;
        overflow-y: auto;
    }

    /* Mobile: Touch target size */
    .navbar-nav .nav-link {
        min-height: 48px;
        padding: 12px 16px;
        display: flex;
        align-items: center;
    }

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

    .navbar-nav .dropdown-item {
        padding: 0.75rem 1.5rem;
    }

    .navbar-nav .dropdown-item:hover {
        background-color: #e9ecef;
    }

    .navbar-nav .nav-item.mt-2.mt-lg-0 {
        margin-top: 0.5rem !important;
    }
}

/* Desktop only: Hover effect */
@media (min-width: 992px) {
    .navbar-nav {
        flex-direction: row;
    }
    
    .navbar-nav .nav-item.mt-2.mt-lg-0 {
        margin-top: 0 !important;
    }
    
    .navbar-nav .dropdown:hover > .dropdown-menu {
        opacity: 1 !important;
        visibility: visible !important;
        transform: translateY(0) !important;
    }

    .navbar-nav .dropdown .dropdown-menu:not(.show) {
        opacity: 0;
        visibility: hidden;
        transform: translateY(-10px);
    }
}

/* SVG Icons */
.icon {
    display: inline-block;
    width: 1em;
    height: 1em;
    fill: currentColor;
    vertical-align: -0.125em;
    transition: transform 0.3s ease;
}

/* Icon sizes */
.icon.fa-lg { font-size: 1.33333em; line-height: 0.75em; vertical-align: -0.0667em; }
.icon.fa-2x { font-size: 2em; }
.icon.fa-3x { font-size: 3em; }
.icon.fa-4x { font-size: 4em; }
.icon.fa-5x { font-size: 5em; }
.icon.fa-6x { font-size: 6em; }
.icon.fa-7x { font-size: 7em; }
.icon.fa-8x { font-size: 8em; }
.icon.fa-9x { font-size: 9em; }
.icon.fa-10x { font-size: 10em; }

/* Icon animations */
.card:hover .icon {
    transform: scale(1.1);
}

.card .icon.fa-3x {
    font-size: 3rem;
    margin-bottom: 1rem;
}

/* Font Awesome classes removed - using SVG icons only */

/* Responsive Images */
img {
    max-width: 100%;
    height: auto;
}

/* Gradient utility classes */
.bg-gradient-default { background: linear-gradient(135deg, #667eea 0%, #764ba2 100%); }
.bg-gradient-hasarli { background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%); }
.bg-gradient-pert { background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%); }
.bg-gradient-fiyat { background: linear-gradient(135deg, #43e97b 0%, #38f9d7 100%); }
.bg-gradient-hasar { background: linear-gradient(135deg, #fa709a 0%, #fee140 100%); }
.bg-gradient-sigorta { background: linear-gradient(135deg, #30cfd0 0%, #330867 100%); }

/* Footer */
footer {
    background: #212529 !important;
    color: white;
}

footer a {
    color: #0dcaf0 !important;
    text-decoration: none;
    transition: color 0.3s ease;
}

footer a:hover {
    color: #ffc107 !important;
}

/* Floating Buttons */
.floating-buttons {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    pointer-events: none;
}

/* Floating buttons - CLS optimized with fixed dimensions */
.floating-btn {
    position: fixed;
    bottom: 20px;
    width: 60px;
    height: 60px;
    min-width: 60px;
    min-height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: white;
    text-decoration: none;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease; /* Only transform, not layout */
    pointer-events: auto;
    z-index: 1001;
    will-change: transform; /* Optimize for animation */
}

.floating-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
    color: white;
}

.whatsapp-btn {
    right: 20px;
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    animation: pulse-whatsapp 2s infinite;
}

.phone-btn {
    left: 20px;
    background: linear-gradient(135deg, #ffc107 0%, #ff9800 100%);
    animation: pulse-phone 2s infinite;
}

/* Pulse animations - only box-shadow, no layout shift */
@keyframes pulse-whatsapp {
    0%, 100% {
        box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
    }
    50% {
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.7);
    }
}

@keyframes pulse-phone {
    0%, 100% {
        box-shadow: 0 4px 12px rgba(255, 193, 7, 0.4);
    }
    50% {
        box-shadow: 0 4px 20px rgba(255, 193, 7, 0.7);
    }
}

/* Disable animations if user prefers reduced motion */
@media (prefers-reduced-motion: reduce) {
    .floating-btn {
        animation: none !important;
    }
}

/* Mobile Responsive - CLS optimized */
@media (max-width: 768px) {
    .floating-btn {
        width: 50px;
        height: 50px;
        min-width: 50px;
        min-height: 50px;
        font-size: 24px;
        bottom: 15px;
    }

    .whatsapp-btn {
        right: 15px;
    }

    .phone-btn {
        left: 15px;
    }
}

/* Respect user motion preferences */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Mobile Optimizations */
@media (max-width: 768px) {
    .display-4 {
        font-size: 1.75rem !important;
    }

    .display-5 {
        font-size: 1.5rem !important;
    }

    .display-6 {
        font-size: 1.25rem !important;
    }

    .btn-lg {
        padding: 10px 20px;
        font-size: 0.9rem;
    }

    .hero-section {
        padding: 3rem 0;
    }

    .container {
        padding-left: 15px;
        padding-right: 15px;
        max-width: 100%;
    }

    header .container {
        padding-left: 15px;
        padding-right: 15px;
    }

    .row {
        margin-left: -10px;
        margin-right: -10px;
    }

    .col, [class*="col-"] {
        padding-left: 10px;
        padding-right: 10px;
    }

    h1 {
        font-size: 1.75rem !important;
    }

    h2 {
        font-size: 1.5rem !important;
    }

    h3 {
        font-size: 1.25rem !important;
    }

    .lead {
        font-size: 1rem !important;
    }

    img {
        max-width: 100%;
        height: auto;
    }
    
    /* Prevent horizontal scrolling */
    body, html {
        overflow-x: hidden;
        max-width: 100%;
    }
    
    /* Fix card widths */
    .card {
        margin-left: 0;
        margin-right: 0;
        max-width: 100%;
    }

    /* Mobile button adjustments */
    .btn-warning {
        width: 100%;
        max-width: 200px;
        font-size: 0.9rem;
    }

    .btn-success {
        width: 100%;
        max-width: 160px;
    }

    .btn-lg {
        width: 100%;
        max-width: 200px;
        padding: 0.5rem 1rem;
    }
}

/* Loading Animation */
.loading {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 3px solid rgba(255,255,255,.3);
    border-radius: 50%;
    border-top-color: #fff;
    animation: spin 1s ease-in-out infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* Contact Form */
.form-control {
    border-radius: 10px;
    border: 2px solid #e9ecef;
    padding: 12px 15px;
    transition: border-color 0.3s ease;
}

.form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(13, 110, 253, 0.25);
}

/* Scroll to Top */
.scroll-to-top {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: var(--primary-color);
    color: white;
    border: none;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: none;
    z-index: 1000;
    transition: all 0.3s ease;
}

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

/* SEO Optimizations */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* Content Typography Enhancements */
.content-wrapper h1,
.content-wrapper h2,
.content-wrapper h3,
.content-wrapper h4 {
    font-weight: 700;
    margin-top: 2rem;
    margin-bottom: 1rem;
    color: #333;
}

.content-wrapper h1 {
    font-size: 2.5rem;
    border-bottom: 4px solid var(--primary-color);
    padding-bottom: 0.5rem;
}

.content-wrapper h2 {
    font-size: 2rem;
    border-bottom: 3px solid var(--primary-color);
    padding-bottom: 0.5rem;
}

.content-wrapper h3 {
    font-size: 1.5rem;
    color: #555;
}

.content-wrapper p {
    line-height: 1.8;
    margin-bottom: 1.25rem;
    color: #444;
}

.content-wrapper ul,
.content-wrapper ol {
    margin-left: 2rem;
    margin-bottom: 1.5rem;
}

.content-wrapper li {
    margin-bottom: 0.75rem;
    line-height: 1.7;
}

.content-wrapper a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.content-wrapper a:hover {
    color: var(--secondary-color);
    text-decoration: underline;
}

.content-wrapper strong {
    color: #222;
    font-weight: 600;
}

.content-wrapper blockquote {
    border-left: 4px solid var(--primary-color);
    padding-left: 1.5rem;
    margin: 1.5rem 0;
    font-style: italic;
    color: #666;
}

/* Service Page Enhancements */
.hizmet-page .breadcrumb {
    background: transparent;
    padding: 0;
}

.hizmet-page .breadcrumb-item a {
    color: var(--primary-color);
    text-decoration: none;
}

.hizmet-page .breadcrumb-item a:hover {
    text-decoration: underline;
}

.hizmet-page .breadcrumb-item.active {
    color: #666;
}

/* Responsive Images */
.content-wrapper img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    margin: 1.5rem 0;
}

/* Text Utilities */
.text-orange {
    color: #ff6b35;
}

/* Skip Link (Accessibility) */
.skip-link {
    position: absolute;
    top: -40px;
    left: 0;
    background: var(--warning-color);
    color: var(--dark-color);
    padding: 8px 16px;
    text-decoration: none;
    font-weight: 600;
    z-index: 10000;
    border-radius: 0 0 4px 0;
}

.skip-link:focus {
    top: 0;
}

/* Visually Hidden (for screen readers) */
.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.visually-hidden-focusable:not(:focus):not(:focus-within) {
    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;
}

/* City Pages & Default Single Pages */
.breadcrumb {
    background-color: #f8f9fa;
    padding: 0.75rem 1rem;
    border-radius: 0.5rem;
    margin-bottom: 1.5rem;
}

.breadcrumb-item + .breadcrumb-item::before {
    content: "/";
    color: #6c757d;
}

.breadcrumb-item a {
    color: #667eea;
    text-decoration: none;
}

.breadcrumb-item a:hover {
    color: #764ba2;
    text-decoration: underline;
}

.breadcrumb-item.active {
    color: #6c757d;
}

/* Article Header */
article header h1 {
    color: #333;
    font-weight: 700;
    margin-bottom: 1rem;
}

article header .lead {
    font-size: 1.25rem;
    color: #666;
    margin-bottom: 1.5rem;
}

/* Article Content */
.content h2 {
    color: #333;
    font-weight: 600;
    margin-top: 2rem;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid #667eea;
}

.content h3 {
    color: #444;
    font-weight: 600;
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
}

.content p {
    color: #555;
    line-height: 1.8;
    margin-bottom: 1rem;
}

.content ul,
.content ol {
    color: #555;
    line-height: 1.8;
    margin-bottom: 1rem;
    padding-left: 2rem;
}

.content li {
    margin-bottom: 0.5rem;
}

.content strong {
    color: #333;
    font-weight: 600;
}

.content a {
    color: #667eea;
    text-decoration: none;
}

.content a:hover {
    color: #764ba2;
    text-decoration: underline;
}

/* Share Buttons */
.share-buttons {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid #dee2e6;
}

.share-buttons .btn {
    border-radius: 50px;
    padding: 0.5rem 1.5rem;
    font-weight: 500;
}

/* Related Posts */
.related-posts {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid #dee2e6;
}

.related-posts .card {
    border: none;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.related-posts .card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(0,0,0,0.15);
}

.related-posts .card-title a {
    color: #333;
    font-weight: 600;
}

.related-posts .card-title a:hover {
    color: #667eea;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%) !important;
    border-radius: 15px;
    padding: 2rem;
    margin-top: 2rem;
}

.cta-section h4 {
    color: #ffffff !important;
    font-weight: 600;
}

.cta-section p {
    color: #ffffff !important;
}

.cta-section .btn-light {
    background-color: #ffffff;
    color: #667eea;
    border: none;
    font-weight: 600;
}

.cta-section .btn-light:hover {
    background-color: #f8f9fa;
    color: #764ba2;
}
