/* ===================================
   YETKIN SERVIS - ULTRA FIXED CSS
   Vision 2026 - Tüm Okunabilirlik Sorunları Çözüldü ve İstekler Eklendi
   =================================== */

:root {
    --primary: #dc3545;
    --primary-dark: #c82333;
    --secondary: #6c757d;
    --dark: #212529;
    --light: #f8f9fa;
    --warning: #ffc107;
    --success: #28a745;
    --info: #17a2b8;
    --border: #dee2e6;
    --shadow: 0 4px 16px rgba(0,0,0,0.1);
    --shadow-lg: 0 8px 32px rgba(0,0,0,0.15);
    --radius: 12px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: var(--dark);
    background: #fff;
    overflow-x: hidden; /* Genel taşmayı engelle */
    padding-bottom: 0;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

.container {
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
}

.d-flex { display: flex; }
.justify-content-between { justify-content: space-between; }
.justify-content-center { justify-content: center; }
.align-items-center { align-items: center; }
.gap-3 { gap: 1rem; }
.flex-wrap { flex-wrap: wrap; }
.d-block { display: block; }
.d-grid { display: grid; }
.d-none { display: none; }

.text-center { text-align: center; }
.text-muted { color: #6c757d; }
.text-dark { color: var(--dark); }
.text-white { color: #fff; }
.text-danger { color: var(--primary); }
.text-warning { color: var(--warning); }
.text-white-50 { color: rgba(255,255,255,0.5); }
.text-secondary { color: var(--secondary); }
.text-sm { font-size: 0.875rem; }

.fw-bold { font-weight: 700; }
.mb-0 { margin-bottom: 0; }
.mb-1 { margin-bottom: 0.25rem; }
.mb-2 { margin-bottom: 0.5rem; }
.mb-3 { margin-bottom: 1rem; }
.mb-4 { margin-bottom: 1.5rem; }
.mb-5 { margin-bottom: 3rem; }
.mt-1 { margin-top: 0.25rem; }
.mt-2 { margin-top: 0.5rem; }
.mt-4 { margin-top: 1.5rem; }
.me-1 { margin-right: 0.25rem; }
.me-2 { margin-right: 0.5rem; }
.ms-1 { margin-left: 0.25rem; }
.p-2 { padding: 0.5rem; }
.p-3 { padding: 1rem; }
.pb-3 { padding-bottom: 1rem; }
.ps-3 { padding-left: 1rem; }
.px-4 { padding-left: 1.5rem; padding-right: 1.5rem; }
.px-5 { padding-left: 3rem; padding-right: 3rem; }
.py-2 { padding-top: 0.5rem; padding-bottom: 0.5rem; }
.w-100 { width: 100%; }
.rounded { border-radius: 0.375rem; }
.rounded-pill { border-radius: 50rem; }
.rounded-circle { border-radius: 50%; }
.shadow-lg { box-shadow: var(--shadow-lg); }
.border-bottom { border-bottom: 1px solid var(--border); }
.border-light { border-color: var(--border); }
.border-0 { border: 0; }
.bg-light { background: var(--light); }
.bg-dark { background: var(--dark); }

.h4 { font-size: 1.5rem; }
.h5 { font-size: 1.25rem; }
.display-6 { font-size: 2.5rem; font-weight: 300; }

.small { font-size: 0.875rem; }

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1.5rem;
    font-weight: 600;
    border-radius: var(--radius);
    border: none;
    cursor: pointer;
    transition: var(--transition);
    text-align: center;
    font-size: 1rem;
}

.btn-danger {
    background: var(--primary);
    color: #fff;
}

.btn-danger:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
}

.btn-dark {
    background: var(--dark);
    color: #fff;
}

.btn-dark:hover {
    background: #000;
}

.btn-light {
    background: #fff;
    color: var(--dark);
}

.btn-light:hover {
    background: var(--light);
}

.btn-outline-danger {
    background: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
}

.btn-outline-danger:hover {
    background: var(--primary);
    color: #fff;
}

.btn-outline-light {
    background: transparent;
    color: #fff;
    border: 2px solid #fff;
}

.btn-outline-light:hover {
    background: #fff;
    color: var(--dark);
}

.btn-lg {
    padding: 1rem 2rem;
    font-size: 1.125rem;
}

.btn-sm {
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
}

.btn-close {
    background: transparent;
    border: none;
    width: 32px;
    height: 32px;
    position: relative;
    cursor: pointer;
}

.btn-close::before,
.btn-close::after {
    content: '';
    position: absolute;
    width: 20px;
    height: 2px;
    background: var(--dark);
    top: 50%;
    left: 50%;
}

.btn-close::before {
    transform: translate(-50%, -50%) rotate(45deg);
}

.btn-close::after {
    transform: translate(-50%, -50%) rotate(-45deg);
}

/* ===================================
   HEADER
   =================================== */

.header-top {
    background: var(--dark);
    color: #fff;
    padding: 10px 0;
    font-size: 0.875rem;
    overflow: hidden;
    width: 100%;
}

.header-top-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.top-item {
    display: flex;
    align-items: center;
}

.site-header {
    background: #fff;
    box-shadow: 0 2px 16px rgba(0,0,0,0.08);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 1rem 0;
    width: 100%;
    overflow-x: hidden; /* Header taşmasını engelle */
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    width: 100%;
}

.logo-area {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-weight: 800;
    font-size: 1.5rem;
    color: var(--dark);
}

.logo-area img {
    height: 40px;
    width: auto;
    max-width: 150px; /* Logo genişlik sınırı */
}

.desktop-nav {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-link {
    font-weight: 600;
    color: var(--dark);
    display: flex;
    align-items: center;
    gap: 0.25rem;
    padding: 0.5rem 0;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: width 0.3s;
}

.nav-link:hover::after {
    width: 100%;
}

.has-dropdown {
    position: relative;
}

.has-dropdown:hover .mega-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.mega-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(-10px);
    background: #fff;
    box-shadow: var(--shadow-lg);
    border-radius: var(--radius);
    padding: 1.5rem;
    min-width: 600px;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 100;
    margin-top: 1rem;
}

.menu-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.menu-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    border-radius: 8px;
    transition: var(--transition);
    border: 1px solid transparent;
}

.menu-item:hover {
    background: var(--light);
    border-color: var(--border);
}

.menu-item img {
    width: 60px;
    height: 60px;
    object-fit: cover;
    border-radius: 8px;
}

.menu-item-content {
    flex: 1;
}

.menu-item-content strong {
    display: block;
    color: var(--dark);
    margin-bottom: 0.25rem;
}

.menu-item-content span {
    color: var(--secondary);
    font-size: 0.875rem;
}

.header-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: var(--primary);
    color: #fff;
    border-radius: 50rem;
    font-weight: 600;
    transition: var(--transition);
}

.header-btn:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
}

.mobile-toggle {
    display: none;
    background: transparent;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--dark);
    padding: 0.5rem;
    margin-right: -0.5rem; /* Sağa hizalama iyileştirmesi */
}

/* ===================================
   BRAND MARQUEE
   =================================== */

.brand-marquee {
    background: var(--light);
    padding: 1rem 0;
    overflow: hidden;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    width: 100%;
}

.marquee-content {
    display: flex;
    gap: 3rem;
    animation: marquee 40s linear infinite;
    width: max-content;
}

@keyframes marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.marquee-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
    white-space: nowrap;
    color: var(--dark);
}

.marquee-item img {
    width: 30px;
    height: 30px;
    object-fit: contain;
}

/* ===================================
   MOBİL MENU - FIXED & UPDATED
   =================================== */

.mobile-menu-container {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    max-width: 100%;
    height: 100vh;
    background: #fff;
    display: flex;
    flex-direction: column;
    transition: right 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1999;
    box-shadow: -4px 0 16px rgba(0,0,0,0.1);
}

.mobile-menu-container.active {
    right: 0;
}

/* Menü Header */
.mobile-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 1rem;
    background: #fff;
    border-bottom: 1px solid #e9ecef;
}

/* Menü Body */
.mobile-menu-body {
    flex: 1;
    overflow-y: auto;
    background: #fff;
    padding-bottom: 80px; /* Sticky footer payı */
}

/* Menü Link */
.mobile-menu-link {
    display: block;
    padding: 1rem 1.5rem;
    color: #212529;
    font-weight: 600;
    font-size: 1rem;
    border-bottom: 1px solid #e9ecef;
    transition: background 0.2s;
}

.mobile-menu-link:active {
    background: #f8f9fa;
}

/* Dropdown Container */
.mobile-dropdown {
    border-bottom: 1px solid #e9ecef;
}

.mobile-dropdown-trigger {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 1.5rem;
    cursor: pointer;
    transition: background 0.2s;
    user-select: none;
    background: #fff;
}

.mobile-dropdown-trigger:active, .mobile-dropdown-trigger.active {
    background: #f8f9fa;
}

.mobile-dropdown-trigger span {
    font-size: 1rem;
    font-weight: 600;
    color: #212529;
}

.mobile-dropdown-trigger i {
    transition: transform 0.3s;
    color: #dc3545;
    font-size: 0.875rem;
}

.mobile-dropdown-trigger.active i {
    transform: rotate(180deg);
}

/* Dropdown Content */
.mobile-dropdown-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out;
    background: #f8f9fa;
}

.mobile-dropdown-content.active {
    max-height: 1200px;
}

/* Mobile 2 Column Grid for Service and City */
.mobile-grid-2col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    background: #fff;
}

.mobile-menu-item-grid {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 1rem 0.5rem;
    border-right: 1px solid #e9ecef;
    border-bottom: 1px solid #e9ecef;
    color: #495057;
    transition: all 0.2s;
    height: 100%;
}

.mobile-menu-item-grid:active {
    background: #f8f9fa;
    color: #dc3545;
}

.mobile-menu-item-grid i {
    font-size: 1.5rem;
    color: #dc3545;
    margin-bottom: 0.5rem;
}

.mobile-menu-item-grid span {
    font-size: 0.85rem;
    font-weight: 500;
    line-height: 1.3;
}

/* Markalar Grid */
.mobile-brands-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
    padding: 1rem;
    background: #f8f9fa;
}

.mobile-brand-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem;
    background: #fff;
    border-radius: 8px;
    border: 1px solid #e9ecef;
    transition: all 0.2s;
}

.mobile-brand-item:active {
    background: #dc3545;
    color: #fff;
    transform: scale(0.98);
}

.mobile-brand-item img {
    width: 28px;
    height: 28px;
    object-fit: contain;
}

.mobile-brand-item span {
    font-size: 0.875rem;
    font-weight: 600;
}

/* ===================================
   HERO SECTION
   =================================== */

.hero-wrapper {
    position: relative;
    min-height: 600px;
    display: flex;
    align-items: center;
    padding: 4rem 0;
    overflow: hidden;
    width: 100%;
}

.hero-bg-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.6);
}

.hero-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(220,53,69,0.85), rgba(0,0,0,0.8));
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: #212529;
    width: 100%;
}

.breadcrumb-area {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255,255,255,0.25);
    backdrop-filter: blur(12px);
    padding: 0.75rem 1.25rem;
    border-radius: 50rem;
    margin-bottom: 1.5rem;
    font-size: 0.875rem;
    border: 2px solid rgba(255,255,255,0.4);
    box-shadow: 0 4px 16px rgba(0,0,0,0.3);
}

.breadcrumb-area a, .breadcrumb-area span, .breadcrumb-area i {
    color: #fff !important;
    font-weight: 600;
    text-shadow: 0 1px 4px rgba(0,0,0,0.4);
}

.hero-title {
    font-size: 3rem;
    font-weight: 900 !important;
    line-height: 1.2;
    margin-bottom: 1rem;
    text-shadow: 0 4px 12px rgba(0,0,0,0.6); 
    color: #fff !important;
    letter-spacing: -0.5px;
}

.hero-title span {
    color: #fff !important;
    border-bottom: 3px solid #ffc107;
    text-shadow: none;
    font-weight: 900 !important;
}

.hero-subtitle {
    font-size: 1.25rem;
    max-width: 700px;
    margin: 0 auto 2rem;
    line-height: 1.7;
    color: #fff !important;
    font-weight: 500 !important;
    text-shadow: 0 2px 6px rgba(0,0,0,0.5);
    opacity: 0.95 !important;
}

.hero-stats {
    max-width: 900px;
    margin: 3rem auto 0;
}

.stat-box {
    background: rgba(255,255,255,0.15);
    backdrop-filter: blur(10px);
    padding: 1.5rem;
    border-radius: var(--radius);
    text-align: center;
    transition: var(--transition);
    border: 1px solid rgba(255,255,255,0.3);
    box-shadow: 0 4px 16px rgba(0,0,0,0.2);
    height: 100%;
}

.stat-box:hover {
    background: rgba(255,255,255,0.25);
    transform: translateY(-5px);
}

.stat-icon {
    font-size: 2rem;
    color: #ffc107 !important;
    margin-bottom: 0.5rem;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.3));
}

.stat-box h5 {
    color: #fff !important;
    font-weight: 700 !important;
    text-shadow: 0 1px 3px rgba(0,0,0,0.4);
}

.stat-box small {
    color: #eee !important;
    font-weight: 500 !important;
}

/* ===================================
   MOBILE STICKY FOOTER
   =================================== */

.mobile-sticky-footer {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 2000;
    display: none;
    background: #fff;
    box-shadow: 0 -4px 16px rgba(0,0,0,0.15);
}

.sticky-btn {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 0.75rem;
    gap: 0.25rem;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.9rem;
    transition: background 0.2s;
}

.sticky-btn i {
    font-size: 1.25rem;
}

.btn-call {
    background: #dc3545;
    color: #fff;
}

.btn-call:active {
    background: #c82333;
}

.btn-appointment {
    background: #212529;
    color: #fff;
}

.btn-appointment:active {
    background: #000;
}

/* ===================================
   MAIN LAYOUT & CARDS
   =================================== */

.main-layout {
    padding: 4rem 0;
    background: #fafafa;
}

.row {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -15px;
}

.col-12 { width: 100%; padding: 0 15px; }
.col-6 { width: 50%; padding: 0 15px; }
.col-md-6 { width: 100%; padding: 0 15px; }
.col-lg-4 { width: 100%; padding: 0 15px; }
.col-lg-8 { width: 100%; padding: 0 15px; }

.g-4 { margin: 0 -1rem; }
.g-4 > * { padding: 0 1rem; margin-bottom: 2rem; }

.g-5 { margin: 0 -1.5rem; }
.g-5 > * { padding: 0 1.5rem; }

.service-grid-card {
    background: #fff;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    height: 100%;
}

.service-grid-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.card-img-wrap {
    height: 200px;
    overflow: hidden;
}

.card-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.service-grid-card:hover .card-img-wrap img {
    transform: scale(1.1);
}

.card-content {
    padding: 1.5rem;
}

.brand-logos-row {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex-wrap: wrap;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid var(--border);
}

.mini-brand-logo {
    width: 32px;
    height: 32px;
    object-fit: contain;
    filter: grayscale(1);
    opacity: 0.6;
    transition: var(--transition);
}

.mini-brand-logo:hover {
    filter: grayscale(0);
    opacity: 1;
}

/* ===================================
   CTA & CITIES
   =================================== */

.cta-section { margin: 4rem 0; }

.cta-card {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    border-radius: var(--radius);
    overflow: hidden;
    display: grid;
    grid-template-columns: 1fr 1fr;
    box-shadow: var(--shadow-lg);
}

.cta-content {
    padding: 3rem;
    color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.cta-content h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #fff !important;
}

.cta-content p {
    margin-bottom: 2rem;
    color: #fff !important;
    opacity: 0.95;
}

.cta-image {
    height: 100%;
    min-height: 300px;
}

.cta-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cta-card-inline {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: #fff;
    padding: 3rem;
    border-radius: var(--radius);
    text-align: center;
    margin-top: 2rem;
}

.cta-card-inline * { color: #fff !important; }

.cities-section { margin: 4rem 0; }

.cities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 1rem;
}

.city-card {
    background: #fff;
    padding: 1.5rem;
    border-radius: var(--radius);
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
}

.city-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    background: var(--primary);
    color: #fff;
}

.city-card i {
    font-size: 2rem;
    color: var(--primary);
}

.city-card:hover i { color: #fff; }

/* ===================================
   GALLERY & REVIEWS
   =================================== */

.gallery-section { margin: 4rem 0; }

/* Swiper Styles */
.gallerySwiper, .reviewSwiper {
    padding-bottom: 3rem;
}

.gallery-item {
    border-radius: var(--radius);
    overflow: hidden;
    height: 300px;
    box-shadow: var(--shadow);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.reviews-section { margin: 4rem 0; }

.review-card {
    background: #fff;
    padding: 2rem;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    text-align: center;
    height: auto;
    min-height: 250px;
    max-width: 600px;
    margin: 0 auto;
}

.stars {
    color: var(--warning);
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.review-text {
    font-style: italic;
    color: #555;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.review-author {
    display: block;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 0.25rem;
}

.review-date {
    display: block;
    font-size: 0.875rem;
    color: var(--secondary);
}

.swiper-pagination-bullet { background: var(--primary); }

/* ===================================
   SIDEBAR & CONTENT
   =================================== */

.content-card {
    background: #fff;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    margin-bottom: 2rem;
}

.article-header {
    position: relative;
    height: 400px;
}

.article-header img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.article-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    padding: 2rem;
    color: #fff;
}

.article-body { padding: 2rem; }

.dynamic-content-wrapper {
    position: relative;
    overflow: hidden;
    max-height: 600px;
    transition: max-height 0.5s ease;
}

.dynamic-content-wrapper.collapsed::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 150px;
    background: linear-gradient(to top, #fff, transparent);
}

.dynamic-content-wrapper.expanded { max-height: none; }
.dynamic-content-wrapper.expanded::after { display: none; }

.read-more-trigger {
    text-align: center;
    padding: 1rem;
    cursor: pointer;
    color: var(--primary);
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    transition: var(--transition);
    background: var(--light);
    border-radius: 8px;
    margin-top: 1rem;
}

.read-more-trigger:hover { background: #e9ecef; }
.read-more-trigger i { transition: transform 0.3s; }
.read-more-trigger.active i { transform: rotate(180deg); }

.mismatch-card {
    background: #fff5f5;
    padding: 4rem 2rem;
    text-align: center;
    border-radius: var(--radius);
    border: 2px solid var(--primary);
}

.mismatch-icon {
    font-size: 4rem;
    color: var(--primary);
    margin-bottom: 1.5rem;
}

.sidebar-widget {
  
    border-radius: var(--radius);
    padding: 1.5rem;
    box-shadow: var(--shadow);
    margin-bottom: 2rem;
}

.widget-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--dark);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

/* Brand List - Grid for Sidebar (Hizmet Sayfası İstek) */
.brand-list { 
    display: grid; 
    grid-template-columns: 1fr 1fr; /* 2 Column Grid */
    gap: 0.75rem; 
}
.brand-link {
    display: flex;
    align-items: center;
    gap: 0.5rem; /* Azaltıldı */
    padding: 0.5rem;
    border-radius: 8px;
    border: 1px solid transparent;
    transition: var(--transition);
    flex-direction: column; /* Dikey hizalama */
    text-align: center;
    border: 1px solid var(--border);
}
.brand-link:hover { background: var(--light); border-color: var(--primary); }
.brand-link img { width: 32px; height: 32px; object-fit: contain; }
.brand-link span { font-size: 0.85rem; }

.location-list { display: flex; flex-direction: column; gap: 0.5rem; }
.location-link {
    padding: 0.75rem 1rem;
    border-radius: 8px;
    color: var(--dark);
    font-weight: 500;
    transition: var(--transition);
    display: flex;
    align-items: center;
}
.location-link:hover, .location-link.active { background: var(--primary); color: #fff; }

/* ===================================
   FOOTER
   =================================== */

.site-footer {
    background: var(--dark);
    color: #fff;
    padding: 4rem 0 2rem;
    margin-bottom: 0;
}

.footer-title {
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #fff;
}

.footer-link {
    display: block;
    color: rgba(255,255,255,0.7);
    margin-bottom: 0.75rem;
    transition: var(--transition);
}

.footer-link:hover {
    color: #fff;
    padding-left: 0.5rem;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    margin-top: 3rem;
    padding-top: 2rem;
    text-align: center;
    color: rgba(255,255,255,0.5);
}

/* ===================================
   RESPONSIVE
   =================================== */

@media (min-width: 768px) {
    .col-md-6 { width: 50%; }
    .d-md-block { display: block !important; }
}

@media (min-width: 992px) {
    .col-lg-2 { width: 16.666%; }
    .col-lg-4 { width: 33.333%; }
    .col-lg-8 { width: 66.666%; }
    .d-lg-flex { display: flex !important; }

    /* Desktop: Hero Stats Grid */
    .heroStatsSwiper .swiper-wrapper {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 1.5rem;
        transform: none !important;
    }
    .heroStatsSwiper .swiper-slide {
        width: auto !important;
        height: auto !important;
    }

    /* Desktop: Gallery Grid */
    .gallerySwiper .swiper-wrapper {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 1rem;
        transform: none !important;
    }
    .gallerySwiper .swiper-slide {
        width: auto !important;
        height: auto !important;
        margin-right: 0 !important;
    }
    .gallerySwiper .swiper-pagination {
        display: none;
    }
}

@media (max-width: 991px) {
    .desktop-nav { display: none; }
    .mobile-toggle { display: block; }
    
    .hero-title { font-size: 2rem; }
    
    .cta-card { grid-template-columns: 1fr; }
    .cta-image { min-height: 250px; }
    
    .d-sm-block { display: none !important; }
    
    /* Header Top Slide Animation - Mobile Overflow Fix */
    .header-top-content {
        display: block;
        position: relative;
        height: 24px;
        overflow: hidden; /* Taşmayı engelle */
    }
    .top-item {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        justify-content: center;
        opacity: 0;
        transition: opacity 0.5s ease;
        white-space: nowrap;
        text-overflow: ellipsis;
        overflow: hidden;
        padding: 0 10px;
    }
    .top-item.active { opacity: 1; }
    
    /* Show Sticky Footer */
    .mobile-sticky-footer { display: flex; }
    body { padding-bottom: 60px; }

    /* SIDEBAR MOBILE GRID */
    .sidebar-widget .brand-list,
    .sidebar-widget .location-list {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 0.5rem;
    }
    
    .location-link {
        font-size: 0.9rem;
        padding: 0.5rem;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }
    
    /* Header Inner Spacing Fix */
    .header-inner {
        gap: 0.5rem;
        padding-right: 0;
    }
    .logo-area {
        gap: 0.5rem;
        font-size: 1.25rem;
    }
    
    .site-header .container {
        padding-right: 15px; /* Mobile toggle right margin fix */
    }
}

@media (max-width: 576px) {
    .cities-grid { grid-template-columns: 1fr 1fr; }
    .gallery-item { height: 200px; }
    
    /* Header fixes for small screens */
    .logo-area img { max-width: 120px; }
}

/* Pulse Animation */
@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}
.pulse-anim { animation: pulse 2s infinite; }