﻿/* CekiciPlus Tema - Style.css */

/* Bootstrap Icons (CDN) */
@import url("https://cdn.jsdelivr.net/npm/bootstrap-icons@1.11.3/font/bootstrap-icons.min.css");

/* -------------------------------------------
   AI Region Article: Column helper (il/ilçe)
   Not: @import satırı CSS gereği en üstte olmalı (ikonlar için).
--------------------------------------------*/
.cp-ai-cols{display:grid;gap:14px;margin:12px 0 18px}
.cp-ai-cols.cols-2{grid-template-columns:repeat(2,minmax(0,1fr))}
.cp-ai-cols.cols-3{grid-template-columns:repeat(3,minmax(0,1fr))}
.cp-ai-col p{margin:0 0 10px;line-height:1.7}
.cp-ai-col ul{margin:0 0 10px 18px}
@media (max-width: 980px){
  .cp-ai-cols.cols-3{grid-template-columns:repeat(2,minmax(0,1fr))}
}
@media (max-width: 768px){
  .cp-ai-cols.cols-2,.cp-ai-cols.cols-3{grid-template-columns:1fr}
}

/* Inter Font - Yerel Dosyalar */
@font-face { font-family: "Inter"; font-style: normal; font-weight: 100; font-display: swap; src: url("../fonts/Inter-Thin.woff2") format("woff2"); }
@font-face { font-family: "Inter"; font-style: italic; font-weight: 100; font-display: swap; src: url("../fonts/Inter-ThinItalic.woff2") format("woff2"); }
@font-face { font-family: "Inter"; font-style: normal; font-weight: 200; font-display: swap; src: url("../fonts/Inter-ExtraLight.woff2") format("woff2"); }
@font-face { font-family: "Inter"; font-style: italic; font-weight: 200; font-display: swap; src: url("../fonts/Inter-ExtraLightItalic.woff2") format("woff2"); }
@font-face { font-family: "Inter"; font-style: normal; font-weight: 300; font-display: swap; src: url("../fonts/Inter-Light.woff2") format("woff2"); }
@font-face { font-family: "Inter"; font-style: italic; font-weight: 300; font-display: swap; src: url("../fonts/Inter-LightItalic.woff2") format("woff2"); }
@font-face { font-family: "Inter"; font-style: normal; font-weight: 400; font-display: swap; src: url("../fonts/Inter-Regular.woff2") format("woff2"); }
@font-face { font-family: "Inter"; font-style: italic; font-weight: 400; font-display: swap; src: url("../fonts/Inter-Italic.woff2") format("woff2"); }
@font-face { font-family: "Inter"; font-style: normal; font-weight: 500; font-display: swap; src: url("../fonts/Inter-Medium.woff2") format("woff2"); }
@font-face { font-family: "Inter"; font-style: italic; font-weight: 500; font-display: swap; src: url("../fonts/Inter-MediumItalic.woff2") format("woff2"); }
@font-face { font-family: "Inter"; font-style: normal; font-weight: 600; font-display: swap; src: url("../fonts/Inter-SemiBold.woff2") format("woff2"); }
@font-face { font-family: "Inter"; font-style: italic; font-weight: 600; font-display: swap; src: url("../fonts/Inter-SemiBoldItalic.woff2") format("woff2"); }
@font-face { font-family: "Inter"; font-style: normal; font-weight: 700; font-display: swap; src: url("../fonts/Inter-Bold.woff2") format("woff2"); }
@font-face { font-family: "Inter"; font-style: italic; font-weight: 700; font-display: swap; src: url("../fonts/Inter-BoldItalic.woff2") format("woff2"); }
@font-face { font-family: "Inter"; font-style: normal; font-weight: 800; font-display: swap; src: url("../fonts/Inter-ExtraBold.woff2") format("woff2"); }
@font-face { font-family: "Inter"; font-style: italic; font-weight: 800; font-display: swap; src: url("../fonts/Inter-ExtraBoldItalic.woff2") format("woff2"); }
@font-face { font-family: "Inter"; font-style: normal; font-weight: 900; font-display: swap; src: url("../fonts/Inter-Black.woff2") format("woff2"); }
@font-face { font-family: "Inter"; font-style: italic; font-weight: 900; font-display: swap; src: url("../fonts/Inter-BlackItalic.woff2") format("woff2"); }

/* Reset ve Temel Ayarlar */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Scrollbar Stilleri */
::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #1e5fd4;
}

/* Firefox */
* {
    scrollbar-width: thin;
    scrollbar-color: var(--primary-color) #f1f1f1;
}

html {
    overflow-x: hidden;
    height: 100%;
}

body {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: #111827;
    background: #ffffff;
    margin: 0;
    padding: 0;
    padding-top: 80px;
    overflow-x: hidden;
    min-height: 100%;
}

/* ---------------------------------------------------------
   Metin içi link underline (kurumsal hover efekti)
   - Sadece içerik alanlarında (main/section) metin içi linklerde çalışır
   - Menü / buton / chip gibi UI linkleri etkilemez
--------------------------------------------------------- */
:where(main, .page-content-section, .custom-content-section, .region-page, .application-section, .blog-page, .blog-content, .region-article-body)
:where(p, li, h1, h2, h3, h4, h5, h6) a:not(.btn):not(.cp-btn):not(.admin-btn):not(.header-cta-link):not(.nav-link):not(.nav-dropdown-link):not(.mobile-nav-link):not(.mobile-nav-dropdown-link):not(.mobile-menu-card):not(.region-chip):not(.member-card-ny-call):not(.service-card-btn) {
    color: var(--primary-color);
    text-decoration: none;
    background-image: linear-gradient(currentColor, currentColor);
    background-repeat: no-repeat;
    background-position: 0 100%;
    background-size: 0% 2px;
    padding-bottom: 2px;
    transition: background-size 180ms ease, color 180ms ease;
}

:where(main, .page-content-section, .custom-content-section, .region-page, .application-section, .blog-page, .blog-content, .region-article-body)
:where(p, li, h1, h2, h3, h4, h5, h6) a:not(.btn):not(.cp-btn):not(.admin-btn):not(.header-cta-link):not(.nav-link):not(.nav-dropdown-link):not(.mobile-nav-link):not(.mobile-nav-dropdown-link):not(.mobile-menu-card):not(.region-chip):not(.member-card-ny-call):not(.service-card-btn):hover {
    background-size: 100% 2px;
    color: #1e5fd4;
}

:where(main, .page-content-section, .custom-content-section, .region-page, .application-section, .blog-page, .blog-content, .region-article-body)
:where(p, li, h1, h2, h3, h4, h5, h6) a:not(.btn):not(.cp-btn):not(.admin-btn):not(.header-cta-link):not(.nav-link):not(.nav-dropdown-link):not(.mobile-nav-link):not(.mobile-nav-dropdown-link):not(.mobile-menu-card):not(.region-chip):not(.member-card-ny-call):not(.service-card-btn):focus-visible {
    outline: 2px solid rgba(var(--primary-color-rgb), 0.35);
    outline-offset: 2px;
    border-radius: 6px;
}

/* Font policy: sadece Inter kullan */
html, body, button, input, select, textarea {
    font-family: 'Inter', sans-serif !important;
}

/* Giriş Yap (Auth) Sayfası */
.auth-page {
    /* header fixed olduğu için içerik header altından başlasın */
    padding-top: 80px;
    background: #ffffff url("../images/giris-banner.png") center/cover no-repeat;
}

.auth-wrapper {
    position: relative;
}

.auth-wrapper {
    max-width: 520px;
    margin: 0 auto;
    padding: 32px 16px 48px;
}

.auth-logo {
    display: flex;
    justify-content: center;
    margin-bottom: 18px;
}

.auth-logo-img {
    height: 70px;
    width: auto;
}

.auth-card {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 10px;
    padding: 26px 22px;
}

/* Masaüstü: form kartının üstüne biraz nefes */
@media (min-width: 769px) {
    .auth-card {
        margin-top: 50px;
    }
}

.auth-title {
    text-align: center;
    font-size: 24px;
    font-weight: 800;
    margin: 0 0 18px;
    color: #111827;
}

.auth-form {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.auth-label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: #111827;
    margin-bottom: 6px;
}

.auth-input-group {
    position: relative;
}

.auth-input-icon {
    position: absolute;
    left: 14px;
    top: 50%;
    transform: translateY(-50%);
    color: #111827;
    opacity: 0.85;
    width: 22px;
    height: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: none;
}

.auth-input-icon i {
    font-size: 18px;
    line-height: 1;
}

.auth-input-group input {
    width: 100%;
    padding: 12px 14px 12px 44px;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    font-size: 14px;
    color: #111827;
    background: #fff;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.auth-input-group input:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(39, 113, 235, 0.12);
}

.auth-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-top: 4px;
}

.auth-remember {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: #111827;
    user-select: none;
}

.auth-remember input {
    width: 16px;
    height: 16px;
    accent-color: var(--primary-color);
}

.auth-link {
    font-size: 13px;
    color: #111827;
    text-decoration: none;
    opacity: 0.85;
}

.auth-link:hover {
    opacity: 1;
    text-decoration: underline;
}

.auth-submit {
    margin-top: 10px;
    width: 100%;
    background: var(--primary-color);
    color: #fff;
    border: none;
    border-radius: 8px;
    padding: 14px 18px;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    transition: background 0.2s ease;
}

.auth-submit:hover {
    background: #1e5fd4;
}

.auth-promo {
    margin-top: 18px;
    text-align: center;
}

.auth-promo-title {
    font-size: 18px;
    font-weight: 800;
    margin: 0 0 10px;
    color: #111827;
}

.auth-secondary {
    display: block;
    width: 100%;
    background: #198754;
    color: #ffffff;
    border: 1px solid #198754;
    border-radius: 8px;
    padding: 12px 16px;
    font-weight: 700;
    text-decoration: none;
    transition: none;
}

.auth-secondary:hover {
    background: #198754;
}

/* Hizmet Bölgelerimiz */
.regions-page {
    padding: 40px 0 80px;
    background: #fff;
}

.regions-header {
    text-align: center;
    margin-bottom: 24px;
}

.regions-title {
    font-size: 30px;
    font-weight: 800;
    color: var(--secondary-color);
    margin: 0 0 12px 0;
    position: relative;
    display: inline-block;
    padding-bottom: 12px;
}

.regions-title::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 70px;
    height: 2px;
    background: rgba(39, 113, 235, 0.35);
}

.regions-subtitle {
    margin: 0;
    color: var(--text-color);
    max-width: 780px;
    margin-left: auto;
    margin-right: auto;
}

.regions-map-wrap {
    display: flex;
    justify-content: center;
    margin: 18px 0 22px;
}

.turkey-service-map {
    position: relative;
    width: 100%;
    max-width: 1020px;
}

.turkey-service-map svg {
    width: 100%;
    height: auto;
    display: block;
}

.turkey-service-map g[data-name] {
    cursor: pointer;
}

.turkey-service-map g[data-name] path {
    fill: rgba(39, 113, 235, 0.14);
    stroke: rgba(255, 255, 255, 0.9);
    stroke-width: 1;
    transition: fill 0.15s ease, opacity 0.15s ease;
}

.turkey-service-map g[data-name]:hover path,
.turkey-service-map g[data-name].is-active path {
    fill: rgba(39, 113, 235, 0.32);
}

.province-tooltip {
    position: fixed;
    z-index: 9999;
    display: none;
    padding: 8px 10px;
    border-radius: 8px;
    background: rgba(17, 24, 39, 0.92);
    color: #fff;
    font-size: 13px;
    font-weight: 600;
    pointer-events: none;
    white-space: nowrap;
    transform: translate3d(0, 0, 0);
}

.province-tooltip.is-visible {
    display: block;
}

.regions-grid {
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 14px;
    margin-top: 18px;
}

/* Anasayfa: Popüler Hizmet Bölgelerimiz */
.popular-regions-section {
    padding: 60px 0;
    background: #fff;
}

.popular-regions-header {
    text-align: center;
    max-width: 860px;
    margin: 0 auto 22px;
}

.popular-regions-title {
    margin: 0 0 10px;
    font-size: 26px;
    font-weight: 700;
    color: var(--secondary-color);
    line-height: 1.25;
}

.popular-regions-desc {
    margin: 0;
    font-size: 15px;
    line-height: 1.8;
    color: var(--text-color);
}

.popular-regions-grid {
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 14px;
}

.region-tile {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 12px;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    background: #fff;
    text-decoration: none;
    color: var(--secondary-color);
    transition: transform 0.15s ease, box-shadow 0.15s ease, border-color 0.15s ease;
}

.region-tile:hover {
    transform: translateY(-2px);
    border-color: rgba(39, 113, 235, 0.35);
    box-shadow: 0 8px 22px rgba(17, 24, 39, 0.08);
}

.region-tile-code {
    width: 44px;
    min-width: 44px;
    height: 44px;
    border-radius: 6px;
    background: #111827;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    line-height: 1;
}

.region-tile-plate {
    color: #fff;
    font-weight: 800;
    font-size: 12px;
    letter-spacing: 0.2px;
}

.region-tile-tr {
    margin-top: 3px;
    color: rgba(255, 255, 255, 0.9);
    font-size: 10px;
    font-weight: 700;
}

.region-tile-name {
    font-size: 13px;
    font-weight: 600;
    color: var(--secondary-color);
}

@media (max-width: 1024px) {
    .regions-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (max-width: 768px) {
    .popular-regions-section {
        padding: 44px 0;
    }
    .popular-regions-title {
        font-size: 22px;
    }
    .popular-regions-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 12px;
    }
    .regions-title {
        font-size: 24px;
    }
    .regions-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 12px;
    }
}

@media (min-width: 769px) and (max-width: 1024px) {
    .popular-regions-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

/* Renkler */
:root {
    --primary-color: #2771eb;
    --primary-color-rgb: 39, 113, 235;
    --secondary-color: #111827;
    --text-color: #6d7792;
}

/* -----------------------------
   Mobile/Tablet Fixed Call Bar
   - Visible only on <= 991.98px
   - Hidden on desktop
------------------------------ */
.cp-mobile-callbar {
    display: none;
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 9998;
    background: var(--primary-color);
    box-shadow: 0 -10px 24px rgba(15, 23, 42, 0.18);
    padding: 14px 16px;
}
.cp-mobile-callbar-link {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    color: #fff;
    text-decoration: none;
    font-weight: 700;
    font-size: 23px;
    letter-spacing: 0.2px;
    line-height: 1;
    position: relative;
    isolation: isolate;
}
.cp-mobile-callbar-link:hover,
.cp-mobile-callbar-link:focus {
    text-decoration: none;
    color: #fff;
}
.cp-mobile-callbar-link i {
    font-size: 20px;
    line-height: 1;
}
.cp-mobile-callbar-text {
    white-space: nowrap;
}

/* Subtle outward pulse effect */
.cp-mobile-callbar-link::after {
    content: "";
    position: absolute;
    inset: -10px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.22);
    transform: scale(0.86);
    opacity: 0;
    z-index: -1;
    pointer-events: none;
    animation: cpCallbarPulse 1.8s ease-out infinite;
}

@keyframes cpCallbarPulse {
    0% { transform: scale(0.86); opacity: 0.0; }
    25% { opacity: 0.28; }
    100% { transform: scale(1.25); opacity: 0.0; }
}

@media (max-width: 991.98px) {
    .cp-mobile-callbar { display: block; }
    body.has-cp-mobile-callbar { padding-bottom: 64px; }
}

/* Başlık Stilleri */
h1 {
    font-size: 30px;
    color: var(--secondary-color);
    font-weight: 700;
}

h2 {
    font-size: 25px;
    color: var(--secondary-color);
    font-weight: 700;
}

h3 {
    font-size: 24px;
    color: var(--secondary-color);
    font-weight: 600;
}

h4 {
    font-size: 23px;
    color: var(--secondary-color);
    font-weight: 600;
}

h5 {
    font-size: 22px;
    color: var(--secondary-color);
    font-weight: 600;
}

h6 {
    font-size: 21px;
    color: var(--secondary-color);
    font-weight: 600;
}

/* Paragraf Stili */
p {
    color: var(--text-color);
    font-size: 16px;
    line-height: 1.6;
}

/* Container */
.container {
    max-width: 1475px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
    overflow: visible;
}

@media (max-width: 768px) {
    .container {
        padding: 0 8px;
    }
}

/* Header Styles */
.site-header {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    z-index: 1000 !important;
    background: #fff;
    border-top: 5px solid var(--primary-color);
    width: 100% !important;
    overflow: visible !important;
}

/* Main Navigation */

/* Topbar */
.topbar {
    background: var(--primary-color);
    padding: 5px 0 !important;
    transition: all 0.3s ease-in-out;
    max-height: 60px;
    overflow: hidden;
    display: block;
}

.topbar.hidden {
    max-height: 0 !important;
    padding: 0 !important;
    margin: 0 !important;
    opacity: 0;
    visibility: hidden;
}

.topbar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.topbar-left {
    display: flex;
    align-items: center;
    gap: 20px;
}

.topbar-link {
    display: flex;
    align-items: center;
    gap: 6px;
    color: #fff;
    text-decoration: none;
    font-size: 14px;
    font-weight: 400;
    transition: opacity 0.3s;
}

.topbar-link:hover {
    opacity: 0.8;
}

.topbar-link svg,
.topbar-link .topbar-icon {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
}

.topbar-right {
    display: flex;
    align-items: center;
    gap: 15px;
}

.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    color: #fff;
    transition: opacity 0.3s;
}

.social-icon:hover {
    opacity: 0.8;
}

.social-icon svg {
    width: 16px;
    height: 16px;
}

.social-icon i {
    font-size: 16px;
    line-height: 1;
}

/* Main Navigation */
.main-nav {
    position: relative;
    background: #fff;
    border-bottom: 1px solid #e5e7eb;
    padding: 15px 0;
    z-index: 999;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    width: 100%;
    margin: 0;
    display: block;
}

@media (max-width: 768px) {
    .main-nav {
        padding: 8px 0;
    }
}

/* Mobile Navigation - Desktop'ta Gizli */
.mobile-nav-content {
    display: none;
}

.mobile-menu-overlay {
    display: none;
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
    overflow: visible;
}

.nav-logo {
    flex-shrink: 0;
}

.nav-logo a {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.logo-img {
    height: 50px;
    width: auto;
}

.nav-menu-wrapper {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.nav-button {
    flex-shrink: 0;
}

/* Desktop header CTA buttons (Giriş Yap / Başvuru) */
.header-cta-buttons {
    display: flex;
    align-items: center;
    gap: 10px;
}

.header-cta-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    border-radius: 8px;
    border: 1px solid #e5e7eb;
    background: #fff;
    color: var(--secondary-color);
    text-decoration: none;
    font-size: 13px;
    font-weight: 600;
    white-space: nowrap;
    transition: background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.header-cta-link i {
    font-size: 16px;
    line-height: 1;
}

.header-cta-link:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
    background: rgba(39, 113, 235, 0.06);
}

.header-cta-link.header-cta-primary {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: #fff;
}

.header-cta-link.header-cta-primary:hover {
    background: #1e5fd4;
    border-color: #1e5fd4;
    color: #fff;
}

/* Header user dropdown (müşteri giriş sonrası) */
.header-user-menu {
    position: relative;
    display: inline-flex;
}
.header-user-menu > summary {
    list-style: none;
    cursor: pointer;
}
.header-user-menu > summary::-webkit-details-marker {
    display: none;
}
.header-user-dropdown {
    position: absolute;
    right: 0;
    top: calc(100% + 8px);
    min-width: 220px;
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    box-shadow: 0 12px 30px rgba(17,24,39,.12);
    padding: 8px;
    z-index: 2000;
    display: none;
}
.header-user-menu[open] .header-user-dropdown {
    display: block;
}
.header-user-dropdown a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 10px;
    border-radius: 10px;
    text-decoration: none;
    color: var(--secondary-color);
    font-size: 13px;
    font-weight: 600;
}
.header-user-dropdown a:hover {
    background: rgba(39, 113, 235, 0.06);
    color: var(--primary-color);
}
.header-user-dropdown .is-danger {
    color: #dc2626;
}
.header-user-dropdown .is-danger:hover {
    background: rgba(220,38,38,.08);
    color: #dc2626;
}

.nav-menu {
    display: flex;
}

.nav-list {
    display: flex;
    align-items: center;
    gap: 30px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-link {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--secondary-color);
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    transition: color 0.3s;
    position: relative;
}

.nav-link:hover {
    color: var(--primary-color);
}

.nav-link .menu-icon {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

/* Bootstrap Icons */
.nav-link .menu-icon {
    font-size: 20px;
    line-height: 1;
}

/* Dropdown Menu */
.nav-item-has-children {
    position: relative;
}

.nav-item-has-children > .nav-link {
    position: relative;
}

.nav-item-has-children > .nav-link::after {
    content: '';
    display: inline-block;
    width: 0;
    height: 0;
    border-left: 4px solid transparent;
    border-right: 4px solid transparent;
    border-top: 5px solid var(--secondary-color);
    margin-left: 4px;
    transition: transform 0.3s;
}

.nav-item-has-children:hover > .nav-link::after {
    transform: rotate(180deg);
}

.nav-dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    background: #fff;
    min-width: 220px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    border-radius: 6px;
    padding: 8px 0;
    margin-top: 10px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s;
    list-style: none;
    z-index: 100;
}

.nav-item-has-children:hover .nav-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.nav-dropdown-link {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 20px;
    color: var(--secondary-color);
    text-decoration: none;
    font-size: 14px;
    font-weight: 400;
    transition: background-color 0.3s, color 0.3s;
}

.nav-dropdown-link:hover {
    background-color: #f3f4f6;
    color: var(--primary-color);
}

.nav-dropdown-link svg {
    width: 14px;
    height: 14px;
    flex-shrink: 0;
}

/* Request Button */
.btn-request {
    background: var(--primary-color);
    color: #fff;
    padding: 10px 20px;
    border-radius: 6px;
    text-decoration: none;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: background-color 0.3s;
    white-space: nowrap;
}

.btn-request:hover {
    background: #1e5fd4;
}

/* Mobil Responsive */
@media (max-width: 768px) {
    h1 {
        font-size: 25px;
    }
    
    h2 {
        font-size: 21px;
    }
    
    h3 {
        font-size: 20px;
    }
    
    h4 {
        font-size: 19px;
    }
    
    h5 {
        font-size: 18px;
    }
    
    h6 {
        font-size: 17px;
    }

    /* iOS/Android: input focus zoom engelle (font-size < 16px olunca zoom yapıyor) */
    input,
    select,
    textarea {
        font-size: 16px !important;
    }

    /* Topbar - Mobilde Gizli */
    .topbar {
        display: none;
    }

    /* Desktop Navigation - Mobilde Gizli */
    .desktop-nav {
        display: none !important;
    }

    /* Mobile Navigation */
    .mobile-nav-content {
        display: flex !important;
        justify-content: space-between;
        align-items: center;
        width: 100%;
    }

    .mobile-menu-overlay {
        display: block !important;
    }

    .mobile-nav-toggle {
        background: none;
        border: none;
        padding: 8px;
        cursor: pointer;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .mobile-nav-icon {
        width: 24px;
        height: 24px;
    }
    .mobile-nav-icon {
        font-size: 24px;
        line-height: 1;
    }

    /* Mobil header ikonları: ikincil renk */
    .mobile-nav-toggle,
    .mobile-map-icon,
    .mobile-nav-icon,
    .map-icon-img {
        color: var(--secondary-color);
    }

    .mobile-logo {
        flex: 1;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .mobile-logo-img {
        height: 50px;
        width: auto;
    }

    .mobile-map-icon {
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 8px;
        background: none;
        border: none;
        cursor: pointer;
        -webkit-tap-highlight-color: transparent;
    }

    .map-icon-img {
        width: 24px;
        height: 24px;
    }
    .map-icon-img {
        font-size: 24px;
        line-height: 1;
    }

    /* Mobil Menü Overlay */
    .mobile-menu-overlay {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background: rgba(0, 0, 0, 0.5);
        z-index: 9998;
        opacity: 0;
        visibility: hidden;
        transition: opacity 0.3s, visibility 0.3s;
    }

    .mobile-menu-overlay.active {
        opacity: 1;
        visibility: visible;
    }

    .mobile-menu-content {
        position: fixed;
        top: 0;
        left: 0;
        width: 80%;
        height: 100vh;
        background: #fff;
        z-index: 9999;
        padding: 16px;
        transform: translateX(-100%);
        transition: transform 0.3s;
        box-shadow: 2px 0 10px rgba(0, 0, 0, 0.1);
        display: flex;
        flex-direction: column;
        overflow: hidden;
    }

    .mobile-menu-header {
        flex-shrink: 0;
    }

    .mobile-menu-sections {
        flex: 1;
        min-height: 0;
    }

    .mobile-menu-button-wrapper {
        flex-shrink: 0;
    }

    .mobile-menu-overlay.active .mobile-menu-content {
        transform: translateX(0);
    }

    .mobile-menu-header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding-bottom: 16px;
        border-bottom: 1px solid #e5e7eb;
        margin-bottom: 20px;
    }

    .mobile-menu-logo-img {
        height: 50px;
        width: auto;
    }

    .mobile-menu-logo a {
        display: flex;
        align-items: center;
    }

    .mobile-menu-close {
        background: #f3f4f6;
        border: none;
        padding: 8px;
        cursor: pointer;
        color: var(--primary-color);
        border-radius: 4px;
        display: flex;
        align-items: center;
        justify-content: center;
        width: 36px;
        height: 36px;
        flex-shrink: 0;
    }

    .mobile-menu-sections {
        display: flex;
        flex-direction: column;
        gap: 30px;
        flex: 1;
        overflow-y: auto;
        overflow-x: hidden;
        -webkit-overflow-scrolling: touch;
        min-height: 0;
    }

    /* Scrollbar gizle */
    .mobile-menu-sections::-webkit-scrollbar {
        width: 0;
        background: transparent;
    }

    .mobile-menu-sections {
        scrollbar-width: none; /* Firefox */
        -ms-overflow-style: none; /* IE and Edge */
    }

    .mobile-menu-button-wrapper {
        margin-top: 20px;
        padding-top: 20px;
        border-top: 1px solid #e5e7eb;
        flex-shrink: 0;
    }

    .mobile-btn-request {
        display: block;
        background: var(--primary-color);
        color: #fff;
        padding: 10px 20px;
        border-radius: 6px;
        text-decoration: none;
        font-size: 12px;
        font-weight: 600;
        text-transform: uppercase;
        letter-spacing: 0.5px;
        text-align: center;
        width: 100%;
        transition: background-color 0.3s;
    }

    .mobile-btn-request:hover {
        background: #1e5fd4;
    }

    .mobile-menu-section {
        margin-bottom: 0;
    }

    .mobile-menu-section-title {
        font-size: 16px;
        font-weight: 700;
        color: var(--secondary-color);
        margin-bottom: 15px;
    }

    .mobile-menu-section .mobile-nav-menu {
        margin-top: 0;
    }

    .mobile-menu-cards {
        display: flex;
        flex-direction: column;
        gap: 12px;
    }

    .mobile-menu-card {
        display: flex;
        align-items: flex-start;
        gap: 15px;
        padding: 15px;
        border: 1px solid #e5e7eb;
        border-radius: 8px;
        text-decoration: none;
        transition: all 0.3s;
    }

    .mobile-menu-card:hover {
        border-color: var(--primary-color);
        background-color: #f9fafb;
    }

    .mobile-menu-card-icon {
        flex-shrink: 0;
        width: 40px;
        height: 40px;
        display: flex;
        align-items: center;
        justify-content: center;
        color: var(--secondary-color);
        background: #f9fafb;
        border-radius: 6px;
    }

    .mobile-menu-card-icon svg {
        width: 20px;
        height: 20px;
    }

    .mobile-menu-card-content {
        flex: 1;
    }

    .mobile-menu-card-title {
        font-size: 15px;
        font-weight: 600;
        color: var(--secondary-color);
        margin-bottom: 5px;
    }

    .mobile-menu-card-desc {
        font-size: 13px;
        color: var(--text-color);
        line-height: 1.5;
    }

    /* Mobil Kullanıcı Menüsü (Dropdown) */
    .mobile-user-menu {
        position: relative;
        display: block;
    }

    .mobile-user-menu > summary {
        list-style: none;
        cursor: pointer;
    }

    .mobile-user-menu > summary::-webkit-details-marker {
        display: none;
    }

    .mobile-user-menu > summary {
        display: flex;
        align-items: flex-start;
        gap: 15px;
        padding: 15px;
        border: 1px solid #e5e7eb;
        border-radius: 8px;
        transition: all 0.3s;
    }

    .mobile-user-menu > summary:hover {
        border-color: var(--primary-color);
        background-color: #f9fafb;
    }

    .mobile-menu-card-chevron {
        margin-left: auto;
        font-size: 18px;
        color: var(--text-color);
        transition: transform 0.3s;
        flex-shrink: 0;
        align-self: center;
    }

    .mobile-user-menu[open] .mobile-menu-card-chevron {
        transform: rotate(180deg);
    }

    .mobile-user-dropdown {
        margin-top: 8px;
        background: #fff;
        border: 1px solid #e5e7eb;
        border-radius: 8px;
        overflow: hidden;
        display: none;
    }

    .mobile-user-menu[open] .mobile-user-dropdown {
        display: block;
    }

    .mobile-user-dropdown-item {
        display: flex;
        align-items: center;
        gap: 12px;
        padding: 12px 15px;
        text-decoration: none;
        color: var(--secondary-color);
        font-size: 14px;
        font-weight: 500;
        border-bottom: 1px solid #f3f4f6;
        transition: all 0.2s;
    }

    .mobile-user-dropdown-item:last-child {
        border-bottom: none;
    }

    .mobile-user-dropdown-item:hover {
        background: rgba(39, 113, 235, 0.06);
        color: var(--primary-color);
    }

    .mobile-user-dropdown-item i {
        font-size: 18px;
        width: 20px;
        text-align: center;
        flex-shrink: 0;
    }

    .mobile-user-dropdown-item.is-danger {
        color: #dc2626;
    }

    .mobile-user-dropdown-item.is-danger:hover {
        background: rgba(220, 38, 38, 0.08);
        color: #dc2626;
    }

    .mobile-nav-menu {
        margin-top: 0;
    }

    .mobile-nav-list {
        list-style: none;
        padding: 0;
        margin: 0;
    }

    .mobile-nav-link {
        display: flex;
        align-items: center;
        gap: 10px;
        padding: 12px 0;
        color: var(--secondary-color);
        text-decoration: none;
        font-size: 15px;
        font-weight: 500;
        border-bottom: 1px solid #e5e7eb;
    }

    .mobile-nav-link .mobile-menu-icon {
        width: 22px;
        height: 22px;
        flex-shrink: 0;
    }
    .mobile-nav-link .mobile-menu-icon {
        font-size: 22px;
        line-height: 1;
    }

    .mobile-nav-item-has-children > .mobile-nav-link::after {
        content: '+';
        float: right;
        font-size: 20px;
        font-weight: 300;
        transition: transform 0.3s;
    }

    .mobile-nav-item-has-children.active > .mobile-nav-link::after {
        transform: rotate(45deg);
    }

    .mobile-nav-dropdown {
        list-style: none;
        padding: 0;
        margin: 0;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s;
        background: #f9fafb;
    }

    .mobile-nav-item-has-children.active .mobile-nav-dropdown {
        max-height: 500px;
    }

    .mobile-nav-dropdown-link {
        display: block;
        padding: 10px 20px;
        color: var(--secondary-color);
        text-decoration: none;
        font-size: 14px;
        font-weight: 400;
        border-bottom: 1px solid #e5e7eb;
    }

    .mobile-nav-dropdown-link:hover {
        background-color: #f3f4f6;
        color: var(--primary-color);
    }

    body.menu-open {
        overflow: hidden;
    }
}

/* Hero Section */
.hero-section {
    position: relative;
    width: 100%;
    height: 550px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    background: var(--secondary-color);
}

.hero-background::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(17, 24, 39, 0.6);
    z-index: 1;
}

.hero-bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    opacity: 0.7;
    position: relative;
    z-index: 0;
}

.hero-content {
    position: relative;
    z-index: 2;
    width: 100%;
    text-align: center;
}

.hero-title {
    color: #fff;
    font-size: 30px;
    font-weight: 700;
    margin-bottom: 20px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-description {
    color: #fff;
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-search-form {
    display: flex;
    justify-content: center;
    align-items: center;
}

.search-form {
    display: flex;
    align-items: center;
    gap: 12px;
    background: #ffffff24;
    padding: 15px;
    border-radius: 8px;
    max-width: 900px;
    width: 100%;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.form-group {
    position: relative;
    flex: 1;
}

.form-select {
    width: 100%;
    padding: 12px 40px 12px 15px;
    border: 1px solid #e5e7eb;
    border-radius: 6px;
    font-size: 14px;
    color: var(--secondary-color);
    background: #fff;
    appearance: none;
    cursor: pointer;
    transition: border-color 0.3s;
}

.form-select:focus {
    outline: none;
    border-color: var(--primary-color);
}

.form-icon {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    width: 18px;
    height: 18px;
    pointer-events: none;
}

.search-button {
    display: flex;
    align-items: center;
    gap: 8px;
    background: var(--primary-color);
    color: #fff;
    padding: 12px 24px;
    border: none;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    cursor: pointer;
    transition: background-color 0.3s;
    white-space: nowrap;
}

.search-button:hover {
    background: #1e5fd4;
}

.search-icon {
    width: 18px;
    height: 18px;
    color: #fff;
    stroke: currentColor;
}

.hero-location-button-wrapper {
    display: flex;
    justify-content: center;
    margin-top: 20px;
}

.location-button {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: #198754;
    color: #fff;
    padding: 12px 24px;
    border: none;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    cursor: pointer;
    transition: background-color 0.3s;
    white-space: nowrap;
}

.location-button:hover {
    background: #157347;
}

.location-icon {
    font-size: 18px;
    line-height: 1;
    color: #fff;
}

/* Konum Popup */
.location-popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    z-index: 10000;
    display: none;
    align-items: center;
    justify-content: center;
    animation: fadeIn 0.3s ease;
}

.location-popup.active {
    display: flex;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

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

.location-popup-content {
    background: #fff;
    padding: 50px 40px;
    border-radius: 16px;
    text-align: center;
    max-width: 420px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    animation: slideUp 0.4s ease;
    position: relative;
}

.location-popup-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color) 0%, #1e5fd4 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 40px;
    color: #fff;
    font-weight: bold;
    box-shadow: 0 8px 20px rgba(33, 141, 91, 0.3);
    animation: scaleIn 0.5s ease 0.2s both;
}

/* Popup içindeki ikon (Bootstrap icon) */
.location-popup-icon i {
    font-size: 48px;
    line-height: 1;
    color: #fff;
}

@keyframes scaleIn {
    from {
        transform: scale(0);
    }
    to {
        transform: scale(1);
    }
}

.location-popup-content h3 {
    font-size: 24px;
    color: var(--secondary-color);
    margin-bottom: 12px;
    font-weight: 700;
}

.location-popup-content p {
    color: var(--text-color);
    font-size: 16px;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .hero-section {
        height: 500px;
        padding: 30px 0;
    }

    .hero-title {
        font-size: 25px;
        margin-bottom: 15px;
        padding: 0 15px;
    }

    .hero-description {
        font-size: 16px;
        margin-bottom: 30px;
        padding: 0 15px;
    }

    .search-form {
        flex-direction: column;
        gap: 10px;
        background: #ffffff24;
        padding: 15px;
        margin: 0 15px;
    }

    .form-group {
        width: 100%;
    }

    .search-button {
        width: 100%;
        justify-content: center;
    }

    .hero-location-button-wrapper {
        margin-top: 20px;
        padding: 0 15px;
        display: flex;
        justify-content: center;
    }

    .location-button {
        width: auto;
        min-width: 200px;
    }
}

/* Footer */
.site-footer {
    background: #fff;
    padding: 0;
}

/* Footer İletişim Bölümü */
.footer-contact-section {
    border-top: 1px solid #e5e7eb;
    border-bottom: 1px solid #e5e7eb;
    padding: 50px 0;
    background: #fff;
}

.footer-contact-items {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    align-items: center;
    gap: 40px;
}

.footer-contact-item {
    display: flex;
    flex-direction: row;
    align-items: center;
    text-align: left;
    gap: 20px;
}

.footer-contact-item:first-child {
    justify-content: flex-start;
}

.footer-contact-item:nth-child(2) {
    justify-content: center;
}

.footer-contact-item:last-child {
    justify-content: flex-end;
}

.contact-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f9fafb;
    transition: all 0.3s;
    flex-shrink: 0;
}

.contact-icon svg {
    width: 22px;
    height: 22px;
    stroke-width: 2;
}

/* Bootstrap Icons desteği */
.contact-icon i {
    font-size: 22px;
    line-height: 1;
}

.email-icon {
    color: #f97316;
}

.email-icon:hover {
    background: #f97316;
    color: #fff;
    transform: translateY(-3px);
}

.whatsapp-icon {
    color: var(--primary-color);
}

.whatsapp-icon:hover {
    background: var(--primary-color);
    color: #fff;
    transform: translateY(-3px);
}

.phone-icon {
    color: #10b981;
}

.phone-icon:hover {
    background: #10b981;
    color: #fff;
    transform: translateY(-3px);
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.contact-label {
    color: var(--text-color);
    font-size: 14px;
    margin: 0;
    font-weight: 400;
}

.contact-value {
    color: var(--secondary-color);
    font-size: 18px;
    font-weight: 700;
    text-decoration: none;
    transition: color 0.3s;
}

.contact-value:hover {
    color: var(--primary-color);
}

.footer-content {
    padding-top: 60px;
    text-align: center;
    margin-bottom: 40px;
}

.footer-content {
    text-align: center;
    margin-bottom: 40px;
}

.footer-logo-section {
    margin-bottom: 30px;
}

.footer-logo {
    margin-bottom: 20px;
}

.footer-logo-img {
    height: 60px;
    width: auto;
}

.footer-description {
    color: var(--text-color);
    font-size: 15px;
    line-height: 1.8;
    max-width: 800px;
    margin: 0 auto;
}

.footer-description strong {
    color: var(--secondary-color);
    font-weight: 600;
}

.footer-social {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    margin-top: 30px;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: #f3f4f6;
    border-radius: 50%;
    color: var(--secondary-color);
    text-decoration: none;
    transition: all 0.3s;
}

.social-link:hover {
    background: var(--primary-color);
    color: #fff;
    transform: translateY(-2px);
}

.social-link svg {
    width: 20px;
    height: 20px;
}

.footer-nav {
    background: #f9fafb;
    padding: 20px 0;
    margin: 40px 0 20px;
}

.footer-nav-links {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}

.footer-nav-link {
    color: var(--text-color);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s;
}

.footer-nav-link:hover {
    color: var(--primary-color);
}

.footer-nav-separator {
    color: var(--text-color);
    margin: 0 5px;
}

.footer-copyright {
    text-align: center;
    padding-top: 20px;
    padding-bottom: 10px;
}

.footer-copyright p {
    color: var(--text-color);
    font-size: 14px;
    margin: 0;
}

@media (max-width: 768px) {
    .site-footer {
        padding: 40px 0 20px;
    }

    .footer-logo-img {
        height: 50px;
    }

    .footer-description {
        font-size: 15px;
        padding: 0 15px;
    }

    .footer-social {
        gap: 12px;
    }

    .social-link {
        width: 36px;
        height: 36px;
    }

    .social-link svg {
        width: 18px;
        height: 18px;
    }

    .footer-nav-links {
        gap: 8px;
        padding: 0 15px;
    }

    .footer-nav-link {
        font-size: 13px;
    }

    .footer-nav-separator {
        margin: 0 3px;
    }

    .footer-copyright p {
        font-size: 13px;
        padding: 0 15px;
    }

    .footer-contact-section {
        padding: 40px 0;
    }

    .footer-contact-items {
        grid-template-columns: 1fr;
        gap: 25px;
        padding: 0 15px;
    }

    .footer-contact-item {
        width: 100%;
        justify-content: flex-start !important;
    }

    .contact-icon {
        width: 50px;
        height: 50px;
    }

    .contact-icon svg {
        width: 20px;
        height: 20px;
    }

    .contact-label {
        font-size: 13px;
    }

    .contact-value {
        font-size: 16px;
    }
}

/* Hakkımızda Bölümü */
.about-section {
    padding: 80px 0;
    background: #fff;
}

.about-content {
    display: flex;
    align-items: center;
    gap: 60px;
}

.about-image {
    flex: 1;
    max-width: 500px;
}

.about-img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.about-text {
    flex: 1;
}

.about-title {
    font-size: 25px;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 40px;
    line-height: 1.3;
}

.about-item {
    margin-bottom: 35px;
}

.about-item:last-child {
    margin-bottom: 0;
}

.about-item-title {
    font-size: 17.5px;
    font-weight: 600;
    color: var(--secondary-color);
    margin-bottom: 15px;
    line-height: 1.4;
}

.about-description {
    color: var(--text-color);
    font-size: 15px;
    line-height: 1.8;
    margin: 0;
}

@media (max-width: 768px) {
    .about-section {
        padding: 50px 0;
    }

    .about-content {
        flex-direction: column;
        gap: 40px;
    }

    .about-image {
        max-width: 100%;
        order: 2;
    }

    .about-text {
        order: 1;
    }

    .about-title {
        font-size: 22px;
        margin-bottom: 30px;
    }

    .about-item {
        margin-bottom: 30px;
    }

    .about-item-title {
        font-size: 16px;
        margin-bottom: 12px;
    }

    .about-description {
        font-size: 15px;
    }
}

/* Hizmetlerimiz Bölümü */
.services-section {
    padding: 80px 0;
    background: #fff;
}

.services-title {
    font-size: 28px;
    font-weight: 700;
    color: var(--secondary-color);
    text-align: center;
    margin-bottom: 12px;
}

.services-desc {
    font-size: 15px;
    line-height: 1.8;
    color: var(--text-color);
    text-align: center;
    max-width: 860px;
    margin: 0 auto 40px;
}

.services-slider-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    gap: 20px;
}

.services-dots {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 18px;
    user-select: none;
}

.services-dot {
    width: 10px;
    height: 10px;
    border-radius: 999px;
    border: 0;
    padding: 0;
    background: rgba(17, 24, 39, 0.18);
    cursor: pointer;
    transition: transform 0.15s ease, background-color 0.15s ease;
}

.services-dot:hover {
    transform: scale(1.15);
    background: rgba(17, 24, 39, 0.28);
}

.services-dot.is-active {
    background: var(--primary-color);
}

.services-slider-btn {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--primary-color);
    color: #fff;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background-color 0.3s, transform 0.2s;
    flex-shrink: 0;
    z-index: 2;
}

/* Masaüstü: okları gizle (mobil gibi sürükleyerek kaydırma) */
.services-slider-btn {
    display: none !important;
}

.services-slider-btn:hover {
    background: #1e5fd4;
    transform: scale(1.1);
}

.services-slider-btn svg {
    width: 24px;
    height: 24px;
}

.services-slider {
    flex: 1;
    overflow-x: auto;
    overflow-y: hidden;
    position: relative;
    scrollbar-width: none;
    -ms-overflow-style: none;
    scroll-snap-type: none;
    cursor: grab;
    -webkit-overflow-scrolling: touch;
    scroll-behavior: auto;
    overscroll-behavior-x: contain;
}

.services-slider::-webkit-scrollbar {
    display: none;
}

.services-slider.is-dragging {
    cursor: grabbing;
    user-select: none;
}

.services-slider-track {
    display: flex;
    gap: 20px;
    flex-wrap: nowrap;
    transition: none;
    will-change: auto;
}


.service-card {
    flex: 0 0 calc(25% - 15px);
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: none;
    transition: none;
    scroll-snap-align: start;
}

.service-card:hover {
    transform: none;
    box-shadow: none;
}

.service-card-image {
    position: relative;
    width: 100%;
    height: 300px;
    overflow: hidden;
}

.service-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: none;
}

/* Anasayfa Hizmetlerimiz: görsel kırpılmasın, tam sığsın */
.services-section .service-card-image {
    background: #fff;
}
.services-section .service-img {
    object-fit: contain;
}

.service-card:hover .service-img {
    transform: none;
}

.service-card-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(17, 24, 39, 0.9) 0%, transparent 100%);
    padding: 25px 20px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 15px;
}

.service-card-title {
    font-size: 18px;
    font-weight: 600;
    color: #fff;
    margin: 0;
    line-height: 1.3;
    flex: 1;
    display: flex;
    align-items: center;
}

.service-card-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--primary-color);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: background-color 0.3s, transform 0.2s;
    flex-shrink: 0;
}

.service-card-btn:hover {
    background: var(--primary-color);
    transform: none;
}

.service-card-btn svg {
    width: 20px;
    height: 20px;
}

/* Tablet */
@media (max-width: 1024px) {
    .service-card {
        flex: 0 0 calc(33.333% - 14px);
    }

    .services-slider-btn {
        width: 44px;
        height: 44px;
    }
}

/* Mobil */
@media (max-width: 768px) {
    .services-section {
        padding: 50px 0;
    }

    .services-title {
        font-size: 22px;
        margin-bottom: 10px;
    }

    .services-desc {
        font-size: 15px;
        margin: 0 auto 25px;
        padding: 0 4px;
    }

    .services-slider-wrapper {
        display: block;
        width: 100%;
        gap: 0;
    }

    .services-slider {
        width: 100%;
        margin: 0;
        padding: 0; /* mobilde container ile hizalı kalsın */
        flex: none !important;
        overflow-x: auto !important;
        overflow-y: hidden !important;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        -ms-overflow-style: none;
        scroll-snap-type: none;
        scroll-behavior: auto;
        display: block;
    }

    .services-slider::-webkit-scrollbar {
        display: none;
    }

    .services-slider-btn {
        display: none !important;
    }

    .services-slider-track {
        display: flex;
        flex-wrap: nowrap;
        gap: 14px; /* mobile spacing between cards */
        width: auto;
        min-width: 0;
        height: 100%;
        transition: none !important;
        transform: none !important;
        align-items: stretch;
    }

    .service-card {
        /* show spacing between cards while swiping (similar feel to desktop) */
        flex: 0 0 88%;
        scroll-snap-align: start;
        width: 88%;
        min-width: 88%;
        max-width: 88%;
        box-sizing: border-box;
        position: relative;
        overflow: hidden;
        flex-shrink: 0;
    }

    .service-card-image {
        height: 250px;
        overflow: hidden;
        width: 100%;
    }

    .service-card-image img,
    .service-card-image .service-img {
        width: 100% !important;
        height: 100% !important;
        object-fit: contain !important;
        display: block;
        max-width: 100% !important;
    }

    .service-card-title {
        font-size: 16px;
    }

    .service-card-content {
        padding: 25px 15px 15px;
    }

    .service-card-btn {
        width: 36px;
        height: 36px;
    }

    .service-card-btn svg {
        width: 18px;
        height: 18px;
    }
}

/* Süreç Bölümü */
.process-section {
    padding: 80px 0;
    background: #f9fafb;
}

.process-content {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    align-items: start;
}

.process-item {
    text-align: center;
    position: relative;
}

.process-icon-wrapper {
    position: relative;
    display: inline-block;
    margin-bottom: 25px;
}

.process-number {
    position: absolute;
    top: -8px;
    right: -8px;
    width: 32px;
    height: 32px;
    background: var(--primary-color);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    font-weight: 700;
    z-index: 2;
    box-shadow: 0 2px 8px rgba(39, 113, 235, 0.3);
}

.process-icon {
    width: 100px;
    height: 100px;
    background: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 2px solid #f3f4f6;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.process-item:hover .process-icon {
    transform: translateY(-5px);
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.12);
}

.process-icon svg {
    width: 60px;
    height: 60px;
}

.process-title {
    font-size: 18px;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 15px;
    line-height: 1.4;
}

.process-description {
    font-size: 15px;
    color: var(--text-color);
    line-height: 1.7;
    margin: 0;
}

@media (max-width: 1024px) {
    .process-content {
        grid-template-columns: repeat(2, 1fr);
        gap: 50px;
    }
}

@media (max-width: 768px) {
    .process-section {
        padding: 50px 0;
    }

    .process-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .process-icon {
        width: 90px;
        height: 90px;
    }

    .process-icon svg {
        width: 50px;
        height: 50px;
    }

    .process-title {
        font-size: 17px;
        margin-bottom: 12px;
    }

    .process-description {
        font-size: 14px;
    }
}

/* Sıkça Sorulan Sorular Bölümü */
.faq-section {
    padding: 80px 0;
    background: #fff;
}

.faq-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.faq-text {
    position: relative;
}

.faq-title {
    font-size: 25px;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 40px;
    line-height: 1.3;
}

.faq-list {
    position: relative;
    padding-left: 30px;
}

.faq-list::before {
    content: '';
    position: absolute;
    left: 15px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: repeating-linear-gradient(
        to bottom,
        var(--primary-color) 0,
        var(--primary-color) 8px,
        transparent 8px,
        transparent 16px
    );
}

.faq-item {
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

.faq-item:last-child {
    margin-bottom: 0;
}

.faq-question {
    display: flex;
    align-items: center;
    gap: 15px;
    width: 100%;
    text-align: left;
    background: none;
    border: none;
    padding: 0;
    cursor: pointer;
    transition: opacity 0.3s;
    position: relative;
    z-index: 1;
    pointer-events: auto;
}

.faq-question:hover {
    opacity: 0.8;
}

.faq-icon {
    width: 24px;
    height: 24px;
    background: var(--primary-color);
    color: #fff;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: 700;
    flex-shrink: 0;
    transition: transform 0.3s, background-color 0.3s;
    position: relative;
    z-index: 2;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
    background: var(--primary-color);
}

.faq-question-text {
    font-size: 16px;
    font-weight: 600;
    color: var(--secondary-color);
    line-height: 1.5;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out, padding 0.4s ease-out, opacity 0.3s ease-out;
    padding-left: 39px;
    padding-top: 0;
    padding-bottom: 0;
    opacity: 0;
}

.faq-item.active .faq-answer {
    max-height: 1000px;
    padding-top: 15px;
    padding-bottom: 10px;
    opacity: 1;
}

.faq-answer p {
    font-size: 15px;
    color: var(--text-color);
    line-height: 1.7;
    margin: 0;
}

.faq-image {
    position: relative;
    height: 100%;
    min-height: 600px;
    border-radius: 12px;
    overflow: hidden;
}

.faq-bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

@media (max-width: 1024px) {
    .faq-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .faq-image {
        min-height: 400px;
        order: -1;
    }
}

@media (max-width: 768px) {
    .faq-section {
        padding: 50px 0;
    }

    .faq-title {
        font-size: 20px;
        margin-bottom: 30px;
    }

    .faq-list {
        padding-left: 25px;
    }

    .faq-list::before {
        left: 12px;
    }

    .faq-icon {
        width: 20px;
        height: 20px;
        font-size: 16px;
    }

    .faq-question-text {
        font-size: 15px;
    }

    .faq-answer {
        padding-left: 35px;
    }

    .faq-answer p {
        font-size: 14px;
    }

    .faq-image {
        min-height: 300px;
    }
}

/* Çekici Sürücüsü Olun Bölümü */
.driver-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #1a1f2e 0%, #2d3441 100%);
    position: relative;
    overflow: hidden;
}

/* Müşteri Yorumları Bölümü */
.testimonials-section {
    padding: 80px 0;
    background: #fff;
}

.testimonials-header {
    text-align: center;
    margin-bottom: 35px;
}

.testimonials-title {
    font-size: 28px;
    font-weight: 700;
    color: var(--secondary-color);
    margin: 0 0 12px;
}

.testimonials-rating {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    color: var(--secondary-color);
}

.rating-stars,
.testimonial-stars {
    display: inline-flex;
    gap: 4px;
    color: #fbbf24;
}

.rating-text {
    font-size: 15px;
    color: var(--text-color);
}

.rating-text strong {
    color: var(--secondary-color);
}

.testimonials-slider {
    width: 100%;
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    -ms-overflow-style: none;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    cursor: grab;
}

.testimonials-slider::-webkit-scrollbar {
    display: none;
}

.testimonials-slider.is-dragging {
    cursor: grabbing;
    user-select: none;
}

.testimonials-track {
    display: flex;
    gap: 20px;
    flex-wrap: nowrap;
    padding: 0;
}

.testimonial-card {
    flex: 0 0 calc(25% - 15px);
    background: #fff;
    border-radius: 12px;
    border: 1px solid rgba(109, 119, 146, 0.18);
    padding: 22px 22px 18px;
    scroll-snap-align: start;
}

.testimonial-text {
    margin: 14px 0 18px;
    color: var(--text-color);
    font-size: 15px;
    line-height: 1.75;
}

.testimonial-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
}

.testimonial-name {
    font-weight: 600;
    color: var(--secondary-color);
    font-size: 15px;
}

.testimonial-date {
    color: var(--text-color);
    font-size: 13px;
    white-space: nowrap;
}

.testimonials-dots {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin-top: 30px;
    padding: 0;
    list-style: none;
}

.testimonials-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: none;
    background: rgba(39, 113, 235, 0.3);
    cursor: pointer;
    padding: 0;
    transition: background-color 0.3s ease;
    position: relative;
    flex-shrink: 0;
}

.testimonials-dot:hover {
    background: var(--primary-color);
}

.testimonials-dot.is-active {
    background: var(--primary-color);
}

@media (max-width: 1024px) {
    .testimonial-card {
        flex: 0 0 calc(50% - 10px);
    }
}

@media (max-width: 768px) {
    .testimonials-section {
        padding: 50px 0;
    }

    .testimonials-title {
        font-size: 22px;
    }

    .testimonials-rating {
        gap: 10px;
    }

    .testimonial-card {
        flex: 0 0 100%;
    }

    .testimonials-slider {
        cursor: auto;
    }

    .testimonials-dots {
        gap: 8px;
        margin-top: 24px;
        padding: 0 16px;
        flex-wrap: wrap;
        max-width: 100%;
        box-sizing: border-box;
    }

    .testimonials-dot {
        width: 8px;
        height: 8px;
        flex-shrink: 0;
    }
}

.driver-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
}

.driver-text {
    color: #fff;
}

.driver-title {
    font-size: 32px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 15px;
    line-height: 1.3;
}

.driver-subtitle {
    font-size: 15.5px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 40px;
    line-height: 1.7;
}

.driver-features {
    list-style: none;
    padding: 0;
    margin: 0;
}

.driver-feature-item {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
    font-size: 16px;
    color: #fff;
}

.driver-feature-item:last-child {
    margin-bottom: 0;
}

.check-icon {
    width: 20px;
    height: 20px;
    color: var(--primary-color);
    flex-shrink: 0;
}

.driver-card {
    background: #fff;
    border-radius: 12px;
    padding: 35px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    max-width: 480px;
    margin-left: auto;
}

.driver-card-title {
    font-size: 21px;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 14px;
    line-height: 1.4;
}

.driver-card-desc {
    font-size: 14.5px;
    color: var(--text-color);
    margin-bottom: 28px;
    line-height: 1.6;
}

.driver-apply-btn {
    display: inline-block;
    width: 100%;
    background: var(--primary-color);
    color: #fff;
    padding: 15px 30px;
    border-radius: 8px;
    font-size: 15.5px;
    font-weight: 600;
    text-align: center;
    text-decoration: none;
    transition: background-color 0.3s, transform 0.2s;
    margin-bottom: 14px;
}

.driver-apply-btn:hover {
    background: #1e5fd4;
    transform: translateY(-2px);
}

.driver-card-free {
    font-size: 12.5px;
    color: var(--text-color);
    text-align: center;
    margin: 0;
    opacity: 0.8;
}

@media (max-width: 1024px) {
    .driver-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .driver-card {
        order: -1;
    }
}

@media (max-width: 768px) {
    .driver-section {
        padding: 50px 0;
    }

    .driver-title {
        font-size: 26px;
    }

    .driver-subtitle {
        font-size: 16px;
        margin-bottom: 30px;
    }

    .driver-feature-item {
        font-size: 15px;
        margin-bottom: 15px;
    }

    .driver-card {
        padding: 30px 20px;
    }

    .driver-card-title {
        font-size: 20px;
    }

    .driver-card-desc {
        font-size: 14px;
        margin-bottom: 25px;
    }

    .driver-apply-btn {
        padding: 14px 24px;
        font-size: 15px;
    }
}

/* Özel İçerik Alanı - Makale */
.custom-content-section {
    padding: 80px 0;
    background: #fff;
}

.cekici-makale {
    max-width: 100%;
    max-height: 450px;
    overflow-y: auto;
    overflow-x: hidden;
    padding-right: 15px;
}

/* Scrollbar Styling */
.cekici-makale::-webkit-scrollbar {
    width: 8px;
}

.cekici-makale::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 4px;
}

.cekici-makale::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 4px;
}

.cekici-makale::-webkit-scrollbar-thumb:hover {
    background: var(--secondary-color);
}

.makale-bolum {
    margin-bottom: 50px;
}

.makale-bolum:last-child {
    margin-bottom: 0;
}

.cekici-makale h2 {
    font-size: 20px;
    font-weight: 700;
    color: var(--secondary-color);
    margin-top: 0;
    margin-bottom: 20px;
    line-height: 1.4;
}

.cekici-makale h3 {
    font-size: 20px;
    font-weight: 600;
    color: var(--secondary-color);
    margin-top: 25px;
    margin-bottom: 15px;
    line-height: 1.4;
}

.cekici-makale h4 {
    font-size: 16px;
    font-weight: 600;
    color: var(--secondary-color);
    margin-top: 20px;
    margin-bottom: 12px;
    line-height: 1.4;
}

.cekici-makale p {
    font-size: 15px;
    color: var(--text-color);
    line-height: 1.7;
    margin-bottom: 20px;
}

.cekici-makale ul {
    list-style: none;
    padding: 0;
    padding-left: 28px;
    margin: 20px 0;
}

.cekici-makale ul li {
    font-size: 15px;
    color: var(--text-color);
    line-height: 1.7;
    margin-bottom: 12px;
    padding-left: 0;
    position: relative;
}

.cekici-makale ul li::before {
    content: '✓';
    position: absolute;
    left: -28px;
    top: 0;
    width: 20px;
    height: 20px;
    background: var(--primary-color);
    color: #fff;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 700;
    line-height: 1;
}

.cekici-makale ul li:last-child {
    margin-bottom: 0;
}

.cekici-makale ol {
    list-style: none;
    counter-reset: makale-counter;
    padding: 0;
    padding-left: 28px;
    margin: 20px 0;
}

.cekici-makale ol li {
    font-size: 15px;
    color: var(--text-color);
    line-height: 1.7;
    margin-bottom: 12px;
    padding-left: 0;
    position: relative;
    counter-increment: makale-counter;
}

.cekici-makale ol li::before {
    content: counter(makale-counter);
    position: absolute;
    left: -28px;
    top: 0;
    width: 20px;
    height: 20px;
    background: var(--primary-color);
    color: #fff;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 700;
    line-height: 1;
}

.cekici-makale ol li:last-child {
    margin-bottom: 0;
}

.cekici-makale a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

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

.cekici-makale img {
    max-width: 100%;
    height: auto;
    margin: 20px 0;
    border-radius: 8px;
}

@media (max-width: 768px) {
    .custom-content-section {
        padding: 50px 0;
    }

    .custom-content-section .container {
        padding-left: 16px;
        padding-right: 16px;
    }

    .cekici-makale {
        max-height: 450px;
        padding-right: 10px;
        padding-left: 0;
    }

    .makale-bolum {
        margin-bottom: 40px;
        padding-right: 0;
    }

    .cekici-makale h2 {
        font-size: 20px;
        margin-bottom: 18px;
    }

    .cekici-makale h3 {
        font-size: 20px;
        margin-top: 20px;
        margin-bottom: 12px;
    }

    .cekici-makale h4 {
        font-size: 15px;
        margin-top: 18px;
        margin-bottom: 10px;
    }

    .cekici-makale p {
        font-size: 15px;
        margin-bottom: 18px;
    }

    .cekici-makale ul li,
    .cekici-makale ol li {
        font-size: 15px;
        padding-left: 0;
        margin-bottom: 10px;
    }

    .cekici-makale ul li::before,
    .cekici-makale ol li::before {
        width: 18px;
        height: 18px;
        font-size: 11px;
    }
}

/* Blog Bölümü */
.blog-section {
    padding: 80px 0;
    background: #f9fafb;
}

/* Blog sayfası (liste/kategori) */
.blog-page {
    padding: 50px 0 80px;
    background: #f9fafb;
}

.blog-categories-bar {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 0 0 18px;
}

.blog-category-chip {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 14px;
    border-radius: 999px;
    border: 1px solid rgba(var(--primary-color-rgb), 0.18);
    background: #fff;
    color: var(--secondary-color);
    text-decoration: none;
    font-weight: 700;
    font-size: 14px;
    line-height: 1;
}

.blog-category-chip.is-active {
    background: rgba(var(--primary-color-rgb), 0.10);
    border-color: rgba(var(--primary-color-rgb), 0.34);
}

.blog-grid {
    display: grid;
    /* Desktop: 5 sütun */
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 18px;
}

/* blog-card mevcut slider stillerini grid'de düzgünleştir */
.blog-page .blog-card {
    flex: initial;
    width: 100%;
    transform: none;
}
.blog-page .blog-card:hover {
    transform: none;
}

/* Görünür adet: Masaüstü 6, Tablet 2, Mobil 1 */
.blog-page .blog-grid-limit > .blog-card:nth-child(n+7) {
    display: none !important;
}

@media (max-width: 1024px) and (min-width: 769px) {
    .blog-grid {
        /* Tablet: 3 sütun */
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
    .blog-page .blog-grid-limit > .blog-card {
        display: none !important;
    }
    .blog-page .blog-grid-limit > .blog-card:nth-child(-n+3) {
        display: block !important;
    }
}

@media (max-width: 768px) {
    .blog-page {
        padding: 30px 0 60px;
    }
    .blog-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    .blog-page .blog-grid-limit > .blog-card {
        display: none !important;
    }
    .blog-page .blog-grid-limit > .blog-card:nth-child(1) {
        display: block !important;
    }
}

/* Blog detay ekleri */
.blog-post-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 12px;
    color: rgba(17, 24, 39, 0.75);
    font-weight: 600;
    font-size: 13.5px;
}
.blog-post-meta-item {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: rgba(17, 24, 39, 0.75);
    text-decoration: none;
}
.blog-post-meta-item i {
    color: var(--primary-color);
}
.blog-post-body {
    color: var(--text-color);
    line-height: 1.9;
    font-size: 15.5px;
}
.blog-post-body h2,
.blog-post-body h3 {
    font-weight: 700;
    color: var(--secondary-color);
    margin-top: 18px;
}
.blog-post-body a {
    color: var(--primary-color);
    font-weight: 700;
}

.blog-latest-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.blog-latest-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 10px 12px;
    border-radius: 12px;
    border: 1px solid #e5e7eb;
    background: #ffffff;
    text-decoration: none;
    color: rgba(17, 24, 39, 0.85);
    line-height: 1.35;
    transition: background-color 0.15s ease, border-color 0.15s ease, transform 0.15s ease;
}
.blog-latest-item:hover {
    text-decoration: none;
    background: #f9fafb;
    border-color: rgba(39, 113, 235, 0.28);
    transform: translateY(-1px);
}

.blog-latest-item::before {
    content: '';
    width: 8px;
    height: 8px;
    border-radius: 999px;
    background: rgba(39, 113, 235, 0.25);
    margin-top: 4px;
    flex: 0 0 auto;
}

.blog-latest-title {
    display: block;
    font-size: 13.5px;
    font-weight: 600;
    color: rgba(15, 23, 42, 0.92);
    letter-spacing: -0.01em;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.blog-categories-list {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.blog-section-title {
    font-size: 28px;
    font-weight: 700;
    color: var(--secondary-color);
    text-align: center;
    margin-bottom: 50px;
}

.blog-slider-wrapper {
    position: relative;
}

.blog-slider {
    width: 100%;
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    -ms-overflow-style: none;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    cursor: grab;
}

.blog-slider::-webkit-scrollbar {
    display: none;
}

.blog-slider.is-dragging {
    cursor: grabbing;
}

.blog-slider-track {
    display: flex;
    gap: 24px;
    padding: 0 2px;
    align-items: stretch;
}

.blog-card {
    flex: 0 0 calc(25% - 18px);
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    scroll-snap-align: start;
    scroll-snap-stop: always;
}

.blog-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
}

.blog-card-image {
    position: relative;
    width: 100%;
    padding-top: 60%;
    overflow: hidden;
    background: #e5e7eb;
}

.blog-card-image img,
.blog-img-placeholder {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px 12px 0 0;
}

.blog-img-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f3f4f6;
    color: #9ca3af;
}

.blog-online-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    background: rgba(255, 255, 255, 0.95);
    padding: 6px 10px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    font-weight: 600;
    color: #10b981;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.blog-online-badge svg {
    flex-shrink: 0;
}

.blog-card-content {
    padding: 24px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.blog-card-title {
    font-size: 18px;
    font-weight: 700;
    color: var(--secondary-color);
    margin: 0 0 12px;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.blog-card-description {
    font-size: 14px;
    color: var(--text-color);
    line-height: 1.6;
    margin: 0 0 16px;
    flex: 1;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.blog-card-link {
    display: inline-flex;
    align-items: center;
    font-size: 14px;
    font-weight: 600;
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.3s ease;
    margin-top: auto;
}

.blog-card-link:hover {
    color: var(--secondary-color);
    text-decoration: underline;
}

.blog-dots {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    margin-top: 30px;
    flex-wrap: wrap;
}

.blog-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #d1d5db;
    border: none;
    cursor: pointer;
    padding: 0;
    transition: background 0.3s ease, transform 0.3s ease;
}

.blog-dot.is-active {
    background: var(--primary-color);
    transform: scale(1.2);
}

.blog-dot:hover {
    background: var(--secondary-color);
}

@media (max-width: 1024px) and (min-width: 769px) {
    .blog-card {
        flex: 0 0 calc(50% - 12px);
    }
}

@media (max-width: 768px) {
    .blog-section {
        padding: 50px 0;
    }

    .blog-section-title {
        font-size: 22px;
        margin-bottom: 30px;
    }

    .blog-slider {
        cursor: auto;
    }

    .blog-card {
        flex: 0 0 100%;
        min-width: 0;
    }

    .blog-slider-track {
        gap: 16px;
        padding: 0;
    }

    .blog-card-content {
        padding: 20px;
    }

    .blog-card-title {
        font-size: 16px;
    }

    .blog-card-description {
        font-size: 14px;
    }
}

/* Page Hero Banner */
.page-hero-section {
    position: relative;
    padding: 0;
    margin-top: 0;
    margin-bottom: 0;
    overflow: hidden;
    min-height: 200px;
    display: flex;
    align-items: center;
}

/* Başvuru (basvuru.php) */
.application-section {
    padding: 48px 0 70px;
    background: #fff;
}

.benefits-card-top {
    border: 1px solid #e5e7eb;
    border-radius: 14px;
    padding: 24px 22px;
    background: rgba(var(--primary-color-rgb), 0.06);
}

.benefits-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 6px 10px;
    border-radius: 999px;
    background: rgba(var(--primary-color-rgb), 0.12);
    color: var(--primary-color);
    font-size: 12.5px;
    font-weight: 600;
    margin-bottom: 10px;
}

.benefits-title {
    margin: 0 0 10px;
    font-size: 22px;
    font-weight: 700;
    color: var(--secondary-color);
}

.benefits-description {
    margin: 0 0 14px;
    font-size: 15px;
    line-height: 1.8;
    color: var(--text-color);
}

.benefits-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 10px;
}

.benefits-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    color: var(--secondary-color);
    font-size: 14.5px;
    line-height: 1.6;
}

.benefits-list i {
    color: #198754;
    font-size: 18px;
    line-height: 1;
    margin-top: 2px;
}

.benefits-cta {
    margin-top: 14px;
}

.benefits-note {
    margin: 0;
    font-size: 13px;
    color: rgba(17, 24, 39, 0.7);
    background: rgba(17, 24, 39, 0.04);
    border: 1px dashed rgba(17, 24, 39, 0.12);
    padding: 8px 10px;
    border-radius: 10px;
    display: inline-block;
}

.application-form-wrapper {
    margin-top: 18px;
    border: 1px solid #e5e7eb;
    border-radius: 14px;
    background: #fff;
    padding: 22px;
}

.form-header-support {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
    padding: 10px 12px;
    border-radius: 12px;
    background: rgba(var(--primary-color-rgb), 0.06);
    border: 1px solid rgba(var(--primary-color-rgb), 0.12);
}

.support-label {
    font-size: 12px;
    font-weight: 600;
    color: rgba(17, 24, 39, 0.7);
    letter-spacing: 0.2px;
}

.support-phone {
    font-size: 14px;
    font-weight: 700;
    color: var(--secondary-color);
    text-decoration: none;
}

.support-phone:hover {
    text-decoration: none;
}

.support-icon {
    margin-left: auto;
    color: var(--primary-color);
    font-size: 18px;
}

.form-title {
    margin: 0 0 6px;
    font-size: 22px;
    font-weight: 700;
    color: var(--secondary-color);
}

.form-subtitle,
.form-subtitle-secondary {
    margin: 0;
    font-size: 15px;
    line-height: 1.7;
    color: var(--text-color);
}

.form-subtitle-secondary {
    margin-top: 6px;
    opacity: 0.9;
}

.application-form-header h2 {
    margin: 0 0 8px;
    font-size: 20px;
    font-weight: 700;
    color: var(--secondary-color);
}

.application-form-header p {
    margin: 0 0 16px;
    font-size: 15px;
    line-height: 1.8;
    color: var(--text-color);
}

.application-form {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
}

.application-section .form-row {
    display: flex;
    gap: 12px;
    grid-column: 1 / -1;
}

.application-section .form-group {
    position: relative;
    flex: 1 1 0;
}

.application-section .form-group-full {
    flex: 1 1 100%;
}

.application-section .form-icon-wrapper {
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-color);
    pointer-events: none;
    overflow: hidden;
}

.application-section .form-icon-wrapper i {
    font-size: 20px;
    line-height: 1;
}

.application-section .form-input,
.application-section .form-select {
    width: 100%;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    padding: 14px 16px 14px 48px;
    font-size: 15px;
    background: #fff;
    outline: none;
}

.application-section .form-select {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
}

.application-section .form-select-icon {
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
    color: rgba(17, 24, 39, 0.55);
    pointer-events: none;
}

.application-section .form-input:focus,
.application-section .form-select:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(var(--primary-color-rgb), 0.12);
}

.application-section .form-submit-btn {
    width: 100%;
    border: none;
    border-radius: 10px;
    background: var(--primary-color);
    color: #fff;
    padding: 12px 14px;
    font-weight: 700;
    cursor: pointer;
}

.application-section .form-submit-btn:hover {
    background: #1e5fd4;
}

/* Kurumsal Modal (Başvuru başarı popup) */
.cp-modal {
    position: fixed;
    inset: 0;
    z-index: 10000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 18px;
}
.cp-modal.is-open { display: flex; }
.cp-modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(2, 6, 23, 0.55);
    backdrop-filter: blur(2px);
}
.cp-modal-card {
    position: relative;
    width: min(560px, 100%);
    background: #fff;
    border: 1px solid rgba(229, 231, 235, 0.9);
    border-radius: 16px;
    padding: 18px 18px 16px;
    box-shadow: 0 30px 80px rgba(15, 23, 42, 0.25);
    transform: translateY(8px) scale(0.98);
    opacity: 0;
    animation: cpModalIn 180ms ease-out forwards;
}
@keyframes cpModalIn {
    to { transform: translateY(0) scale(1); opacity: 1; }
}
.cp-modal-head {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 10px;
}
.cp-modal-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: rgba(39, 113, 235, 0.12);
    color: var(--primary-color);
    display: grid;
    place-items: center;
    flex: 0 0 auto;
}
.cp-modal-title {
    margin: 0;
    font-size: 18px;
    font-weight: 800;
    color: var(--secondary-color);
    line-height: 1.25;
}
.cp-modal-text {
    margin: 6px 0 0;
    font-size: 14.5px;
    color: rgba(17, 24, 39, 0.70);
    font-weight: 600;
    line-height: 1.6;
}
.cp-modal-actions {
    display: flex;
    justify-content: flex-end;
    gap: 10px;
    margin-top: 14px;
    flex-wrap: wrap;
}
.cp-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border-radius: 10px;
    padding: 10px 12px;
    font-size: 13px;
    font-weight: 700;
    border: 1px solid #e5e7eb;
    background: #fff;
    color: var(--secondary-color);
    text-decoration: none;
    cursor: pointer;
}
.cp-btn-primary {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: #fff;
}
.cp-btn-primary:hover { background: #1e5fd4; border-color: #1e5fd4; }
.cp-btn-ghost:hover { background: rgba(39, 113, 235, 0.06); border-color: var(--primary-color); color: var(--primary-color); }

.application-benefits-full {
    margin-top: 20px;
    border: 1px solid #e5e7eb;
    border-radius: 14px;
    padding: 26px 22px;
    background: #fff;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
    align-items: start;
}

.benefits-guarantee {
    border: 1px solid rgba(var(--primary-color-rgb), 0.14);
    border-radius: 14px;
    padding: 18px 16px;
    background: rgba(var(--primary-color-rgb), 0.04);
}

.guarantee-title {
    margin: 0 0 12px;
    font-size: 20px;
    font-weight: 700;
    color: var(--secondary-color);
    line-height: 1.25;
}

.guarantee-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 12px;
}

.guarantee-list li {
    display: flex;
    gap: 10px;
    align-items: flex-start;
}

.guarantee-list li > i {
    color: #198754;
    font-size: 18px;
    line-height: 1;
    margin-top: 2px;
    flex: 0 0 auto;
}

.guarantee-list strong {
    display: block;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 4px;
}

.guarantee-list p {
    margin: 0;
    font-size: 15px;
    line-height: 1.8;
    color: var(--text-color);
}

.benefits-advantages {
    border: 1px solid #e5e7eb;
    border-radius: 14px;
    padding: 18px 16px;
    background: #fff;
}

.advantages-title {
    margin: 0 0 8px;
    font-size: 20px;
    font-weight: 700;
    color: var(--secondary-color);
}

.advantages-intro {
    margin: 0 0 18px;
    font-size: 15px;
    line-height: 1.8;
    color: var(--text-color);
}

.advantages-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
}

.advantage-item {
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    padding: 14px;
    background: rgba(var(--primary-color-rgb), 0.04);
}

.advantage-icon {
    width: 38px;
    height: 38px;
    border-radius: 12px;
    background: rgba(var(--primary-color-rgb), 0.12);
    color: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 10px;
}

.advantage-icon i {
    font-size: 18px;
    line-height: 1;
}

.advantage-name {
    margin: 0 0 6px;
    font-size: 15px;
    font-weight: 600;
    color: var(--secondary-color);
}

.advantage-desc {
    margin: 0;
    font-size: 14.5px;
    line-height: 1.7;
    color: var(--text-color);
}

.application-form .form-input,
.application-form input,
.application-form select,
.application-form textarea {
    width: 100%;
    border: 1px solid #e5e7eb;
    border-radius: 10px;
    padding: 12px 40px 12px 44px;
    font-size: 14px;
    outline: none;
    background: #fff;
}

.application-form select {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
}

.application-form .form-input:focus,
.application-form input:focus,
.application-form select:focus,
.application-form textarea:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(var(--primary-color-rgb), 0.12);
}

.application-form textarea {
    min-height: 110px;
    resize: vertical;
}

.application-form .form-full {
    grid-column: 1 / -1;
}

.application-form .form-submit {
    grid-column: 1 / -1;
    background: var(--primary-color);
    color: #fff;
    border: none;
    border-radius: 10px;
    padding: 12px 14px;
    font-weight: 700;
    cursor: pointer;
}

.application-form .form-submit:hover {
    background: #1e5fd4;
}

@media (max-width: 768px) {
    .application-section {
        padding: 34px 0 56px;
    }
    .application-form {
        grid-template-columns: 1fr;
    }
    .benefits-card-top,
    .application-form-wrapper {
        padding: 18px 16px;
    }

    .application-section .form-row {
        flex-direction: column;
    }

    .advantages-grid {
        grid-template-columns: 1fr;
    }

    .application-benefits-full {
        grid-template-columns: 1fr;
        padding: 18px 16px;
    }
}

.page-hero-section .container {
    padding: 60px 20px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    min-height: 200px;
}

.page-hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.page-hero-bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: blur(3px);
    transform: scale(1.1);
}

.page-hero-background::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(17, 24, 39, 0.75);
    z-index: 2;
}


.page-hero-content {
    position: relative;
    z-index: 3;
    text-align: left;
    color: #fff;
    max-width: 1475px;
    margin: 0 auto;
    padding: 0;
    width: 100%;
}

.page-hero-breadcrumb {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 20px;
}

.page-hero-title {
    font-size: 32px;
    font-weight: 700;
    color: #fff;
    margin: 0 0 20px;
    line-height: 1.2;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.page-hero-description {
    font-size: 15px;
    color: #fff;
    line-height: 1.6;
    margin: 0;
    opacity: 0.95;
    max-width: 800px;
    text-shadow: 0 1px 5px rgba(0, 0, 0, 0.2);
}

.page-hero-breadcrumb .breadcrumb-home {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 6px;
    color: #fff;
    text-decoration: none;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.page-hero-breadcrumb .breadcrumb-home:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
}

.page-hero-breadcrumb .breadcrumb-home svg {
    width: 18px;
    height: 18px;
}

.page-hero-breadcrumb .breadcrumb-separator {
    width: 6px;
    height: 6px;
    background: #fff;
    border-radius: 50%;
    flex-shrink: 0;
    opacity: 0.8;
}

.page-hero-breadcrumb .breadcrumb-current {
    font-size: 14px;
    color: #fff;
    font-weight: 500;
    opacity: 0.9;
}

/* Hero breadcrumb linkleri: mavi/altı çizgi olmasın, sabit beyaz olsun */
.page-hero-breadcrumb a,
.page-hero-breadcrumb a:visited,
.page-hero-breadcrumb a:hover,
.page-hero-breadcrumb a:active {
    color: #fff;
    text-decoration: none;
}

.page-hero-breadcrumb a:hover {
    text-decoration: none;
}

/* Breadcrumb (Eski stil - artık kullanılmıyor ama geriye dönük uyumluluk için) */
.breadcrumb-section {
    padding: 20px 0;
    background: #f9fafb;
    border-bottom: 1px solid #e5e7eb;
    margin-top: 0;
}

.breadcrumb {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

.breadcrumb-home {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    background: #fff;
    border-radius: 6px;
    color: var(--primary-color);
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.breadcrumb-home:hover {
    background: var(--primary-color);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
}

.breadcrumb-home svg {
    width: 18px;
    height: 18px;
}

.breadcrumb-separator {
    width: 6px;
    height: 6px;
    background: var(--primary-color);
    border-radius: 50%;
    flex-shrink: 0;
}

.breadcrumb-current {
    font-size: 14px;
    color: var(--text-color);
    font-weight: 500;
}

/* FAQ Sayfası */
.faq-page-section,
.page-content-section {
    padding: 60px 0 80px;
    background: #fff;
    overflow: visible;
}

.page-with-sidebar {
    display: flex;
    gap: 40px;
    align-items: flex-start;
    position: relative;
    overflow: visible;
}

.page-sidebar {
    width: 25%;
    flex-shrink: 0;
    align-self: flex-start;
    position: -webkit-sticky;
    position: sticky;
    top: 100px;
    height: fit-content;
    overflow: visible;
}

/* Sidebar layout stabilitesi:
   JS fallback devreye girince `.page-sidebar` fixed/absolute olur ve flex layouttan çıkar.
   Bu durumda içerik alanının "daralma/genişleme" yapmaması için flex-basis/width'u override ediyoruz. */
.page-with-sidebar > .page-sidebar {
    flex: 0 0 25%;
    width: auto;
}

.page-with-sidebar > .page-content {
    flex: 1 1 auto;
    width: auto;
    min-width: 0; /* uzun metinlerde taşmayı önler */
    order: 1;
}

.page-with-sidebar > .page-sidebar {
    order: 2;
}

.sidebar-nav {
    position: relative;
    z-index: 10;
}

.sidebar-menu {
    list-style: none;
    padding: 0;
    margin: 0;
    background: #f9fafb;
    border-radius: 8px;
    padding: 20px;
}

.sidebar-item {
    margin-bottom: 8px;
}

.sidebar-item:last-child {
    margin-bottom: 0;
}

.sidebar-link {
    display: block;
    padding: 12px 16px;
    color: var(--text-color);
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.sidebar-link:hover {
    background: #e5e7eb;
    color: var(--primary-color);
}

.sidebar-link.active {
    background: var(--primary-color);
    color: #fff;
}

.page-content {
    width: 75%;
    flex: 1;
    line-height: 1.8;
}

/* Sidebar OLMAYAN sayfalarda (.page-content direkt container altında) içerik %100 olmalı
   Sidebar'lı sayfalarda `.page-content` `.page-with-sidebar` içinde olduğu için bu selector eşleşmez. */
.page-content-section > .container > .page-content {
    width: 100%;
}

/* Service Detail Page (Hizmetlerimiz Detay) */
.service-detail-grid {
    display: flex;
    gap: 28px;
    align-items: flex-start;
    position: relative; /* JS sticky fallback için absolute referansı */
    overflow: visible;
}

.service-detail-main {
    flex: 1 1 auto;
    min-width: 0;
}

.service-detail-sidebar {
    flex: 0 0 360px;
    width: 360px;
    overflow: visible;
    height: fit-content;
    position: relative; /* JS fallback absolute için */
}

.service-detail-sidebar-inner {
    width: 100%;
}

@media (min-width: 769px) {
    .service-detail-sidebar {
        align-self: flex-start;
    }

    /* Sticky wrapper (flex-item sticky bazı tarayıcılarda sorunlu olabiliyor) */
    .service-detail-sidebar-inner {
        position: -webkit-sticky;
        position: sticky;
        top: 100px; /* header fixed */
    }
}

@media (max-width: 768px) {
    .service-detail-grid {
        flex-direction: column;
    }

    .service-detail-sidebar {
        width: 100%;
        flex: 0 0 auto;
        position: static;
    }

    .service-detail-sidebar-inner {
        position: static;
        top: auto;
    }
}

.service-detail-card {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    overflow: visible; /* mobilde tablo/uzun içerik kırpılmasın */
}

.service-detail-image {
    overflow: hidden;
    border-radius: 12px 12px 0 0;
}

.service-detail-image img {
    width: 100%;
    height: auto;
    display: block;
    max-height: 420px;
    object-fit: cover;
}

.service-detail-body {
    padding: 20px 22px 24px;
    overflow-wrap: anywhere;
    word-break: break-word;
}

.service-detail-title {
    margin: 0 0 12px;
    font-size: 22px;
    font-weight: 700;
    color: var(--secondary-color);
    line-height: 1.25;
}

.service-detail-description {
    margin: 0;
    color: var(--text-color);
    line-height: 1.9;
    font-size: 15px;
}

.service-article {
    margin-top: 18px;
    overflow-wrap: anywhere;
    word-break: break-word;
}

.service-article p {
    margin: 0 0 14px;
    font-size: 14.5px;
    line-height: 1.9;
    color: var(--text-color);
}

.service-article h2 {
    font-size: 20px;
    font-weight: 700;
    color: var(--secondary-color);
    line-height: 1.25;
    margin: 26px 0 12px;
}

.service-article h3 {
    font-size: 18px;
    font-weight: 700;
    color: var(--secondary-color);
    line-height: 1.25;
    margin: 20px 0 10px;
}

/* İlk başlık üstten boşluk almasın */
.service-article > h2:first-child,
.service-article > h3:first-child {
    margin-top: 0;
}

/* Başlıklar ile açıklama arası daha ferah */
.service-article h2 + p,
.service-article h3 + p {
    margin-top: 0;
}

/* Anchor tıklanınca fixed header altında kalmasın */
.service-article h2[id],
.service-article h3[id] {
    scroll-margin-top: 110px;
}

/* Liste öğeleri: anasayfadaki .cekici-makale tasarımı ile aynı (✓ kutucuk) */
.service-article ul {
    list-style: none;
    padding: 0;
    padding-left: 28px;
    margin: 20px 0;
}

.service-article ul li {
    font-size: 14.5px;
    color: var(--text-color);
    line-height: 1.7;
    margin-bottom: 12px;
    padding-left: 0;
    position: relative;
}

.service-article ul li::before {
    content: '✓';
    position: absolute;
    left: -28px;
    top: 0;
    width: 20px;
    height: 20px;
    background: var(--primary-color);
    color: #fff;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 700;
    line-height: 1;
}

.service-article ul li:last-child {
    margin-bottom: 0;
}

.service-article ol {
    list-style: none;
    counter-reset: service-article-counter;
    padding: 0;
    padding-left: 28px;
    margin: 20px 0;
}

.service-article ol li {
    font-size: 14.5px;
    color: var(--text-color);
    line-height: 1.7;
    margin-bottom: 12px;
    padding-left: 0;
    position: relative;
    counter-increment: service-article-counter;
}

.service-article ol li::before {
    content: counter(service-article-counter);
    position: absolute;
    left: -28px;
    top: 0;
    width: 20px;
    height: 20px;
    background: var(--primary-color);
    color: #fff;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 700;
    line-height: 1;
}

.service-article ol li:last-child {
    margin-bottom: 0;
}

.service-article a {
    color: var(--primary-color);
    text-decoration: none;
    transition: none;
}

.service-article a:hover {
    text-decoration: underline;
}

.service-article-table-wrap {
    width: 100%;
    overflow-x: auto;
    border: 1px solid #e5e7eb;
    border-radius: 10px;
    background: #fff;
}

.service-article-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 520px;
}

@media (max-width: 768px) {
    .service-article-table {
        min-width: 420px;
    }
}

.service-article-table thead th {
    text-align: left;
    font-weight: 800;
    font-size: 13px;
    color: var(--secondary-color);
    background: #f9fafb;
    padding: 12px 14px;
    border-bottom: 1px solid #e5e7eb;
    white-space: nowrap;
}

.service-article-table tbody td {
    padding: 12px 14px;
    border-bottom: 1px solid #e5e7eb;
    font-size: 14.5px;
    color: var(--text-color);
}

.service-article-table tbody tr:last-child td {
    border-bottom: none;
}

.service-article-table tbody tr:nth-child(even) td {
    background: #fcfcfd;
}

.service-sidebar-card {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    padding: 16px;
}

.service-detail-sidebar .service-sidebar-card + .service-sidebar-card {
    margin-top: 16px;
}

/* Service FAQ Styles */
.service-faq-card {
    margin-top: 28px;
    padding: 24px 22px;
}

.service-faq-title {
    font-size: 22px;
    font-weight: 700;
    color: var(--secondary-color);
    margin: 0 0 24px;
    line-height: 1.3;
}

.service-faq-list {
    position: relative;
    padding-left: 30px;
}

.service-faq-list::before {
    content: '';
    position: absolute;
    left: 15px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: repeating-linear-gradient(
        to bottom,
        var(--primary-color) 0,
        var(--primary-color) 8px,
        transparent 8px,
        transparent 16px
    );
}

.service-faq-item {
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

.service-faq-item:last-child {
    margin-bottom: 0;
}

.service-faq-question {
    display: flex;
    align-items: center;
    gap: 15px;
    width: 100%;
    text-align: left;
    background: none;
    border: none;
    padding: 0;
    cursor: pointer;
    transition: opacity 0.3s;
    position: relative;
    z-index: 1;
    pointer-events: auto;
}

.service-faq-question:hover {
    opacity: 0.8;
}

.service-faq-icon {
    width: 24px;
    height: 24px;
    background: var(--primary-color);
    color: #fff;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: 700;
    flex-shrink: 0;
    transition: transform 0.3s, background-color 0.3s;
    position: relative;
    z-index: 2;
}

.service-faq-item.active .service-faq-icon {
    transform: rotate(45deg);
    background: var(--primary-color);
}

.service-faq-question-text {
    font-size: 16px;
    font-weight: 600;
    color: var(--secondary-color);
    line-height: 1.5;
    flex: 1;
}

.service-faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    padding: 0 0 0 39px;
}

.service-faq-item.active .service-faq-answer {
    max-height: 500px;
    padding: 12px 0 0 39px;
}

.service-faq-answer p {
    font-size: 14.5px;
    color: var(--text-color);
    line-height: 1.7;
    margin: 0;
}

@media (max-width: 768px) {
    .service-faq-card {
        margin-top: 20px;
        padding: 20px 16px;
    }

    .service-faq-title {
        font-size: 20px;
        margin-bottom: 20px;
    }

    .service-faq-list {
        padding-left: 24px;
    }

    .service-faq-list::before {
        left: 12px;
    }

    .service-faq-icon {
        width: 22px;
        height: 22px;
        font-size: 16px;
    }

    .service-faq-question-text {
        font-size: 15px;
    }

    .service-faq-answer {
        padding: 0 0 0 37px;
    }

    .service-faq-item.active .service-faq-answer {
        padding: 10px 0 0 37px;
    }

    .service-faq-answer p {
        font-size: 14px;
    }
}

.service-sidebar-stats {
    padding: 10px 16px;
}

.service-sidebar-stat {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 10px 0;
    border-bottom: 1px solid #e5e7eb;
}

.service-sidebar-stat:last-child {
    border-bottom: none;
}

.service-sidebar-stat-left {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--secondary-color);
    font-size: 14px;
    font-weight: 600;
    min-width: 0;
}

.service-sidebar-stat-left i {
    color: #6b7280;
    font-size: 16px;
    flex-shrink: 0;
}

.service-sidebar-stat.is-status .service-sidebar-stat-left i {
    color: #198754;
}

.service-sidebar-stat-value {
    font-size: 13px;
    font-weight: 800;
    color: var(--secondary-color);
    white-space: nowrap;
}

.service-sidebar-actions {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 16px;
}

.service-sidebar-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    padding: 10px 12px;
    border-radius: 999px;
    font-weight: 800;
    font-size: 14px;
    text-decoration: none;
    border: 0;
    transition: none;
}

.service-sidebar-btn i {
    font-size: 15px;
}

.service-sidebar-btn-call {
    background: var(--primary-color);
    color: #fff;
}

.service-sidebar-btn-whatsapp {
    background: #198754;
    color: #fff;
}

.service-sidebar-social {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    margin-top: 8px;
}

.service-sidebar-social-link {
    width: 34px;
    height: 34px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    background: #f3f4f6;
    color: var(--secondary-color);
    text-decoration: none;
    transition: none;
}

.service-sidebar-social-link i {
    font-size: 16px;
}

.service-sidebar-services-title {
    margin: 0 0 12px;
    font-size: 16px;
    font-weight: 800;
    color: var(--secondary-color);
}

.service-sidebar-toc-title {
    margin: 0 0 12px;
    font-size: 16px;
    font-weight: 800;
    color: var(--secondary-color);
}

.service-sidebar-toc-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
    max-height: 176px; /* ~4 öğe */
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* IE/Edge legacy */
}

.service-sidebar-toc-list::-webkit-scrollbar {
    display: none;
}

.service-sidebar-toc-link {
    display: block;
    padding: 6px 0 6px 14px;
    color: var(--secondary-color);
    text-decoration: none;
    font-weight: 700;
    font-size: 14px;
    line-height: 1.4;
    overflow-wrap: anywhere;
    word-break: break-word;
    transition: none;
    position: relative;
}

.service-sidebar-toc-link::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.9em;
    width: 6px;
    height: 6px;
    border-radius: 999px;
    background: var(--primary-color);
    transform: translateY(-50%);
}

.service-sidebar-toc-item.is-level-3 .service-sidebar-toc-link {
    padding-left: 24px;
}

.service-sidebar-toc-item.is-level-3 .service-sidebar-toc-link::before {
    left: 10px;
    width: 5px;
    height: 5px;
}

.service-sidebar-toc-link:hover {
    text-decoration: underline;
}

.service-sidebar-services-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.service-sidebar-services-link {
    display: block;
    padding: 10px 12px;
    border-radius: 10px;
    background: #f9fafb;
    border: 1px solid #e5e7eb;
    color: var(--secondary-color);
    text-decoration: none;
    font-weight: 700;
    font-size: 14px;
    transition: none;
}

.service-sidebar-services-link:hover,
.service-sidebar-services-link:focus,
.service-sidebar-services-link:active {
    text-decoration: none !important;
    border-bottom: none !important;
}

.service-sidebar-services-link.is-active {
    background: rgba(39, 113, 235, 0.12);
    border-color: rgba(39, 113, 235, 0.35);
    color: var(--primary-color);
}

/* City/District Page Styles */
.city-page-content {
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 28px;
    margin-top: 40px;
}

.city-page-main {
    min-width: 0;
}

.city-page-card {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    padding: 28px;
}

.city-page-intro h2 {
    font-size: 24px;
    font-weight: 700;
    color: var(--secondary-color);
    margin: 0 0 16px;
    line-height: 1.3;
}

.city-page-intro p {
    font-size: 15px;
    color: var(--text-color);
    line-height: 1.7;
    margin: 0 0 16px;
}

.city-page-services {
    margin-top: 32px;
    padding-top: 32px;
    border-top: 1px solid #e5e7eb;
}

.city-page-services h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--secondary-color);
    margin: 0 0 20px;
}

.city-services-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}

.city-services-list li {
    font-size: 14.5px;
    color: var(--text-color);
    padding-left: 24px;
    position: relative;
    line-height: 1.6;
}

.city-services-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 8px;
    width: 6px;
    height: 6px;
    background: var(--primary-color);
    border-radius: 50%;
}

.city-page-districts {
    margin-top: 32px;
    padding-top: 32px;
    border-top: 1px solid #e5e7eb;
}

.city-page-districts h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--secondary-color);
    margin: 0 0 20px;
}

.districts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 12px;
}

.district-link {
    display: block;
    padding: 12px 16px;
    background: #f9fafb;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    color: var(--secondary-color);
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    text-align: center;
    transition: all 0.3s;
}

.district-link:hover {
    background: rgba(39, 113, 235, 0.08);
    border-color: var(--primary-color);
    color: var(--primary-color);
    transform: translateY(-2px);
}

.city-page-sidebar {
    min-width: 0;
}

.city-sidebar-card {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 16px;
}

.city-sidebar-card:last-child {
    margin-bottom: 0;
}

.city-sidebar-card h3 {
    font-size: 18px;
    font-weight: 700;
    color: var(--secondary-color);
    margin: 0 0 16px;
}

.city-sidebar-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    padding: 12px 20px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s;
    margin-bottom: 12px;
}

.city-sidebar-btn:last-child {
    margin-bottom: 0;
}

.city-sidebar-btn-call {
    background: var(--primary-color);
    color: #fff;
}

.city-sidebar-btn-call:hover {
    background: #1e5fd4;
    transform: translateY(-2px);
}

.city-sidebar-btn-whatsapp {
    background: #25d366;
    color: #fff;
}

/* Region Pages (City/District) - Enyakin benzeri kurumsal görünüm */
.region-page {
    margin-top: 40px;
}
/* Tipografi: Hakkımızda sayfası gibi (başlıklar güçlü, metinler normal) */
.region-page {
    font-size: 15px;
    line-height: 1.8;
}

.region-page p,
.region-page li {
    font-weight: 400;
}

.region-top-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 24px;
    align-items: start;
}

/* İl/ilçe sayfaları: üye kartı solda, ilçeler sağda */
.region-top-grid.is-member-left {
    grid-template-columns: 0.9fr 1.1fr;
}

/* Mobilde tek sütun (üye + hizmet ilçeleri alt alta) */
@media (max-width: 768px) {
    .region-top-grid,
    .region-top-grid.is-member-left {
        grid-template-columns: 1fr !important;
        gap: 14px;
    }

    /* Mobilde içeriklerin sağa kayık görünmesini engelle (padding'i sıkıştır) */
    .region-card,
    .region-section {
        padding: 16px;
    }

    /* SSS iç padding'i mobilde azalt (region sayfalarında) */
    .region-section .faq-q {
        padding-left: 0;
        padding-right: 0;
    }
    .region-section .faq-a {
        padding-left: 0;
        padding-right: 0;
    }
}

.region-card {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    padding: 22px;
}

.region-members-plain {
    background: transparent;
    border: none;
    padding: 0;
    display: grid;
    gap: 12px;
}

.region-card-head h2,
.region-section-head h2 {
    margin: 0 0 8px;
    font-size: 20px;
    font-weight: 700;
    color: var(--secondary-color);
    line-height: 1.25;
}

/* "Hizmet İlçeleri" başlığını biraz daha hafif yap */
.region-districts .region-card-head h2 {
    font-weight: 700 !important;
}

.region-card-head p,
.region-section-head p {
    margin: 0;
    font-size: 15px;
    color: var(--text-color);
    line-height: 1.8;
    font-weight: 400;
}

/* Üye kartı (modern yatay kart - görsele göre) */
.member-card-ny {
    margin-top: 0;
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 16px 18px;
    border-radius: 16px;
    border: 1px solid #e5e7eb;
    background: #ffffff;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    transition: box-shadow 0.2s ease;
}

.member-card-ny:hover {
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.member-card-ny-left {
    flex: 0 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    gap: 8px;
    align-self: flex-start;
    width: 90px;
}

.member-card-ny-avatar {
    width: 90px;
    height: 90px;
    flex: 0 0 90px;
    border-radius: 999px;
    background: #ffffff;
    border: 2px solid #f3f4f6;
    color: var(--primary-color);
    font-weight: 900;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    overflow: hidden;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.member-card-ny-avatar img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

.member-card-ny-left-meta {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
}

.member-card-ny-body {
    min-width: 0;
    flex: 1 1 auto;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.member-card-ny-header {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.member-card-ny-title {
    font-size: 20px;
    font-weight: 700;
    line-height: 1.3;
    color: #111827;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 8px;
}

.member-card-ny-verified {
    display: inline-flex;
    align-items: center;
    color: var(--primary-color);
    font-size: 18px;
    line-height: 1;
}

.member-card-ny-location {
    font-size: 13px;
    font-weight: 600;
    color: var(--secondary-color);
    line-height: 1.4;
    margin-top: 6px;
    text-align: center;
    width: 100%;
}

.member-card-ny-description {
    font-size: 13px;
    color: #6b7280;
    line-height: 1.5;
    margin-top: 8px;
}


.member-card-ny-stars {
    display: flex;
    gap: 3px;
    align-items: center;
    justify-content: center;
    margin-top: 4px;
}

.member-card-ny-stars i {
    font-size: 14px;
    color: #fbbf24;
    line-height: 1;
}

.member-card-ny-subtitle {
    font-size: 13px;
    font-weight: 400;
    color: #6b7280;
    line-height: 1.5;
    margin-top: 4px;
}

.member-card-ny-stars {
    display: inline-flex;
    gap: 2px;
    color: #f59e0b;
    font-size: 14px;
    line-height: 1;
}

.member-card-ny-district {
    font-size: 13.5px;
    font-weight: 800;
    color: var(--secondary-color);
}

.member-card-ny-cta-inline {
    margin-top: 10px;
    display: flex;
}

.member-card-ny-call {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: var(--primary-color);
    color: #fff;
    text-decoration: none;
    border-radius: 8px;
    padding: 5px 8px;
    font-weight: 600;
    width: auto;
    min-width: 0;
    white-space: nowrap;
}

.member-card-ny-call-icon {
    width: 24px;
    height: 24px;
    border-radius: 6px;
    background: rgba(255, 255, 255, 0.18);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
}

.member-card-ny-call-icon i {
    font-size: 14px;
    line-height: 1;
}

.member-card-ny-call-text {
    font-size: 14px;
    letter-spacing: 0.2px;
    font-weight: 600;
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
}

.member-card-ny-call:hover {
    background: var(--primary-color);
}

/* İlçeler (bölgeler) - chip tasarım */
.region-chips {
    margin-top: 14px;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.region-chip {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 12px;
    border-radius: 999px;
    border: 1px solid rgba(var(--primary-color-rgb), 0.18);
    background: #ffffff;
    color: var(--secondary-color);
    text-decoration: none;
    font-weight: 600;
    font-size: 13.5px;
}

.region-chip:hover {
    border-color: rgba(var(--primary-color-rgb), 0.45);
    background: rgba(var(--primary-color-rgb), 0.07);
    color: var(--primary-color);
}

.region-chip.is-active {
    border-color: rgba(var(--primary-color-rgb), 0.65);
    background: rgba(var(--primary-color-rgb), 0.14);
    color: var(--primary-color);
}

.region-chip-text {
    line-height: 1;
}

.region-chip-count {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 22px;
    height: 22px;
    padding: 0 7px;
    border-radius: 999px;
    background: rgba(var(--primary-color-rgb), 0.16);
    color: var(--primary-color);
    font-size: 12px;
    font-weight: 900;
}

.region-section {
    margin-top: 22px;
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    padding: 22px;
}

/* Reviews carousel */
.review-carousel {
    margin-top: 14px;
    position: relative;
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
    align-items: center;
}

.review-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 10px;
}

.review-viewport {
    overflow: hidden;
    cursor: grab;
    touch-action: pan-y;
}

.review-track {
    display: flex;
    gap: 14px;
    will-change: transform;
    transition: transform 220ms ease;
}

.review-carousel.is-dragging .review-viewport {
    cursor: grabbing;
}

.review-carousel.is-dragging .review-track {
    transition: none;
}

.review-carousel.is-dragging {
    user-select: none;
}

.review-carousel .review-card {
    flex: 0 0 calc((100% - 28px) / 3);
}

.review-dot {
    width: 8px;
    height: 8px;
    border-radius: 999px;
    border: 1px solid rgba(var(--primary-color-rgb), 0.28);
    background: rgba(var(--primary-color-rgb), 0.10);
    cursor: pointer;
    padding: 0;
}

.review-dot.is-active {
    background: var(--primary-color);
    border-color: var(--primary-color);
}

.review-card {
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    padding: 14px;
    background: rgba(var(--primary-color-rgb), 0.08);
}

.review-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    margin-bottom: 10px;
}

.review-name {
    font-weight: 600;
    color: var(--secondary-color);
    font-size: 14px;
}

.review-stars {
    color: #f59e0b;
    font-size: 14px;
    display: flex;
    gap: 2px;
}

.review-text {
    margin: 0;
    font-size: 14.5px;
    color: var(--text-color);
    line-height: 1.7;
    overflow-wrap: anywhere;
}

.faq-list {
    margin-top: 12px;
    display: grid;
    gap: 4px;
}

.faq-item {
    border: none;
    border-radius: 0;
    background: transparent;
    overflow: visible;
}

.faq-q {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 12px;
    cursor: pointer;
    font-weight: 600;
    color: var(--secondary-color);
    font-size: 15.5px;
}

.faq-q::-webkit-details-marker {
    display: none;
}

.faq-icon {
    width: 24px;
    height: 24px;
    border-radius: 8px;
    background: rgba(39, 113, 235, 0.12);
    color: var(--primary-color);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    flex: 0 0 auto;
}

.faq-a {
    padding: 0 12px 12px;
}

.faq-a p {
    margin: 0;
    font-size: 14.5px;
    line-height: 1.75;
    color: var(--text-color);
    overflow-wrap: anywhere;
}

/* S.S.S altı 2 sütun medya alanı */
.region-faq-media {
    padding: 0;
    border: none;
    background: transparent;
}

.faq-media-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}

.faq-media-card {
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    overflow: hidden;
    background: #fff;
    aspect-ratio: 16 / 9;
}

.faq-media-image img {
    width: 100%;
    height: 100%;
    max-height: none;
    object-fit: cover;
    display: block;
}

.faq-media-video-embed {
    position: relative;
    width: 100%;
    height: 100%;
    background: #0b1220;
}

.faq-media-video-embed iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
    display: block;
}

.faq-media-placeholder {
    min-height: 240px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 18px;
    color: var(--text-color);
    background: rgba(var(--primary-color-rgb), 0.06);
    font-size: 15px;
}

.faq-item[open] .faq-icon {
    background: rgba(25, 135, 84, 0.12);
    color: #198754;
}

.map-embed {
    margin-top: 14px;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid #e5e7eb;
    background: #f3f4f6;
}

.map-embed iframe {
    width: 100%;
    height: 340px;
    border: 0;
    display: block;
}

.region-article-body h2 {
    font-size: 20px;
    font-weight: 800;
    margin: 0 0 10px;
    color: var(--secondary-color);
}

.region-article-body h3 {
    font-size: 18px;
    font-weight: 800;
    margin: 18px 0 10px;
    color: var(--secondary-color);
}

.region-article-body p {
    font-size: 14.5px;
    line-height: 1.75;
    color: var(--text-color);
    margin: 0 0 12px;
    overflow-wrap: anywhere;
}

.region-article-body ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 10px;
}

.region-article-body ul li {
    font-size: 14.5px;
    color: var(--text-color);
    padding-left: 24px;
    position: relative;
    line-height: 1.7;
    overflow-wrap: anywhere;
}

.region-article-body ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 10px;
    width: 6px;
    height: 6px;
    background: var(--primary-color);
    border-radius: 50%;
}

@media (max-width: 991px) {
    .region-top-grid {
        grid-template-columns: 1fr;
    }
    .review-track {
        gap: 12px;
    }
    .review-carousel .review-card {
        flex-basis: 100%;
    }
    /* Mobilde de yatay kalsın: sadece sıkıştır */
    .member-card-ny {
        gap: 18px;
        padding: 10px 10px;
        align-items: center;
        flex-wrap: nowrap;
    }
    .member-card-ny-avatar {
        width: 70px;
        height: 70px;
        flex-basis: 70px;
        font-size: 24px;
    }
    .member-card-ny-left {
        gap: 6px;
    }
    .member-card-ny-call {
        min-width: 0;
        padding: 5px 8px;
        border-radius: 8px;
        gap: 6px;
    }
    .member-card-ny-call-text {
        font-size: 14px;
        font-weight: 600;
    }
    .member-card-ny-title {
        font-size: 16px;
    }
    .member-card-ny-subtitle {
        font-size: 12.5px;
    }
    .map-embed iframe {
        height: 280px;
    }

    .faq-media-grid {
        grid-template-columns: 1fr;
    }
}

.city-sidebar-btn-whatsapp:hover {
    background: #20ba5a;
    transform: translateY(-2px);
}

.city-sidebar-btn i {
    font-size: 16px;
}

.city-sidebar-info {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.city-sidebar-info-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: var(--text-color);
}

.city-sidebar-info-item i {
    color: var(--primary-color);
    font-size: 16px;
    flex-shrink: 0;
}

@media (max-width: 1024px) {
    .city-page-content {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .city-page-sidebar {
        order: -1;
    }

    .city-services-list {
        grid-template-columns: 1fr;
    }

    .districts-grid {
        grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    }
}

@media (max-width: 768px) {
    .city-page-card {
        padding: 20px 16px;
    }

    .city-page-intro h2 {
        font-size: 22px;
    }

    .city-page-services h3,
    .city-page-districts h3 {
        font-size: 18px;
    }

    .districts-grid {
        grid-template-columns: 1fr;
    }
}

/* Privacy Policy Content */
.privacy-policy-content {
    max-width: 100%;
}

.privacy-header {
    margin-bottom: 40px;
}

.privacy-meta {
    font-size: 14px;
    color: var(--text-color);
    line-height: 1.8;
}

.privacy-section {
    margin-bottom: 40px;
}

.privacy-section:last-child {
    margin-bottom: 0;
}

.privacy-section h2 {
    font-size: 20px !important;
    font-weight: 700;
    color: var(--secondary-color);
    margin-top: 0;
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 1px solid #e5e7eb;
    line-height: 1.4;
}

.privacy-section h3 {
    font-size: 18px !important;
    font-weight: 600;
    color: var(--secondary-color);
    margin-top: 25px;
    margin-bottom: 15px;
    line-height: 1.4;
}

.privacy-section p {
    font-size: 15px !important;
    color: var(--text-color);
    line-height: 1.8;
    margin-bottom: 20px;
}

.privacy-section ul {
    list-style: none !important;
    padding: 0 !important;
    margin: 20px 0 !important;
}

.privacy-section ul li {
    font-size: 15px !important;
    color: var(--text-color);
    line-height: 1.7;
    margin-bottom: 12px;
    padding-left: 0 !important;
    position: relative;
    display: flex !important;
    align-items: flex-start;
    gap: 10px;
}

.privacy-section ul li::before {
    content: '✓';
    width: 20px;
    height: 20px;
    min-width: 20px;
    background: var(--primary-color);
    color: #fff;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 700;
    flex-shrink: 0;
    margin-top: 2px;
}

.privacy-section ul li:last-child {
    margin-bottom: 0;
}

.privacy-section a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

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

.page-content h2 {
    font-size: 24px;
    margin-top: 40px;
    margin-bottom: 20px;
    color: var(--secondary-color);
}

.page-content h3 {
    font-size: 20px;
    margin-top: 30px;
    margin-bottom: 15px;
    color: var(--secondary-color);
}

.page-content h4 {
    font-size: 18px;
    margin-top: 25px;
    margin-bottom: 12px;
    color: var(--secondary-color);
}

.page-content p {
    margin-bottom: 15px;
    color: var(--text-color);
    font-size: 16px;
}

.page-content ul,
.page-content ol {
    margin: 20px 0;
    padding-left: 30px;
}

.page-content li {
    margin-bottom: 10px;
    color: var(--text-color);
    font-size: 16px;
}

/* Privacy Policy Content için özel stiller - page-content stillerini override eder */
.privacy-policy-content ul,
.privacy-policy-content ol {
    padding-left: 0 !important;
}

.privacy-policy-content li {
    padding-left: 0 !important;
}

@media (max-width: 768px) {
    .faq-page-section,
    .page-content-section {
        padding: 40px 0 60px;
    }

    .page-with-sidebar {
        flex-direction: column;
        gap: 30px;
    }

    .page-sidebar {
        width: 100%;
        order: 2;
        position: static;
        top: auto;
    }

    .page-content {
        width: 100%;
        order: 1;
    }

    .sidebar-nav {
        position: static;
    }

    .sidebar-menu {
        display: block;
        padding: 15px;
    }

    .sidebar-item {
        margin-bottom: 8px;
        width: 100%;
    }

    .sidebar-item:last-child {
        margin-bottom: 0;
    }

    .sidebar-link {
        text-align: left;
        padding: 12px 16px;
        font-size: 15px;
    }

    .page-content {
        width: 100%;
        padding: 0 8px;
    }

    .page-content h2 {
        font-size: 20px;
        margin-top: 30px;
    }

    .page-content h3 {
        font-size: 18px;
        margin-top: 25px;
    }

    .page-content h4 {
        font-size: 16px;
        margin-top: 20px;
    }

    .privacy-section {
        margin-bottom: 30px;
    }

    .privacy-section h2 {
        font-size: 20px !important;
        margin-bottom: 15px;
        padding-bottom: 10px;
    }

    .privacy-section p {
        font-size: 15px !important;
        margin-bottom: 15px;
    }

    .privacy-section ul li {
        font-size: 15px;
        padding-left: 0;
        margin-bottom: 10px;
        gap: 8px;
    }

    .privacy-section ul li::before {
        width: 18px;
        height: 18px;
        min-width: 18px;
        font-size: 11px;
        margin-top: 1px;
    }
}

.faq-page-header {
    text-align: center;
    margin-bottom: 50px;
}

.faq-page-title {
    font-size: 32px;
    font-weight: 700;
    color: var(--secondary-color);
    margin: 0 0 15px;
    line-height: 1.3;
}

.faq-page-description {
    font-size: 16px;
    color: var(--text-color);
    line-height: 1.6;
    max-width: 700px;
    margin: 0 auto;
}

.faq-page-content {
    max-width: 900px;
    margin: 0 auto;
}

.faq-page-list {
    position: relative;
    padding-left: 0;
}

.faq-page-list::before {
    display: none;
}

.faq-page-item {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    margin-bottom: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-page-item:hover {
    border-color: var(--primary-color);
    box-shadow: 0 2px 8px rgba(39, 113, 235, 0.1);
}

.faq-page-item.active {
    border-color: var(--primary-color);
    box-shadow: 0 4px 12px rgba(39, 113, 235, 0.15);
}

.faq-page-question {
    width: 100%;
    padding: 20px 24px;
    background: none;
    border: none;
    text-align: left;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 16px;
    font-family: inherit;
    transition: background 0.3s ease;
}

.faq-page-question:hover {
    background: #f9fafb;
}

.faq-page-item.active .faq-page-question {
    background: #f0f4ff;
}

.faq-page-icon {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary-color);
    color: #fff;
    border-radius: 4px;
    font-size: 18px;
    font-weight: 700;
    line-height: 1;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.faq-page-item.active .faq-page-icon {
    background: var(--secondary-color);
    transform: rotate(45deg);
}

.faq-page-question-text {
    font-size: 16px;
    font-weight: 600;
    color: var(--secondary-color);
    line-height: 1.5;
    flex: 1;
}

.faq-page-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease, opacity 0.3s ease;
    opacity: 0;
    padding: 0 24px;
}

.faq-page-item.active .faq-page-answer {
    max-height: 1000px;
    padding: 0 24px 24px 64px;
    opacity: 1;
}

.faq-page-answer p {
    font-size: 15px;
    color: var(--text-color);
    line-height: 1.7;
    margin: 0;
}

.faq-empty {
    text-align: center;
    padding: 60px 20px;
    color: var(--text-color);
    font-size: 16px;
}

@media (max-width: 768px) {
    .page-hero-section {
        padding: 0;
        margin-top: -10px;
        min-height: 180px;
    }

    .page-hero-section .container {
        padding: 40px 8px;
    }

    .page-hero-content {
        padding: 0;
    }

    .page-hero-breadcrumb {
        margin-bottom: 15px;
        gap: 10px;
    }

    .page-hero-title {
        font-size: 24px;
        margin-bottom: 15px;
    }

    .page-hero-description {
        font-size: 14px;
    }

    .page-hero-breadcrumb .breadcrumb-current {
        font-size: 13px;
    }

    .page-hero-breadcrumb .breadcrumb-home {
        width: 28px;
        height: 28px;
    }

    .page-hero-breadcrumb .breadcrumb-home svg {
        width: 16px;
        height: 16px;
    }

    .page-hero-breadcrumb .breadcrumb-separator {
        width: 5px;
        height: 5px;
    }

    .page-hero-breadcrumb .breadcrumb-current {
        font-size: 14px;
    }

    .breadcrumb-section {
        padding: 15px 0;
        margin-top: 0; /* Mobilde header yüksekliği farklı */
    }

    .breadcrumb {
        gap: 10px;
    }

    .breadcrumb-home {
        width: 28px;
        height: 28px;
    }

    .breadcrumb-home svg {
        width: 16px;
        height: 16px;
    }

    .breadcrumb-separator {
        width: 5px;
        height: 5px;
    }

    .breadcrumb-current {
        font-size: 13px;
    }

    .faq-page-section {
        padding: 40px 0 60px;
    }

    .faq-page-header {
        margin-bottom: 40px;
    }

    .faq-page-title {
        font-size: 24px;
        margin-bottom: 12px;
    }

    .faq-page-description {
        font-size: 15px;
    }

    .faq-page-question {
        padding: 16px 20px;
        gap: 12px;
    }

    .faq-page-icon {
        width: 22px;
        height: 22px;
        font-size: 16px;
    }

    .faq-page-question-text {
        font-size: 15px;
    }

    .faq-page-item.active .faq-page-answer {
        padding: 0 20px 20px 54px;
    }

    .faq-page-answer p {
        font-size: 14px;
    }
}

/* İletişim Sayfası Stilleri */
.contact-info-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 24px;
    margin-bottom: 60px;
}

.contact-info-card {
    background: #fff;
    border-radius: 12px;
    padding: 24px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.contact-info-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
}

.contact-card-icon {
    width: 48px;
    height: 48px;
    min-width: 48px;
    background: var(--primary-color);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    flex-shrink: 0;
}

.contact-card-icon.whatsapp-icon {
    background: #25D366;
}

.contact-card-icon svg,
.contact-card-icon i {
    width: 24px;
    height: 24px;
    font-size: 24px;
    line-height: 1;
}

.contact-card-content {
    flex: 1;
}

.contact-card-title {
    font-size: 16px;
    font-weight: 600;
    color: var(--secondary-color);
    margin: 0 0 8px 0;
}

.contact-card-text {
    font-size: 15px;
    color: var(--text-color);
    margin: 0;
    line-height: 1.6;
}

.contact-card-text a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

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

.contact-form-map-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-top: 40px;
}

.contact-section-title {
    font-size: 20px !important;
    font-weight: 700;
    color: var(--secondary-color);
    margin-top: 0;
    margin-bottom: 24px;
    padding-bottom: 12px;
    border-bottom: 1px solid #e5e7eb;
    line-height: 1.4;
}

.contact-form-section {
    background: #fff;
    border-radius: 12px;
    padding: 32px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-form .form-group {
    position: relative;
    display: flex;
    align-items: center;
}

.contact-form .form-icon {
    position: absolute;
    left: 16px;
    color: var(--text-color);
    z-index: 1;
    pointer-events: none;
}

.contact-form .form-icon svg {
    width: 20px;
    height: 20px;
}
.contact-form .form-icon i {
    font-size: 20px;
    line-height: 1;
}
.contact-form .form-icon i {
    font-size: 20px;
    line-height: 1;
}

.contact-form .form-group input,
.contact-form .form-group textarea {
    width: 100%;
    padding: 14px 16px 14px 48px;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    font-size: 15px;
    font-family: 'Inter', sans-serif;
    color: var(--secondary-color);
    background: #fff;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.contact-form .form-group input:focus,
.contact-form .form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(39, 113, 235, 0.1);
}

.contact-form .form-group input::placeholder,
.contact-form .form-group textarea::placeholder {
    color: #9ca3af;
}

.contact-form .form-group-textarea .form-icon {
    top: 16px;
    align-self: flex-start;
}

.contact-form .form-group-textarea textarea {
    resize: vertical;
    min-height: 120px;
}

.contact-form-submit {
    background: var(--primary-color);
    color: #fff;
    border: none;
    border-radius: 8px;
    padding: 14px 24px;
    font-size: 16px;
    font-weight: 600;
    font-family: 'Inter', sans-serif;
    cursor: pointer;
    transition: background 0.3s ease, transform 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 8px;
}

.contact-form-submit:hover {
    background: #1e5fd4;
    transform: translateY(-2px);
}

.contact-form-submit:active {
    transform: translateY(0);
}

.contact-form-submit svg {
    width: 20px;
    height: 20px;
}

.contact-map-section {
    background: #fff;
    border-radius: 12px;
    padding: 32px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.contact-map-wrapper {
    border-radius: 12px;
    overflow: hidden;
}

.contact-map-wrapper iframe {
    width: 100%;
    height: 450px;
    border: 0;
    border-radius: 12px;
}

/* İletişim Sayfası Mobil Responsive */
@media (max-width: 768px) {
    .contact-info-cards {
        grid-template-columns: 1fr;
        gap: 16px;
        margin-bottom: 40px;
    }

    .contact-info-card {
        padding: 20px;
    }

    .contact-card-icon {
        width: 40px;
        height: 40px;
        min-width: 40px;
    }

    .contact-card-icon svg {
        width: 20px;
        height: 20px;
    }

    .contact-card-title {
        font-size: 15px;
    }

    .contact-card-text {
        font-size: 14px;
    }

    .contact-form-map-wrapper {
        grid-template-columns: 1fr;
        gap: 30px;
        margin-top: 30px;
    }

    .contact-section-title {
        font-size: 18px !important;
        margin-bottom: 20px;
    }

    .contact-form-section,
    .contact-map-section {
        padding: 24px;
    }

    .contact-form {
        gap: 16px;
    }

    .contact-form .form-group input,
    .contact-form .form-group textarea {
        padding: 12px 14px 12px 44px;
        font-size: 14px;
    }

    .contact-form .form-icon {
        left: 14px;
    }

    .contact-form .form-icon svg {
        width: 18px;
        height: 18px;
    }

    .contact-form-submit {
        padding: 12px 20px;
        font-size: 15px;
    }

    .contact-map-wrapper iframe {
        height: 350px;
    }
}

/* Makale tipografi sabitleme */
.cekici-makale h2 { font-size: 20px !important; }
.cekici-makale h3 { font-size: 20px !important; }
.cekici-makale p { font-size: 15px !important; }

/* Çekici Fiyat Hesaplama (Tow Calculator) */
.tow-calc {
    margin-top: 12px;
}

/* Çekici fiyat hesaplama sayfası: SSS hizası (iç içe container/padding kaynaklı sağa kaymayı engelle) */
.calc-faq-section .faq-list {
    padding-left: 0 !important;
}
.calc-faq-section .faq-list::before {
    display: none !important;
}

/* Son Yapılan Hesaplamalar Tablosu */
.calc-history {
    margin-top: 26px;
}

.calc-history-title {
    font-size: 20px;
    font-weight: 800;
    color: var(--secondary-color);
    margin: 0 0 14px;
}

.calc-history-card {
    background: #fff;
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: 14px;
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.06);
    overflow: hidden;
}

.calc-history-table-wrap {
    overflow-x: auto;
}

.calc-history-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 860px;
}

.calc-history-table thead th {
    text-align: left;
    font-size: 14px;
    font-weight: 800;
    color: #334155;
    background: #f3f6fb;
    padding: 16px 18px;
    border-bottom: 1px solid rgba(0,0,0,0.06);
    white-space: nowrap;
}

.calc-history-table tbody td {
    padding: 16px 18px;
    font-size: 14px;
    color: #0f172a;
    border-bottom: 1px solid rgba(0,0,0,0.04);
    vertical-align: middle;
    white-space: nowrap;
}

.calc-history-table tbody tr:nth-child(even) td {
    background: #f8fafc;
}

.calc-history-empty {
    text-align: center;
    color: #64748b;
    font-weight: 600;
    white-space: normal !important;
}

.calc-history-link {
    color: #1d4ed8;
    font-weight: 700;
    text-decoration: none;
}
.calc-history-link:hover {
    text-decoration: underline;
}

.calc-article {
    margin-top: 22px;
}

.tow-calc-bar {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr auto;
    gap: 14px;
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: 14px;
    padding: 14px;
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.08);
    position: sticky;
    top: 84px;
    z-index: 5;
    backdrop-filter: blur(8px);
}

.tow-calc-label {
    font-size: 12px;
    font-weight: 700;
    color: #64748b;
    margin-bottom: 8px;
}

.tow-calc-row {
    display: grid;
    grid-template-columns: 42px 1fr 1fr;
    gap: 10px;
    align-items: center;
}

.tow-calc-vehicle .tow-calc-row {
    grid-template-columns: 1fr;
}

.tow-badge {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    display: grid;
    place-items: center;
    font-weight: 800;
    color: #fff;
}

.tow-badge-a { background: #16a34a; }
.tow-badge-b { background: #dc2626; }

.tow-select {
    height: 42px;
    border-radius: 10px;
    border: 1px solid rgba(15, 23, 42, 0.12);
    background: #fff;
    padding: 0 12px;
    font-size: 14px;
    color: var(--secondary-color);
}

.tow-select:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.tow-calc-actions {
    display: flex;
    align-items: flex-end;
}

.tow-calc-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    height: 42px;
    padding: 0 16px;
    border-radius: 10px;
    background: var(--primary-color);
    color: #fff;
    border: 0;
    font-weight: 800;
}

.tow-calc-btn.is-loading {
    opacity: 0.75;
    cursor: progress;
}

.tow-calc-body {
    display: grid;
    grid-template-columns: 1.8fr 1fr;
    gap: 18px;
    margin-top: 16px;
    align-items: start;
}

.tow-calc-map {
    width: 100%;
    height: 540px;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.06);
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.08);
    background: #e5e7eb;
}

.tow-calc-panel {
    position: sticky;
    top: 164px;
}

.tow-panel-card {
    background: #fff;
    border-radius: 16px;
    padding: 18px;
    border: 1px solid rgba(0, 0, 0, 0.06);
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.06);
}

.tow-panel-title {
    font-weight: 900;
    font-size: 16px;
    color: var(--secondary-color);
    margin-bottom: 8px;
}

.tow-panel-meta {
    font-size: 14px;
    color: #475569;
}

.tow-panel-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
    margin-top: 12px;
}

.tow-price-card {
    background: #fff;
    border-radius: 16px;
    padding: 16px 18px;
    border: 1px solid rgba(0, 0, 0, 0.06);
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.06);
}

.tow-price-card-avg {
    border-color: rgba(22, 163, 74, 0.25);
    background: linear-gradient(180deg, rgba(22, 163, 74, 0.08), rgba(255, 255, 255, 1));
}

.tow-price-label {
    font-size: 12px;
    font-weight: 800;
    color: #64748b;
    margin-bottom: 6px;
}

.tow-price-value {
    font-size: 28px;
    font-weight: 900;
    letter-spacing: -0.4px;
    color: var(--secondary-color);
    margin-bottom: 4px;
}

.tow-price-sub {
    font-size: 13px;
    color: #64748b;
}

.tow-panel-footnote {
    margin-top: 12px;
    font-size: 12px;
    color: #64748b;
    line-height: 1.5;
}

.tow-marker {
    width: 26px;
    height: 26px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0;
    line-height: 1;
    font-weight: 900;
    color: #fff;
    box-shadow: 0 8px 16px rgba(0,0,0,0.15);
    border: 2px solid rgba(255,255,255,0.9);
}
.tow-marker-a { background: #16a34a; }
.tow-marker-b { background: #dc2626; }

@media (max-width: 1024px) {
    .tow-calc-bar {
        grid-template-columns: 1fr 1fr;
        position: static;
    }
    .tow-calc-actions {
        grid-column: 1 / -1;
        justify-content: flex-end;
    }
    .tow-calc-body {
        grid-template-columns: 1fr;
        display: flex;
        flex-direction: column;
    }
    .tow-calc-panel {
        position: static;
        top: auto;
        order: 0;
    }
    .tow-calc-map {
        order: 1;
    }
}

@media (max-width: 768px) {
    .tow-calc-bar {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .tow-calc-group,
    .tow-calc-actions {
        min-width: 0;
    }

    .tow-select {
        min-width: 0;
        width: 100%;
    }

    /* A/B: İl ve İlçe mobilde alt alta */
    .tow-calc-row {
        grid-template-columns: 38px 1fr;
        grid-template-rows: auto auto;
        column-gap: 10px;
        row-gap: 8px;
    }

    .tow-calc-row .tow-badge {
        grid-column: 1;
        grid-row: 1 / span 2;
        align-self: stretch;
    }

    .tow-calc-row select {
        grid-column: 2;
        width: 100%;
    }

    .tow-calc-row select:first-of-type {
        grid-row: 1;
    }

    .tow-calc-row select:last-of-type {
        grid-row: 2;
    }

    /* Araç tipi tek satır */
    .tow-calc-vehicle .tow-calc-row {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
        row-gap: 0;
    }

    .tow-calc-vehicle .tow-calc-row select {
        grid-column: 1;
        grid-row: 1;
    }

    /* Buton full width */
    .tow-calc-actions {
        justify-content: stretch;
    }

    .tow-calc-btn {
        width: 100%;
        justify-content: center;
    }

    .tow-calc-map {
        height: 420px;
    }
}


/* Inter Font - Yerel Dosyalar */
@font-face { font-family: "Inter"; font-style: normal; font-weight: 100; font-display: swap; src: url("../fonts/Inter-Thin.woff2") format("woff2"); }
@font-face { font-family: "Inter"; font-style: italic; font-weight: 100; font-display: swap; src: url("../fonts/Inter-ThinItalic.woff2") format("woff2"); }
@font-face { font-family: "Inter"; font-style: normal; font-weight: 200; font-display: swap; src: url("../fonts/Inter-ExtraLight.woff2") format("woff2"); }
@font-face { font-family: "Inter"; font-style: italic; font-weight: 200; font-display: swap; src: url("../fonts/Inter-ExtraLightItalic.woff2") format("woff2"); }
@font-face { font-family: "Inter"; font-style: normal; font-weight: 300; font-display: swap; src: url("../fonts/Inter-Light.woff2") format("woff2"); }
@font-face { font-family: "Inter"; font-style: italic; font-weight: 300; font-display: swap; src: url("../fonts/Inter-LightItalic.woff2") format("woff2"); }
@font-face { font-family: "Inter"; font-style: normal; font-weight: 400; font-display: swap; src: url("../fonts/Inter-Regular.woff2") format("woff2"); }
@font-face { font-family: "Inter"; font-style: italic; font-weight: 400; font-display: swap; src: url("../fonts/Inter-Italic.woff2") format("woff2"); }
@font-face { font-family: "Inter"; font-style: normal; font-weight: 500; font-display: swap; src: url("../fonts/Inter-Medium.woff2") format("woff2"); }
@font-face { font-family: "Inter"; font-style: italic; font-weight: 500; font-display: swap; src: url("../fonts/Inter-MediumItalic.woff2") format("woff2"); }
@font-face { font-family: "Inter"; font-style: normal; font-weight: 600; font-display: swap; src: url("../fonts/Inter-SemiBold.woff2") format("woff2"); }
@font-face { font-family: "Inter"; font-style: italic; font-weight: 600; font-display: swap; src: url("../fonts/Inter-SemiBoldItalic.woff2") format("woff2"); }
@font-face { font-family: "Inter"; font-style: normal; font-weight: 700; font-display: swap; src: url("../fonts/Inter-Bold.woff2") format("woff2"); }
@font-face { font-family: "Inter"; font-style: italic; font-weight: 700; font-display: swap; src: url("../fonts/Inter-BoldItalic.woff2") format("woff2"); }
@font-face { font-family: "Inter"; font-style: normal; font-weight: 800; font-display: swap; src: url("../fonts/Inter-ExtraBold.woff2") format("woff2"); }
@font-face { font-family: "Inter"; font-style: italic; font-weight: 800; font-display: swap; src: url("../fonts/Inter-ExtraBoldItalic.woff2") format("woff2"); }
@font-face { font-family: "Inter"; font-style: normal; font-weight: 900; font-display: swap; src: url("../fonts/Inter-Black.woff2") format("woff2"); }
@font-face { font-family: "Inter"; font-style: italic; font-weight: 900; font-display: swap; src: url("../fonts/Inter-BlackItalic.woff2") format("woff2"); }

/* Reset ve Temel Ayarlar */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Scrollbar Stilleri */
::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #1e5fd4;
}

/* Firefox */
* {
    scrollbar-width: thin;
    scrollbar-color: var(--primary-color) #f1f1f1;
}

html {
    overflow-x: hidden;
    height: 100%;
}

body {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: #111827;
    margin: 0;
    padding: 0;
    padding-top: 80px;
    overflow-x: hidden;
    min-height: 100%;
}

/* Renkler */
:root {
    --primary-color: #2771eb;
    --secondary-color: #111827;
    --text-color: #6d7792;
}

/* Başlık Stilleri */
h1 {
    font-size: 30px;
    color: var(--secondary-color);
    font-weight: 700;
}

h2 {
    font-size: 25px;
    color: var(--secondary-color);
    font-weight: 700;
}

h3 {
    font-size: 24px;
    color: var(--secondary-color);
    font-weight: 600;
}

h4 {
    font-size: 23px;
    color: var(--secondary-color);
    font-weight: 600;
}

h5 {
    font-size: 22px;
    color: var(--secondary-color);
    font-weight: 600;
}

h6 {
    font-size: 21px;
    color: var(--secondary-color);
    font-weight: 600;
}

/* Paragraf Stili */
p {
    color: var(--text-color);
    font-size: 16px;
    line-height: 1.6;
}

/* Container */
.container {
    max-width: 1475px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
    overflow: visible;
}

@media (max-width: 768px) {
    .container {
        padding: 0 8px;
    }
}

/* Header Styles */
.site-header {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    z-index: 1000 !important;
    background: #fff;
    border-top: 5px solid var(--primary-color);
    width: 100% !important;
    overflow: visible !important;
}

/* Main Navigation */

/* Topbar */
.topbar {
    background: var(--primary-color);
    padding: 5px 0 !important;
    transition: all 0.3s ease-in-out;
    max-height: 60px;
    overflow: hidden;
    display: block;
}

.topbar.hidden {
    max-height: 0 !important;
    padding: 0 !important;
    margin: 0 !important;
    opacity: 0;
    visibility: hidden;
}

.topbar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.topbar-left {
    display: flex;
    align-items: center;
    gap: 20px;
}

.topbar-link {
    display: flex;
    align-items: center;
    gap: 6px;
    color: #fff;
    text-decoration: none;
    font-size: 14px;
    font-weight: 400;
    transition: opacity 0.3s;
}

.topbar-link:hover {
    opacity: 0.8;
}

.topbar-link svg,
.topbar-link .topbar-icon {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
}

.topbar-right {
    display: flex;
    align-items: center;
    gap: 15px;
}

.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    color: #fff;
    transition: opacity 0.3s;
}

.social-icon:hover {
    opacity: 0.8;
}

.social-icon svg {
    width: 16px;
    height: 16px;
}

/* Main Navigation */
.main-nav {
    position: relative;
    background: #fff;
    border-bottom: 1px solid #e5e7eb;
    padding: 15px 0;
    z-index: 999;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    width: 100%;
    margin: 0;
    display: block;
}

@media (max-width: 768px) {
    .main-nav {
        padding: 8px 0;
    }
}

/* Mobile Navigation - Desktop'ta Gizli */
.mobile-nav-content {
    display: none;
}

.mobile-menu-overlay {
    display: none;
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
    overflow: visible;
}

.nav-logo {
    flex-shrink: 0;
}

.nav-logo a {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.logo-img {
    height: 50px;
    width: auto;
}

.nav-menu-wrapper {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.nav-button {
    flex-shrink: 0;
}

.nav-menu {
    display: flex;
}

.nav-list {
    display: flex;
    align-items: center;
    gap: 30px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-link {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--secondary-color);
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    transition: color 0.3s;
    position: relative;
}

.nav-link:hover {
    color: var(--primary-color);
}

.nav-link .menu-icon {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

/* Dropdown Menu */
.nav-item-has-children {
    position: relative;
}

.nav-item-has-children > .nav-link {
    position: relative;
}

.nav-item-has-children > .nav-link::after {
    content: '';
    display: inline-block;
    width: 0;
    height: 0;
    border-left: 4px solid transparent;
    border-right: 4px solid transparent;
    border-top: 5px solid var(--secondary-color);
    margin-left: 4px;
    transition: transform 0.3s;
}

.nav-item-has-children:hover > .nav-link::after {
    transform: rotate(180deg);
}

.nav-dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    background: #fff;
    min-width: 220px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    border-radius: 6px;
    padding: 8px 0;
    margin-top: 10px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s;
    list-style: none;
    z-index: 100;
}

.nav-item-has-children:hover .nav-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.nav-dropdown-link {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 20px;
    color: var(--secondary-color);
    text-decoration: none;
    font-size: 14px;
    font-weight: 400;
    transition: background-color 0.3s, color 0.3s;
}

.nav-dropdown-link:hover {
    background-color: #f3f4f6;
    color: var(--primary-color);
}

.nav-dropdown-link svg {
    width: 14px;
    height: 14px;
    flex-shrink: 0;
}

/* Request Button */
.btn-request {
    background: var(--primary-color);
    color: #fff;
    padding: 10px 20px;
    border-radius: 6px;
    text-decoration: none;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: background-color 0.3s;
    white-space: nowrap;
}

.btn-request:hover {
    background: #1e5fd4;
}

/* Mobil Responsive */
@media (max-width: 768px) {
    h1 {
        font-size: 25px;
    }
    
    h2 {
        font-size: 21px;
    }
    
    h3 {
        font-size: 20px;
    }
    
    h4 {
        font-size: 19px;
    }
    
    h5 {
        font-size: 18px;
    }
    
    h6 {
        font-size: 17px;
    }

    /* Topbar - Mobilde Gizli */
    .topbar {
        display: none;
    }

    /* Desktop Navigation - Mobilde Gizli */
    .desktop-nav {
        display: none !important;
    }

    /* Mobile Navigation */
    .mobile-nav-content {
        display: flex !important;
        justify-content: space-between;
        align-items: center;
        width: 100%;
    }

    .mobile-menu-overlay {
        display: block !important;
    }

    .mobile-nav-toggle {
        background: none;
        border: none;
        padding: 8px;
        cursor: pointer;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .mobile-nav-icon {
        width: 24px;
        height: 24px;
    }

    .mobile-logo {
        flex: 1;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .mobile-logo-img {
        height: 50px;
        width: auto;
    }

    .mobile-map-icon {
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 8px;
        background: none;
        border: none;
        cursor: pointer;
        -webkit-tap-highlight-color: transparent;
    }

    .map-icon-img {
        width: 24px;
        height: 24px;
    }

    /* Mobil Menü Overlay */
    .mobile-menu-overlay {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background: rgba(0, 0, 0, 0.5);
        z-index: 9998;
        opacity: 0;
        visibility: hidden;
        transition: opacity 0.3s, visibility 0.3s;
    }

    .mobile-menu-overlay.active {
        opacity: 1;
        visibility: visible;
    }

    .mobile-menu-content {
        position: fixed;
        top: 0;
        left: 0;
        width: 80%;
        height: 100vh;
        background: #fff;
        z-index: 9999;
        padding: 16px;
        transform: translateX(-100%);
        transition: transform 0.3s;
        box-shadow: 2px 0 10px rgba(0, 0, 0, 0.1);
        display: flex;
        flex-direction: column;
        overflow: hidden;
    }

    .mobile-menu-header {
        flex-shrink: 0;
    }

    .mobile-menu-sections {
        flex: 1;
        min-height: 0;
    }

    .mobile-menu-button-wrapper {
        flex-shrink: 0;
    }

    .mobile-menu-overlay.active .mobile-menu-content {
        transform: translateX(0);
    }

    .mobile-menu-header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding-bottom: 16px;
        border-bottom: 1px solid #e5e7eb;
        margin-bottom: 20px;
    }

    .mobile-menu-logo-img {
        height: 50px;
        width: auto;
    }

    .mobile-menu-logo a {
        display: flex;
        align-items: center;
    }

    .mobile-menu-close {
        background: #f3f4f6;
        border: none;
        padding: 8px;
        cursor: pointer;
        color: var(--primary-color);
        border-radius: 4px;
        display: flex;
        align-items: center;
        justify-content: center;
        width: 36px;
        height: 36px;
        flex-shrink: 0;
    }

    .mobile-menu-sections {
        display: flex;
        flex-direction: column;
        gap: 30px;
        flex: 1;
        overflow-y: auto;
        overflow-x: hidden;
        -webkit-overflow-scrolling: touch;
        min-height: 0;
    }

    /* Scrollbar gizle */
    .mobile-menu-sections::-webkit-scrollbar {
        width: 0;
        background: transparent;
    }

    .mobile-menu-sections {
        scrollbar-width: none; /* Firefox */
        -ms-overflow-style: none; /* IE and Edge */
    }

    .mobile-menu-button-wrapper {
        margin-top: 20px;
        padding-top: 20px;
        border-top: 1px solid #e5e7eb;
        flex-shrink: 0;
    }

    .mobile-btn-request {
        display: block;
        background: var(--primary-color);
        color: #fff;
        padding: 10px 20px;
        border-radius: 6px;
        text-decoration: none;
        font-size: 12px;
        font-weight: 600;
        text-transform: uppercase;
        letter-spacing: 0.5px;
        text-align: center;
        width: 100%;
        transition: background-color 0.3s;
    }

    .mobile-btn-request:hover {
        background: #1e5fd4;
    }

    .mobile-menu-section {
        margin-bottom: 0;
    }

    .mobile-menu-section-title {
        font-size: 16px;
        font-weight: 700;
        color: var(--secondary-color);
        margin-bottom: 15px;
    }

    .mobile-menu-section .mobile-nav-menu {
        margin-top: 0;
    }

    .mobile-menu-cards {
        display: flex;
        flex-direction: column;
        gap: 12px;
    }

    .mobile-menu-card {
        display: flex;
        align-items: flex-start;
        gap: 15px;
        padding: 15px;
        border: 1px solid #e5e7eb;
        border-radius: 8px;
        text-decoration: none;
        transition: all 0.3s;
    }

    .mobile-menu-card:hover {
        border-color: var(--primary-color);
        background-color: #f9fafb;
    }

    .mobile-menu-card-icon {
        flex-shrink: 0;
        width: 40px;
        height: 40px;
        display: flex;
        align-items: center;
        justify-content: center;
        color: var(--secondary-color);
        background: #f9fafb;
        border-radius: 6px;
    }

    .mobile-menu-card-icon svg {
        width: 20px;
        height: 20px;
    }

    .mobile-menu-card-content {
        flex: 1;
    }

    .mobile-menu-card-title {
        font-size: 15px;
        font-weight: 600;
        color: var(--secondary-color);
        margin-bottom: 5px;
    }

    .mobile-menu-card-desc {
        font-size: 13px;
        color: var(--text-color);
        line-height: 1.5;
    }

    /* Mobil Kullanıcı Menüsü (Dropdown) */
    .mobile-user-menu {
        position: relative;
        display: block;
    }

    .mobile-user-menu > summary {
        list-style: none;
        cursor: pointer;
    }

    .mobile-user-menu > summary::-webkit-details-marker {
        display: none;
    }

    .mobile-user-menu > summary {
        display: flex;
        align-items: flex-start;
        gap: 15px;
        padding: 15px;
        border: 1px solid #e5e7eb;
        border-radius: 8px;
        transition: all 0.3s;
    }

    .mobile-user-menu > summary:hover {
        border-color: var(--primary-color);
        background-color: #f9fafb;
    }

    .mobile-menu-card-chevron {
        margin-left: auto;
        font-size: 18px;
        color: var(--text-color);
        transition: transform 0.3s;
        flex-shrink: 0;
        align-self: center;
    }

    .mobile-user-menu[open] .mobile-menu-card-chevron {
        transform: rotate(180deg);
    }

    .mobile-user-dropdown {
        margin-top: 8px;
        background: #fff;
        border: 1px solid #e5e7eb;
        border-radius: 8px;
        overflow: hidden;
        display: none;
    }

    .mobile-user-menu[open] .mobile-user-dropdown {
        display: block;
    }

    .mobile-user-dropdown-item {
        display: flex;
        align-items: center;
        gap: 12px;
        padding: 12px 15px;
        text-decoration: none;
        color: var(--secondary-color);
        font-size: 14px;
        font-weight: 500;
        border-bottom: 1px solid #f3f4f6;
        transition: all 0.2s;
    }

    .mobile-user-dropdown-item:last-child {
        border-bottom: none;
    }

    .mobile-user-dropdown-item:hover {
        background: rgba(39, 113, 235, 0.06);
        color: var(--primary-color);
    }

    .mobile-user-dropdown-item i {
        font-size: 18px;
        width: 20px;
        text-align: center;
        flex-shrink: 0;
    }

    .mobile-user-dropdown-item.is-danger {
        color: #dc2626;
    }

    .mobile-user-dropdown-item.is-danger:hover {
        background: rgba(220, 38, 38, 0.08);
        color: #dc2626;
    }

    .mobile-nav-menu {
        margin-top: 0;
    }

    .mobile-nav-list {
        list-style: none;
        padding: 0;
        margin: 0;
    }

    .mobile-nav-link {
        display: flex;
        align-items: center;
        gap: 10px;
        padding: 12px 0;
        color: var(--secondary-color);
        text-decoration: none;
        font-size: 15px;
        font-weight: 500;
        border-bottom: 1px solid #e5e7eb;
    }

    .mobile-nav-link .mobile-menu-icon {
        width: 22px;
        height: 22px;
        flex-shrink: 0;
    }

    .mobile-nav-item-has-children > .mobile-nav-link::after {
        content: '+';
        float: right;
        font-size: 20px;
        font-weight: 300;
        transition: transform 0.3s;
    }

    .mobile-nav-item-has-children.active > .mobile-nav-link::after {
        transform: rotate(45deg);
    }

    .mobile-nav-dropdown {
        list-style: none;
        padding: 0;
        margin: 0;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s;
        background: #f9fafb;
    }

    .mobile-nav-item-has-children.active .mobile-nav-dropdown {
        max-height: 500px;
    }

    .mobile-nav-dropdown-link {
        display: block;
        padding: 10px 20px;
        color: var(--secondary-color);
        text-decoration: none;
        font-size: 14px;
        font-weight: 400;
        border-bottom: 1px solid #e5e7eb;
    }

    .mobile-nav-dropdown-link:hover {
        background-color: #f3f4f6;
        color: var(--primary-color);
    }

    body.menu-open {
        overflow: hidden;
    }
}

/* Hero Section */
.hero-section {
    position: relative;
    width: 100%;
    height: 550px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    background: var(--secondary-color);
}

.hero-background::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(17, 24, 39, 0.6);
    z-index: 1;
}

.hero-bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    opacity: 0.7;
    position: relative;
    z-index: 0;
}

.hero-content {
    position: relative;
    z-index: 2;
    width: 100%;
    text-align: center;
}

.hero-title {
    color: #fff;
    font-size: 30px;
    font-weight: 700;
    margin-bottom: 20px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-description {
    color: #fff;
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-search-form {
    display: flex;
    justify-content: center;
    align-items: center;
}

.search-form {
    display: flex;
    align-items: center;
    gap: 12px;
    background: #ffffff24;
    padding: 15px;
    border-radius: 8px;
    max-width: 900px;
    width: 100%;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.form-group {
    position: relative;
    flex: 1;
}

.form-select {
    width: 100%;
    padding: 12px 40px 12px 15px;
    border: 1px solid #e5e7eb;
    border-radius: 6px;
    font-size: 14px;
    color: var(--secondary-color);
    background: #fff;
    appearance: none;
    cursor: pointer;
    transition: border-color 0.3s;
}

.form-select:focus {
    outline: none;
    border-color: var(--primary-color);
}

.form-icon {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    width: 18px;
    height: 18px;
    pointer-events: none;
}

.search-button {
    display: flex;
    align-items: center;
    gap: 8px;
    background: var(--primary-color);
    color: #fff;
    padding: 12px 24px;
    border: none;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    cursor: pointer;
    transition: background-color 0.3s;
    white-space: nowrap;
}

.search-button:hover {
    background: #1e5fd4;
}

.search-icon {
    width: 18px;
    height: 18px;
    color: #fff;
    stroke: currentColor;
}

.hero-location-button-wrapper {
    display: flex;
    justify-content: center;
    margin-top: 20px;
}

.location-button {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: #198754;
    color: #fff;
    padding: 12px 24px;
    border: none;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    cursor: pointer;
    transition: background-color 0.3s;
    white-space: nowrap;
}

.location-button:hover {
    background: #157347;
}

.location-icon {
    font-size: 18px;
    line-height: 1;
    color: #fff;
}

/* Konum Popup */
.location-popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    z-index: 10000;
    display: none;
    align-items: center;
    justify-content: center;
    animation: fadeIn 0.3s ease;
}

.location-popup.active {
    display: flex;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

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

.location-popup-content {
    background: #fff;
    padding: 50px 40px;
    border-radius: 16px;
    text-align: center;
    max-width: 420px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    animation: slideUp 0.4s ease;
    position: relative;
}

.location-popup-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color) 0%, #1e5fd4 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 40px;
    color: #fff;
    font-weight: bold;
    box-shadow: 0 8px 20px rgba(33, 141, 91, 0.3);
    animation: scaleIn 0.5s ease 0.2s both;
}

@keyframes scaleIn {
    from {
        transform: scale(0);
    }
    to {
        transform: scale(1);
    }
}

.location-popup-content h3 {
    font-size: 24px;
    color: var(--secondary-color);
    margin-bottom: 12px;
    font-weight: 700;
}

.location-popup-content p {
    color: var(--text-color);
    font-size: 16px;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .hero-section {
        height: 500px;
        padding: 30px 0;
    }

    .hero-title {
        font-size: 25px;
        margin-bottom: 15px;
        padding: 0 15px;
    }

    .hero-description {
        font-size: 16px;
        margin-bottom: 30px;
        padding: 0 15px;
    }

    .search-form {
        flex-direction: column;
        gap: 10px;
        background: #ffffff24;
        padding: 15px;
        margin: 0 15px;
    }

    .form-group {
        width: 100%;
    }

    .search-button {
        width: 100%;
        justify-content: center;
    }

    .hero-location-button-wrapper {
        margin-top: 20px;
        padding: 0 15px;
        display: flex;
        justify-content: center;
    }

    .location-button {
        width: auto;
        min-width: 200px;
    }
}

/* Footer */
.site-footer {
    background: #fff;
    padding: 0;
}

/* Footer İletişim Bölümü */
.footer-contact-section {
    border-top: 1px solid #e5e7eb;
    border-bottom: 1px solid #e5e7eb;
    padding: 50px 0;
    background: #fff;
}

.footer-contact-items {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    align-items: center;
    gap: 40px;
}

.footer-contact-item {
    display: flex;
    flex-direction: row;
    align-items: center;
    text-align: left;
    gap: 20px;
}

.footer-contact-item:first-child {
    justify-content: flex-start;
}

.footer-contact-item:nth-child(2) {
    justify-content: center;
}

.footer-contact-item:last-child {
    justify-content: flex-end;
}

.contact-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f9fafb;
    transition: all 0.3s;
    flex-shrink: 0;
}

.contact-icon svg {
    width: 22px;
    height: 22px;
    stroke-width: 2;
}

.email-icon {
    color: #f97316;
}

.email-icon:hover {
    background: #f97316;
    color: #fff;
    transform: translateY(-3px);
}

.whatsapp-icon {
    color: var(--primary-color);
}

.whatsapp-icon:hover {
    background: var(--primary-color);
    color: #fff;
    transform: translateY(-3px);
}

.phone-icon {
    color: #10b981;
}

.phone-icon:hover {
    background: #10b981;
    color: #fff;
    transform: translateY(-3px);
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.contact-label {
    color: var(--text-color);
    font-size: 14px;
    margin: 0;
    font-weight: 400;
}

.contact-value {
    color: var(--secondary-color);
    font-size: 18px;
    font-weight: 700;
    text-decoration: none;
    transition: color 0.3s;
}

.contact-value:hover {
    color: var(--primary-color);
}

.footer-content {
    padding-top: 60px;
    text-align: center;
    margin-bottom: 40px;
}

.footer-content {
    text-align: center;
    margin-bottom: 40px;
}

.footer-logo-section {
    margin-bottom: 30px;
}

.footer-logo {
    margin-bottom: 20px;
}

.footer-logo-img {
    height: 60px;
    width: auto;
}

.footer-description {
    color: var(--text-color);
    font-size: 15px;
    line-height: 1.8;
    max-width: 800px;
    margin: 0 auto;
}

.footer-description strong {
    color: var(--secondary-color);
    font-weight: 600;
}

.footer-social {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    margin-top: 30px;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: #f3f4f6;
    border-radius: 50%;
    color: var(--secondary-color);
    text-decoration: none;
    transition: all 0.3s;
}

.social-link:hover {
    background: var(--primary-color);
    color: #fff;
    transform: translateY(-2px);
}

.social-link svg {
    width: 20px;
    height: 20px;
}

.footer-nav {
    background: #f9fafb;
    padding: 20px 0;
    margin: 40px 0 20px;
}

.footer-nav-links {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}

.footer-nav-link {
    color: var(--text-color);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s;
}

.footer-nav-link:hover {
    color: var(--primary-color);
}

.footer-nav-separator {
    color: var(--text-color);
    margin: 0 5px;
}

.footer-copyright {
    text-align: center;
    padding-top: 20px;
    padding-bottom: 10px;
}

.footer-copyright p {
    color: var(--text-color);
    font-size: 14px;
    margin: 0;
}

@media (max-width: 768px) {
    .site-footer {
        padding: 40px 0 20px;
    }

    .footer-logo-img {
        height: 50px;
    }

    .footer-description {
        font-size: 15px;
        padding: 0 15px;
    }

    .footer-social {
        gap: 12px;
    }

    .social-link {
        width: 36px;
        height: 36px;
    }

    .social-link svg {
        width: 18px;
        height: 18px;
    }

    .footer-nav-links {
        gap: 8px;
        padding: 0 15px;
    }

    .footer-nav-link {
        font-size: 13px;
    }

    .footer-nav-separator {
        margin: 0 3px;
    }

    .footer-copyright p {
        font-size: 13px;
        padding: 0 15px;
    }

    .footer-contact-section {
        padding: 40px 0;
    }

    .footer-contact-items {
        grid-template-columns: 1fr;
        gap: 25px;
        padding: 0 15px;
    }

    .footer-contact-item {
        width: 100%;
        justify-content: flex-start !important;
    }

    .contact-icon {
        width: 50px;
        height: 50px;
    }

    .contact-icon svg {
        width: 20px;
        height: 20px;
    }

    .contact-label {
        font-size: 13px;
    }

    .contact-value {
        font-size: 16px;
    }
}

/* Hakkımızda Bölümü */
.about-section {
    padding: 80px 0;
    background: #fff;
}

.about-content {
    display: flex;
    align-items: center;
    gap: 60px;
}

.about-image {
    flex: 1;
    max-width: 500px;
}

.about-img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.about-text {
    flex: 1;
}

.about-title {
    font-size: 25px;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 40px;
    line-height: 1.3;
}

.about-item {
    margin-bottom: 35px;
}

.about-item:last-child {
    margin-bottom: 0;
}

.about-item-title {
    font-size: 17.5px;
    font-weight: 600;
    color: var(--secondary-color);
    margin-bottom: 15px;
    line-height: 1.4;
}

.about-description {
    color: var(--text-color);
    font-size: 15px;
    line-height: 1.8;
    margin: 0;
}

@media (max-width: 768px) {
    .about-section {
        padding: 50px 0;
    }

    .about-content {
        flex-direction: column;
        gap: 40px;
    }

    .about-image {
        max-width: 100%;
        order: 2;
    }

    .about-text {
        order: 1;
    }

    .about-title {
        font-size: 22px;
        margin-bottom: 30px;
    }

    .about-item {
        margin-bottom: 30px;
    }

    .about-item-title {
        font-size: 16px;
        margin-bottom: 12px;
    }

    .about-description {
        font-size: 15px;
    }
}

/* Hizmetlerimiz Bölümü */
.services-section {
    padding: 80px 0;
    background: #fff;
}

.services-title {
    font-size: 28px;
    font-weight: 700;
    color: var(--secondary-color);
    text-align: center;
    margin-bottom: 12px;
}

.services-desc {
    font-size: 15px;
    line-height: 1.8;
    color: var(--text-color);
    text-align: center;
    max-width: 860px;
    margin: 0 auto 40px;
}

.services-slider-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    gap: 20px;
}

.services-slider-btn {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--primary-color);
    color: #fff;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background-color 0.3s, transform 0.2s;
    flex-shrink: 0;
    z-index: 2;
}

/* Masaüstü: okları gizle (mobil gibi sürükleyerek kaydırma) */
.services-slider-btn {
    display: none !important;
}

.services-slider-btn:hover {
    background: #1e5fd4;
    transform: scale(1.1);
}

.services-slider-btn svg {
    width: 24px;
    height: 24px;
}

.services-slider {
    flex: 1;
    overflow-x: auto;
    overflow-y: hidden;
    position: relative;
    scrollbar-width: none;
    -ms-overflow-style: none;
    scroll-snap-type: none;
    cursor: grab;
    -webkit-overflow-scrolling: touch;
    scroll-behavior: auto;
    overscroll-behavior-x: contain;
}

.services-slider::-webkit-scrollbar {
    display: none;
}

.services-slider.is-dragging {
    cursor: grabbing;
    user-select: none;
}

.services-slider-track {
    display: flex;
    gap: 20px;
    flex-wrap: nowrap;
    transition: none;
    will-change: auto;
}


.service-card {
    flex: 0 0 calc(25% - 15px);
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: none;
    transition: none;
    scroll-snap-align: start;
}

.service-card:hover {
    transform: none;
    box-shadow: none;
}

.service-card-image {
    position: relative;
    width: 100%;
    height: 300px;
    overflow: hidden;
}

.service-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: none;
}

.service-card:hover .service-img {
    transform: none;
}

.service-card-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(17, 24, 39, 0.9) 0%, transparent 100%);
    padding: 25px 20px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 15px;
}

.service-card-title {
    font-size: 18px;
    font-weight: 600;
    color: #fff;
    margin: 0;
    line-height: 1.3;
    flex: 1;
    display: flex;
    align-items: center;
}

.service-card-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--primary-color);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: background-color 0.3s, transform 0.2s;
    flex-shrink: 0;
}

.service-card-btn:hover {
    background: var(--primary-color);
    transform: none;
}

.service-card-btn svg {
    width: 20px;
    height: 20px;
}

/* Tablet */
@media (max-width: 1024px) {
    .service-card {
        flex: 0 0 calc(33.333% - 14px);
    }

    .services-slider-btn {
        width: 44px;
        height: 44px;
    }
}

/* Mobil */
@media (max-width: 768px) {
    .services-section {
        padding: 50px 0;
    }

    .services-title {
        font-size: 22px;
        margin-bottom: 10px;
    }

    .services-desc {
        font-size: 15px;
        margin: 0 auto 25px;
        padding: 0 4px;
    }

    .services-slider-wrapper {
        display: block;
        width: 100%;
        gap: 0;
    }

    .services-slider {
        width: 100%;
        margin: 0;
        padding: 0 12px; /* allow side breathing room on mobile */
        flex: none !important;
        overflow-x: auto !important;
        overflow-y: hidden !important;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        -ms-overflow-style: none;
        scroll-snap-type: none;
        scroll-behavior: auto;
        display: block;
    }

    .services-slider::-webkit-scrollbar {
        display: none;
    }

    .services-slider-btn {
        display: none !important;
    }

    .services-slider-track {
        display: flex;
        flex-wrap: nowrap;
        gap: 14px; /* mobile spacing between cards */
        width: auto;
        min-width: 0;
        height: 100%;
        transition: none !important;
        transform: none !important;
        align-items: stretch;
    }

    .service-card {
        /* show spacing between cards while swiping (similar feel to desktop) */
        flex: 0 0 88%;
        scroll-snap-align: start;
        width: 88%;
        min-width: 88%;
        max-width: 88%;
        box-sizing: border-box;
        position: relative;
        overflow: hidden;
        flex-shrink: 0;
    }

    .service-card-image {
        height: 250px;
        overflow: hidden;
        width: 100%;
    }

    .service-card-image img,
    .service-card-image .service-img {
        width: 100% !important;
        height: 100% !important;
        object-fit: cover !important;
        display: block;
        max-width: 100% !important;
    }

    .service-card-title {
        font-size: 16px;
    }

    .service-card-content {
        padding: 25px 15px 15px;
    }

    .service-card-btn {
        width: 36px;
        height: 36px;
    }

    .service-card-btn svg {
        width: 18px;
        height: 18px;
    }
}

/* Süreç Bölümü */
.process-section {
    padding: 80px 0;
    background: #f9fafb;
}

.process-content {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    align-items: start;
}

.process-item {
    text-align: center;
    position: relative;
}

.process-icon-wrapper {
    position: relative;
    display: inline-block;
    margin-bottom: 25px;
}

.process-number {
    position: absolute;
    top: -8px;
    right: -8px;
    width: 32px;
    height: 32px;
    background: var(--primary-color);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    font-weight: 700;
    z-index: 2;
    box-shadow: 0 2px 8px rgba(39, 113, 235, 0.3);
}

.process-icon {
    width: 100px;
    height: 100px;
    background: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 2px solid #f3f4f6;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.process-item:hover .process-icon {
    transform: translateY(-5px);
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.12);
}

.process-icon svg {
    width: 60px;
    height: 60px;
}

.process-title {
    font-size: 18px;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 15px;
    line-height: 1.4;
}

.process-description {
    font-size: 15px;
    color: var(--text-color);
    line-height: 1.7;
    margin: 0;
}

@media (max-width: 1024px) {
    .process-content {
        grid-template-columns: repeat(2, 1fr);
        gap: 50px;
    }
}

@media (max-width: 768px) {
    .process-section {
        padding: 50px 0;
    }

    .process-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .process-icon {
        width: 90px;
        height: 90px;
    }

    .process-icon svg {
        width: 50px;
        height: 50px;
    }

    .process-title {
        font-size: 17px;
        margin-bottom: 12px;
    }

    .process-description {
        font-size: 14px;
    }
}

/* Sıkça Sorulan Sorular Bölümü */
.faq-section {
    padding: 80px 0;
    background: #fff;
}

.faq-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.faq-text {
    position: relative;
}

.faq-title {
    font-size: 25px;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 40px;
    line-height: 1.3;
}

.faq-list {
    position: relative;
    padding-left: 30px;
}

.faq-list::before {
    content: '';
    position: absolute;
    left: 15px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: repeating-linear-gradient(
        to bottom,
        var(--primary-color) 0,
        var(--primary-color) 8px,
        transparent 8px,
        transparent 16px
    );
}

.faq-item {
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

.faq-item:last-child {
    margin-bottom: 0;
}

.faq-question {
    display: flex;
    align-items: center;
    gap: 15px;
    width: 100%;
    text-align: left;
    background: none;
    border: none;
    padding: 0;
    cursor: pointer;
    transition: opacity 0.3s;
    position: relative;
    z-index: 1;
    pointer-events: auto;
}

.faq-question:hover {
    opacity: 0.8;
}

.faq-icon {
    width: 24px;
    height: 24px;
    background: var(--primary-color);
    color: #fff;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: 700;
    flex-shrink: 0;
    transition: transform 0.3s, background-color 0.3s;
    position: relative;
    z-index: 2;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
    background: var(--primary-color);
}

.faq-question-text {
    font-size: 16px;
    font-weight: 600;
    color: var(--secondary-color);
    line-height: 1.5;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out, padding 0.4s ease-out, opacity 0.3s ease-out;
    padding-left: 39px;
    padding-top: 0;
    padding-bottom: 0;
    opacity: 0;
}

.faq-item.active .faq-answer {
    max-height: 1000px;
    padding-top: 15px;
    padding-bottom: 10px;
    opacity: 1;
}

.faq-answer p {
    font-size: 15px;
    color: var(--text-color);
    line-height: 1.7;
    margin: 0;
}

.faq-image {
    position: relative;
    height: 100%;
    min-height: 600px;
    border-radius: 12px;
    overflow: hidden;
}

.faq-bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

@media (max-width: 1024px) {
    .faq-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .faq-image {
        min-height: 400px;
        order: -1;
    }
}

@media (max-width: 768px) {
    .faq-section {
        padding: 50px 0;
    }

    .faq-title {
        font-size: 20px;
        margin-bottom: 30px;
    }

    .faq-list {
        padding-left: 25px;
    }

    .faq-list::before {
        left: 12px;
    }

    .faq-icon {
        width: 20px;
        height: 20px;
        font-size: 16px;
    }

    .faq-question-text {
        font-size: 15px;
    }

    .faq-answer {
        padding-left: 35px;
    }

    .faq-answer p {
        font-size: 14px;
    }

    .faq-image {
        min-height: 300px;
    }
}

/* Çekici Sürücüsü Olun Bölümü */
.driver-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #1a1f2e 0%, #2d3441 100%);
    position: relative;
    overflow: hidden;
}

/* Müşteri Yorumları Bölümü */
.testimonials-section {
    padding: 80px 0;
    background: #fff;
}

.testimonials-header {
    text-align: center;
    margin-bottom: 35px;
}

.testimonials-title {
    font-size: 28px;
    font-weight: 700;
    color: var(--secondary-color);
    margin: 0 0 12px;
}

.testimonials-rating {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    color: var(--secondary-color);
}

.rating-stars,
.testimonial-stars {
    display: inline-flex;
    gap: 4px;
    color: #fbbf24;
}

.rating-text {
    font-size: 15px;
    color: var(--text-color);
}

.rating-text strong {
    color: var(--secondary-color);
}

.testimonials-slider {
    width: 100%;
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    -ms-overflow-style: none;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    cursor: grab;
}

.testimonials-slider::-webkit-scrollbar {
    display: none;
}

.testimonials-slider.is-dragging {
    cursor: grabbing;
    user-select: none;
}

.testimonials-track {
    display: flex;
    gap: 20px;
    flex-wrap: nowrap;
    padding: 0;
}

.testimonial-card {
    flex: 0 0 calc(25% - 15px);
    background: #fff;
    border-radius: 12px;
    border: 1px solid rgba(109, 119, 146, 0.18);
    padding: 22px 22px 18px;
    scroll-snap-align: start;
}

.testimonial-text {
    margin: 14px 0 18px;
    color: var(--text-color);
    font-size: 15px;
    line-height: 1.75;
}

.testimonial-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
}

.testimonial-name {
    font-weight: 600;
    color: var(--secondary-color);
    font-size: 15px;
}

.testimonial-date {
    color: var(--text-color);
    font-size: 13px;
    white-space: nowrap;
}

.testimonials-dots {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin-top: 30px;
    padding: 0;
    list-style: none;
}

.testimonials-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: none;
    background: rgba(39, 113, 235, 0.3);
    cursor: pointer;
    padding: 0;
    transition: background-color 0.3s ease;
    position: relative;
    flex-shrink: 0;
}

.testimonials-dot:hover {
    background: var(--primary-color);
}

.testimonials-dot.is-active {
    background: var(--primary-color);
}

@media (max-width: 1024px) {
    .testimonial-card {
        flex: 0 0 calc(50% - 10px);
    }
}

@media (max-width: 768px) {
    .testimonials-section {
        padding: 50px 0;
    }

    .testimonials-title {
        font-size: 22px;
    }

    .testimonials-rating {
        gap: 10px;
    }

    .testimonial-card {
        flex: 0 0 100%;
    }

    .testimonials-slider {
        cursor: auto;
    }

    .testimonials-dots {
        gap: 8px;
        margin-top: 24px;
        padding: 0 16px;
        flex-wrap: wrap;
        max-width: 100%;
        box-sizing: border-box;
    }

    .testimonials-dot {
        width: 8px;
        height: 8px;
        flex-shrink: 0;
    }
}

.driver-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
}

.driver-text {
    color: #fff;
}

.driver-title {
    font-size: 32px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 15px;
    line-height: 1.3;
}

.driver-subtitle {
    font-size: 15.5px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 40px;
    line-height: 1.7;
}

.driver-features {
    list-style: none;
    padding: 0;
    margin: 0;
}

.driver-feature-item {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
    font-size: 16px;
    color: #fff;
}

.driver-feature-item:last-child {
    margin-bottom: 0;
}

.check-icon {
    width: 20px;
    height: 20px;
    color: var(--primary-color);
    flex-shrink: 0;
}

.driver-card {
    background: #fff;
    border-radius: 12px;
    padding: 35px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    max-width: 480px;
    margin-left: auto;
}

.driver-card-title {
    font-size: 21px;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 14px;
    line-height: 1.4;
}

.driver-card-desc {
    font-size: 14.5px;
    color: var(--text-color);
    margin-bottom: 28px;
    line-height: 1.6;
}

.driver-apply-btn {
    display: inline-block;
    width: 100%;
    background: var(--primary-color);
    color: #fff;
    padding: 15px 30px;
    border-radius: 8px;
    font-size: 15.5px;
    font-weight: 600;
    text-align: center;
    text-decoration: none;
    transition: background-color 0.3s, transform 0.2s;
    margin-bottom: 14px;
}

.driver-apply-btn:hover {
    background: #1e5fd4;
    transform: translateY(-2px);
}

.driver-card-free {
    font-size: 12.5px;
    color: var(--text-color);
    text-align: center;
    margin: 0;
    opacity: 0.8;
}

@media (max-width: 1024px) {
    .driver-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .driver-card {
        order: -1;
    }
}

@media (max-width: 768px) {
    .driver-section {
        padding: 50px 0;
    }

    .driver-title {
        font-size: 26px;
    }

    .driver-subtitle {
        font-size: 16px;
        margin-bottom: 30px;
    }

    .driver-feature-item {
        font-size: 15px;
        margin-bottom: 15px;
    }

    .driver-card {
        padding: 30px 20px;
    }

    .driver-card-title {
        font-size: 20px;
    }

    .driver-card-desc {
        font-size: 14px;
        margin-bottom: 25px;
    }

    .driver-apply-btn {
        padding: 14px 24px;
        font-size: 15px;
    }
}

/* Özel İçerik Alanı - Makale */
.custom-content-section {
    padding: 80px 0;
    background: #fff;
}

.cekici-makale {
    max-width: 100%;
    max-height: 450px;
    overflow-y: auto;
    overflow-x: hidden;
    padding-right: 15px;
}

/* Scrollbar Styling */
.cekici-makale::-webkit-scrollbar {
    width: 8px;
}

.cekici-makale::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 4px;
}

.cekici-makale::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 4px;
}

.cekici-makale::-webkit-scrollbar-thumb:hover {
    background: var(--secondary-color);
}

.makale-bolum {
    margin-bottom: 50px;
}

.makale-bolum:last-child {
    margin-bottom: 0;
}

.cekici-makale h2 {
    font-size: 20px;
    font-weight: 700;
    color: var(--secondary-color);
    margin-top: 0;
    margin-bottom: 20px;
    line-height: 1.4;
}

.cekici-makale h3 {
    font-size: 20px;
    font-weight: 600;
    color: var(--secondary-color);
    margin-top: 25px;
    margin-bottom: 15px;
    line-height: 1.4;
}

.cekici-makale h4 {
    font-size: 16px;
    font-weight: 600;
    color: var(--secondary-color);
    margin-top: 20px;
    margin-bottom: 12px;
    line-height: 1.4;
}

.cekici-makale p {
    font-size: 15px;
    color: var(--text-color);
    line-height: 1.7;
    margin-bottom: 20px;
}

.cekici-makale ul {
    list-style: none;
    padding: 0;
    padding-left: 28px;
    margin: 20px 0;
}

.cekici-makale ul li {
    font-size: 15px;
    color: var(--text-color);
    line-height: 1.7;
    margin-bottom: 12px;
    padding-left: 0;
    position: relative;
}

.cekici-makale ul li::before {
    content: '✓';
    position: absolute;
    left: -28px;
    top: 0;
    width: 20px;
    height: 20px;
    background: var(--primary-color);
    color: #fff;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 700;
    line-height: 1;
}

.cekici-makale ul li:last-child {
    margin-bottom: 0;
}

.cekici-makale ol {
    list-style: none;
    counter-reset: makale-counter;
    padding: 0;
    padding-left: 28px;
    margin: 20px 0;
}

.cekici-makale ol li {
    font-size: 15px;
    color: var(--text-color);
    line-height: 1.7;
    margin-bottom: 12px;
    padding-left: 0;
    position: relative;
    counter-increment: makale-counter;
}

.cekici-makale ol li::before {
    content: counter(makale-counter);
    position: absolute;
    left: -28px;
    top: 0;
    width: 20px;
    height: 20px;
    background: var(--primary-color);
    color: #fff;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 700;
    line-height: 1;
}

.cekici-makale ol li:last-child {
    margin-bottom: 0;
}

.cekici-makale a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

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

.cekici-makale img {
    max-width: 100%;
    height: auto;
    margin: 20px 0;
    border-radius: 8px;
}

@media (max-width: 768px) {
    .custom-content-section {
        padding: 50px 0;
    }

    .custom-content-section .container {
        padding-left: 16px;
        padding-right: 16px;
    }

    .cekici-makale {
        max-height: 450px;
        padding-right: 10px;
        padding-left: 0;
    }

    .makale-bolum {
        margin-bottom: 40px;
        padding-right: 0;
    }

    .cekici-makale h2 {
        font-size: 20px;
        margin-bottom: 18px;
    }

    .cekici-makale h3 {
        font-size: 20px;
        margin-top: 20px;
        margin-bottom: 12px;
    }

    .cekici-makale h4 {
        font-size: 15px;
        margin-top: 18px;
        margin-bottom: 10px;
    }

    .cekici-makale p {
        font-size: 15px;
        margin-bottom: 18px;
    }

    .cekici-makale ul li,
    .cekici-makale ol li {
        font-size: 15px;
        padding-left: 0;
        margin-bottom: 10px;
    }

    .cekici-makale ul li::before,
    .cekici-makale ol li::before {
        width: 18px;
        height: 18px;
        font-size: 11px;
    }
}

/* Blog Bölümü */
.blog-section {
    padding: 80px 0;
    background: #f9fafb;
}

.blog-section-title {
    font-size: 28px;
    font-weight: 700;
    color: var(--secondary-color);
    text-align: center;
    margin-bottom: 50px;
}

.blog-slider-wrapper {
    position: relative;
}

.blog-slider {
    width: 100%;
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    -ms-overflow-style: none;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    cursor: grab;
}

.blog-slider::-webkit-scrollbar {
    display: none;
}

.blog-slider.is-dragging {
    cursor: grabbing;
}

.blog-slider-track {
    display: flex;
    gap: 24px;
    padding: 0 2px;
    align-items: stretch;
}

.blog-card {
    flex: 0 0 calc(25% - 18px);
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    scroll-snap-align: start;
    scroll-snap-stop: always;
}

.blog-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
}

.blog-card-image {
    position: relative;
    width: 100%;
    padding-top: 60%;
    overflow: hidden;
    background: #e5e7eb;
}

.blog-card-image img,
.blog-img-placeholder {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px 12px 0 0;
}

.blog-img-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f3f4f6;
    color: #9ca3af;
}

.blog-online-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    background: rgba(255, 255, 255, 0.95);
    padding: 6px 10px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    font-weight: 600;
    color: #10b981;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.blog-online-badge svg {
    flex-shrink: 0;
}

.blog-card-content {
    padding: 24px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.blog-card-title {
    font-size: 18px;
    font-weight: 700;
    color: var(--secondary-color);
    margin: 0 0 12px;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.blog-card-description {
    font-size: 14px;
    color: var(--text-color);
    line-height: 1.6;
    margin: 0 0 16px;
    flex: 1;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.blog-card-link {
    display: inline-flex;
    align-items: center;
    font-size: 14px;
    font-weight: 600;
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.3s ease;
    margin-top: auto;
}

.blog-card-link:hover {
    color: var(--secondary-color);
    text-decoration: underline;
}

.blog-dots {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    margin-top: 30px;
    flex-wrap: wrap;
}

.blog-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #d1d5db;
    border: none;
    cursor: pointer;
    padding: 0;
    transition: background 0.3s ease, transform 0.3s ease;
}

.blog-dot.is-active {
    background: var(--primary-color);
    transform: scale(1.2);
}

.blog-dot:hover {
    background: var(--secondary-color);
}

@media (max-width: 1024px) and (min-width: 769px) {
    .blog-card {
        flex: 0 0 calc(50% - 12px);
    }
}

@media (max-width: 768px) {
    .blog-section {
        padding: 50px 0;
    }

    .blog-section-title {
        font-size: 22px;
        margin-bottom: 30px;
    }

    .blog-slider {
        cursor: auto;
    }

    .blog-card {
        flex: 0 0 100%;
        min-width: 0;
    }

    .blog-slider-track {
        gap: 16px;
        padding: 0;
    }

    .blog-card-content {
        padding: 20px;
    }

    .blog-card-title {
        font-size: 16px;
    }

    .blog-card-description {
        font-size: 14px;
    }
}

/* Page Hero Banner */
.page-hero-section {
    position: relative;
    padding: 0;
    margin-top: 0;
    margin-bottom: 0;
    overflow: hidden;
    min-height: 200px;
    display: flex;
    align-items: center;
}

.page-hero-section .container {
    padding: 60px 20px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    min-height: 200px;
}

.page-hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.page-hero-bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: blur(3px);
    transform: scale(1.1);
}

.page-hero-background::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(17, 24, 39, 0.75);
    z-index: 2;
}


.page-hero-content {
    position: relative;
    z-index: 3;
    text-align: left;
    color: #fff;
    max-width: 1475px;
    margin: 0 auto;
    padding: 0;
    width: 100%;
}

.page-hero-breadcrumb {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 20px;
}

.page-hero-title {
    font-size: 32px;
    font-weight: 700;
    color: #fff;
    margin: 0 0 20px;
    line-height: 1.2;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.page-hero-description {
    font-size: 15px;
    color: #fff;
    line-height: 1.6;
    margin: 0;
    opacity: 0.95;
    max-width: 800px;
    text-shadow: 0 1px 5px rgba(0, 0, 0, 0.2);
}

.page-hero-breadcrumb .breadcrumb-home {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 6px;
    color: #fff;
    text-decoration: none;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.page-hero-breadcrumb .breadcrumb-home:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
}

.page-hero-breadcrumb .breadcrumb-home svg {
    width: 18px;
    height: 18px;
}

.page-hero-breadcrumb .breadcrumb-separator {
    width: 6px;
    height: 6px;
    background: #fff;
    border-radius: 50%;
    flex-shrink: 0;
    opacity: 0.8;
}

.page-hero-breadcrumb .breadcrumb-current {
    font-size: 14px;
    color: #fff;
    font-weight: 500;
    opacity: 0.9;
}

/* Breadcrumb (Eski stil - artık kullanılmıyor ama geriye dönük uyumluluk için) */
.breadcrumb-section {
    padding: 20px 0;
    background: #f9fafb;
    border-bottom: 1px solid #e5e7eb;
    margin-top: 0;
}

.breadcrumb {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

.breadcrumb-home {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    background: #fff;
    border-radius: 6px;
    color: var(--primary-color);
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.breadcrumb-home:hover {
    background: var(--primary-color);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
}

.breadcrumb-home svg {
    width: 18px;
    height: 18px;
}

.breadcrumb-separator {
    width: 6px;
    height: 6px;
    background: var(--primary-color);
    border-radius: 50%;
    flex-shrink: 0;
}

.breadcrumb-current {
    font-size: 14px;
    color: var(--text-color);
    font-weight: 500;
}

/* FAQ Sayfası */
.faq-page-section,
.page-content-section {
    padding: 60px 0 80px;
    background: #fff;
    overflow: visible;
}

.page-with-sidebar {
    display: flex;
    gap: 40px;
    align-items: flex-start;
    position: relative;
    overflow: visible;
}

.page-sidebar {
    width: 25%;
    flex-shrink: 0;
    align-self: flex-start;
    position: -webkit-sticky;
    position: sticky;
    top: 100px;
    height: fit-content;
    overflow: visible;
}

.sidebar-nav {
    position: relative;
    z-index: 10;
}

.sidebar-menu {
    list-style: none;
    padding: 0;
    margin: 0;
    background: #f9fafb;
    border-radius: 8px;
    padding: 20px;
}

.sidebar-item {
    margin-bottom: 8px;
}

.sidebar-item:last-child {
    margin-bottom: 0;
}

.sidebar-link {
    display: block;
    padding: 12px 16px;
    color: var(--text-color);
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.sidebar-link:hover {
    background: #e5e7eb;
    color: var(--primary-color);
}

.sidebar-link.active {
    background: var(--primary-color);
    color: #fff;
}

.page-content {
    width: 75%;
    flex: 1;
    line-height: 1.8;
}

/* Privacy Policy Content */
.privacy-policy-content {
    max-width: 100%;
}

.privacy-header {
    margin-bottom: 40px;
}

.privacy-meta {
    font-size: 14px;
    color: var(--text-color);
    line-height: 1.8;
}

.privacy-section {
    margin-bottom: 40px;
}

.privacy-section:last-child {
    margin-bottom: 0;
}

.privacy-section h2 {
    font-size: 20px !important;
    font-weight: 700;
    color: var(--secondary-color);
    margin-top: 0;
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 1px solid #e5e7eb;
    line-height: 1.4;
}

.privacy-section h3 {
    font-size: 18px !important;
    font-weight: 600;
    color: var(--secondary-color);
    margin-top: 25px;
    margin-bottom: 15px;
    line-height: 1.4;
}

.privacy-section p {
    font-size: 15px !important;
    color: var(--text-color);
    line-height: 1.8;
    margin-bottom: 20px;
}

.privacy-section ul {
    list-style: none !important;
    padding: 0 !important;
    margin: 20px 0 !important;
}

.privacy-section ul li {
    font-size: 15px !important;
    color: var(--text-color);
    line-height: 1.7;
    margin-bottom: 12px;
    padding-left: 0 !important;
    position: relative;
    display: flex !important;
    align-items: flex-start;
    gap: 10px;
}

.privacy-section ul li::before {
    content: '✓';
    width: 20px;
    height: 20px;
    min-width: 20px;
    background: var(--primary-color);
    color: #fff;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 700;
    flex-shrink: 0;
    margin-top: 2px;
}

.privacy-section ul li:last-child {
    margin-bottom: 0;
}

.privacy-section a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

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

.page-content h2 {
    font-size: 24px;
    margin-top: 40px;
    margin-bottom: 20px;
    color: var(--secondary-color);
}

.page-content h3 {
    font-size: 20px;
    margin-top: 30px;
    margin-bottom: 15px;
    color: var(--secondary-color);
}

.page-content h4 {
    font-size: 18px;
    margin-top: 25px;
    margin-bottom: 12px;
    color: var(--secondary-color);
}

.page-content p {
    margin-bottom: 15px;
    color: var(--text-color);
    font-size: 16px;
}

.page-content ul,
.page-content ol {
    margin: 20px 0;
    padding-left: 30px;
}

.page-content li {
    margin-bottom: 10px;
    color: var(--text-color);
    font-size: 16px;
}

/* Privacy Policy Content için özel stiller - page-content stillerini override eder */
.privacy-policy-content ul,
.privacy-policy-content ol {
    padding-left: 0 !important;
}

.privacy-policy-content li {
    padding-left: 0 !important;
}

@media (max-width: 768px) {
    .faq-page-section,
    .page-content-section {
        padding: 40px 0 60px;
    }

    .page-with-sidebar {
        flex-direction: column;
        gap: 30px;
    }

    .page-sidebar {
        width: 100%;
        order: 2;
        position: static;
        top: auto;
    }

    .page-content {
        width: 100%;
        order: 1;
    }

    .sidebar-nav {
        position: static;
    }

    .sidebar-menu {
        display: block;
        padding: 15px;
    }

    .sidebar-item {
        margin-bottom: 8px;
        width: 100%;
    }

    .sidebar-item:last-child {
        margin-bottom: 0;
    }

    .sidebar-link {
        text-align: left;
        padding: 12px 16px;
        font-size: 15px;
    }

    .page-content {
        width: 100%;
        padding: 0 8px;
    }

    .page-content h2 {
        font-size: 20px;
        margin-top: 30px;
    }

    .page-content h3 {
        font-size: 18px;
        margin-top: 25px;
    }

    .page-content h4 {
        font-size: 16px;
        margin-top: 20px;
    }

    .privacy-section {
        margin-bottom: 30px;
    }

    .privacy-section h2 {
        font-size: 20px !important;
        margin-bottom: 15px;
        padding-bottom: 10px;
    }

    .privacy-section p {
        font-size: 15px !important;
        margin-bottom: 15px;
    }

    .privacy-section ul li {
        font-size: 15px;
        padding-left: 0;
        margin-bottom: 10px;
        gap: 8px;
    }

    .privacy-section ul li::before {
        width: 18px;
        height: 18px;
        min-width: 18px;
        font-size: 11px;
        margin-top: 1px;
    }
}

.faq-page-header {
    text-align: center;
    margin-bottom: 50px;
}

.faq-page-title {
    font-size: 32px;
    font-weight: 700;
    color: var(--secondary-color);
    margin: 0 0 15px;
    line-height: 1.3;
}

.faq-page-description {
    font-size: 16px;
    color: var(--text-color);
    line-height: 1.6;
    max-width: 700px;
    margin: 0 auto;
}

.faq-page-content {
    max-width: 900px;
    margin: 0 auto;
}

.faq-page-list {
    position: relative;
    padding-left: 0;
}

.faq-page-list::before {
    display: none;
}

.faq-page-item {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    margin-bottom: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-page-item:hover {
    border-color: var(--primary-color);
    box-shadow: 0 2px 8px rgba(39, 113, 235, 0.1);
}

.faq-page-item.active {
    border-color: var(--primary-color);
    box-shadow: 0 4px 12px rgba(39, 113, 235, 0.15);
}

.faq-page-question {
    width: 100%;
    padding: 20px 24px;
    background: none;
    border: none;
    text-align: left;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 16px;
    font-family: inherit;
    transition: background 0.3s ease;
}

.faq-page-question:hover {
    background: #f9fafb;
}

.faq-page-item.active .faq-page-question {
    background: #f0f4ff;
}

.faq-page-icon {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary-color);
    color: #fff;
    border-radius: 4px;
    font-size: 18px;
    font-weight: 700;
    line-height: 1;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.faq-page-item.active .faq-page-icon {
    background: var(--secondary-color);
    transform: rotate(45deg);
}

.faq-page-question-text {
    font-size: 16px;
    font-weight: 600;
    color: var(--secondary-color);
    line-height: 1.5;
    flex: 1;
}

.faq-page-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease, opacity 0.3s ease;
    opacity: 0;
    padding: 0 24px;
}

.faq-page-item.active .faq-page-answer {
    max-height: 1000px;
    padding: 0 24px 24px 64px;
    opacity: 1;
}

.faq-page-answer p {
    font-size: 15px;
    color: var(--text-color);
    line-height: 1.7;
    margin: 0;
}

.faq-empty {
    text-align: center;
    padding: 60px 20px;
    color: var(--text-color);
    font-size: 16px;
}

@media (max-width: 768px) {
    .page-hero-section {
        padding: 0;
        margin-top: -10px;
        min-height: 180px;
    }

    .page-hero-section .container {
        padding: 40px 8px;
    }

    .page-hero-content {
        padding: 0;
    }

    .page-hero-breadcrumb {
        margin-bottom: 15px;
        gap: 10px;
    }

    .page-hero-title {
        font-size: 24px;
        margin-bottom: 15px;
    }

    .page-hero-description {
        font-size: 14px;
    }

    .page-hero-breadcrumb .breadcrumb-current {
        font-size: 13px;
    }

    .page-hero-breadcrumb .breadcrumb-home {
        width: 28px;
        height: 28px;
    }

    .page-hero-breadcrumb .breadcrumb-home svg {
        width: 16px;
        height: 16px;
    }

    .page-hero-breadcrumb .breadcrumb-separator {
        width: 5px;
        height: 5px;
    }

    .page-hero-breadcrumb .breadcrumb-current {
        font-size: 14px;
    }

    .breadcrumb-section {
        padding: 15px 0;
        margin-top: 0; /* Mobilde header yüksekliği farklı */
    }

    .breadcrumb {
        gap: 10px;
    }

    .breadcrumb-home {
        width: 28px;
        height: 28px;
    }

    .breadcrumb-home svg {
        width: 16px;
        height: 16px;
    }

    .breadcrumb-separator {
        width: 5px;
        height: 5px;
    }

    .breadcrumb-current {
        font-size: 13px;
    }

    .faq-page-section {
        padding: 40px 0 60px;
    }

    .faq-page-header {
        margin-bottom: 40px;
    }

    .faq-page-title {
        font-size: 24px;
        margin-bottom: 12px;
    }

    .faq-page-description {
        font-size: 15px;
    }

    .faq-page-question {
        padding: 16px 20px;
        gap: 12px;
    }

    .faq-page-icon {
        width: 22px;
        height: 22px;
        font-size: 16px;
    }

    .faq-page-question-text {
        font-size: 15px;
    }

    .faq-page-item.active .faq-page-answer {
        padding: 0 20px 20px 54px;
    }

    .faq-page-answer p {
        font-size: 14px;
    }
}

/* İletişim Sayfası Stilleri */
.contact-info-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 24px;
    margin-bottom: 60px;
}

.contact-info-card {
    background: #fff;
    border-radius: 12px;
    padding: 24px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.contact-info-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
}

.contact-card-icon {
    width: 48px;
    height: 48px;
    min-width: 48px;
    background: var(--primary-color);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    flex-shrink: 0;
}

.contact-card-icon.whatsapp-icon {
    background: #25D366;
}

.contact-card-icon svg,
.contact-card-icon i {
    width: 24px;
    height: 24px;
    font-size: 24px;
    line-height: 1;
}

.contact-card-content {
    flex: 1;
}

.contact-card-title {
    font-size: 16px;
    font-weight: 600;
    color: var(--secondary-color);
    margin: 0 0 8px 0;
}

.contact-card-text {
    font-size: 15px;
    color: var(--text-color);
    margin: 0;
    line-height: 1.6;
}

.contact-card-text a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

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

.contact-form-map-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-top: 40px;
}

.contact-section-title {
    font-size: 20px !important;
    font-weight: 700;
    color: var(--secondary-color);
    margin-top: 0;
    margin-bottom: 24px;
    padding-bottom: 12px;
    border-bottom: 1px solid #e5e7eb;
    line-height: 1.4;
}

.contact-form-section {
    background: #fff;
    border-radius: 12px;
    padding: 32px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-form .form-group {
    position: relative;
    display: flex;
    align-items: center;
}

.contact-form .form-icon {
    position: absolute;
    left: 16px;
    color: var(--text-color);
    z-index: 1;
    pointer-events: none;
}

.contact-form .form-icon svg {
    width: 20px;
    height: 20px;
}

.contact-form .form-group input,
.contact-form .form-group textarea {
    width: 100%;
    padding: 14px 16px 14px 48px;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    font-size: 15px;
    font-family: 'Inter', sans-serif;
    color: var(--secondary-color);
    background: #fff;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.contact-form .form-group input:focus,
.contact-form .form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(39, 113, 235, 0.1);
}

.contact-form .form-group input::placeholder,
.contact-form .form-group textarea::placeholder {
    color: #9ca3af;
}

.contact-form .form-group-textarea .form-icon {
    top: 16px;
    align-self: flex-start;
}

.contact-form .form-group-textarea textarea {
    resize: vertical;
    min-height: 120px;
}

.contact-form-submit {
    background: var(--primary-color);
    color: #fff;
    border: none;
    border-radius: 8px;
    padding: 14px 24px;
    font-size: 16px;
    font-weight: 600;
    font-family: 'Inter', sans-serif;
    cursor: pointer;
    transition: background 0.3s ease, transform 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 8px;
}

.contact-form-submit:hover {
    background: #1e5fd4;
    transform: translateY(-2px);
}

.contact-form-submit:active {
    transform: translateY(0);
}

.contact-form-submit svg {
    width: 20px;
    height: 20px;
}

.contact-map-section {
    background: #fff;
    border-radius: 12px;
    padding: 32px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.contact-map-wrapper {
    border-radius: 12px;
    overflow: hidden;
}

.contact-map-wrapper iframe {
    width: 100%;
    height: 450px;
    border: 0;
    border-radius: 12px;
}

/* İletişim Sayfası Mobil Responsive */
@media (max-width: 768px) {
    .contact-info-cards {
        grid-template-columns: 1fr;
        gap: 16px;
        margin-bottom: 40px;
    }

    .contact-info-card {
        padding: 20px;
    }

    .contact-card-icon {
        width: 40px;
        height: 40px;
        min-width: 40px;
    }

    .contact-card-icon svg {
        width: 20px;
        height: 20px;
    }

    .contact-card-title {
        font-size: 15px;
    }

    .contact-card-text {
        font-size: 14px;
    }

    .contact-form-map-wrapper {
        grid-template-columns: 1fr;
        gap: 30px;
        margin-top: 30px;
    }

    .contact-section-title {
        font-size: 18px !important;
        margin-bottom: 20px;
    }

    .contact-form-section,
    .contact-map-section {
        padding: 24px;
    }

    .contact-form {
        gap: 16px;
    }

    .contact-form .form-group input,
    .contact-form .form-group textarea {
        padding: 12px 14px 12px 44px;
        font-size: 14px;
    }

    .contact-form .form-icon {
        left: 14px;
    }

    .contact-form .form-icon svg {
        width: 18px;
        height: 18px;
    }

    .contact-form-submit {
        padding: 12px 20px;
        font-size: 15px;
    }

    .contact-map-wrapper iframe {
        height: 350px;
    }
}


/* ============================================
   404 Error Page Styles - Minimal & Modern
   ============================================ */
.error-404-wrapper {
    min-height: calc(100vh - 200px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 80px 20px;
}

.error-404-content {
    text-align: center;
    max-width: 480px;
    width: 100%;
}

.error-404-number {
    font-size: 140px;
    font-weight: 300;
    line-height: 1;
    color: #e5e7eb;
    margin: 0 0 24px;
    letter-spacing: -4px;
}

.error-404-title {
    font-size: 28px;
    font-weight: 600;
    color: #111827;
    margin: 0 0 12px;
    line-height: 1.3;
}

.error-404-message {
    font-size: 16px;
    color: #6b7280;
    margin: 0 0 32px;
    line-height: 1.6;
    font-weight: 400;
}

.error-404-btn {
    display: inline-block;
    padding: 10px 20px;
    background: #111827;
    color: #ffffff;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 500;
    font-size: 14px;
    transition: background-color 0.2s ease;
    border: none;
}

.error-404-btn:hover {
    background: #374151;
}

@media (max-width: 768px) {
    .error-404-wrapper {
        padding: 60px 16px;
        min-height: calc(100vh - 160px);
    }

    .error-404-number {
        font-size: 100px;
        letter-spacing: -2px;
        margin-bottom: 20px;
    }

    .error-404-title {
        font-size: 24px;
    }

    .error-404-message {
        font-size: 15px;
        margin-bottom: 28px;
    }

    .error-404-btn {
        padding: 9px 18px;
        font-size: 13px;
    }
}

/* Member card contact buttons (WhatsApp + Phone) - görsele göre */
.member-card-ny-contacts {
    display: flex;
    gap: 8px;
    align-items: center;
    width: 100%;
    margin-top: 12px;
    align-items: flex-end;
}

.member-card-ny-whatsapp {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 10px;
    background: #f3f4f6;
    color: #25d366;
    text-decoration: none;
    font-size: 20px;
    transition: all 0.2s ease;
    flex-shrink: 0;
}

.member-card-ny-whatsapp:hover {
    background: #e5e7eb;
    transform: translateY(-2px);
}

.member-card-ny-whatsapp i {
    color: #25d366;
}

.member-card-ny-call {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 10px;
    border-radius: 10px;
    background: var(--primary-color);
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.2s ease;
    flex: 1;
    white-space: nowrap;
    min-width: 0;
}

.member-card-ny-call:hover {
    background: var(--primary-color);
    opacity: 0.9;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(var(--primary-color-rgb), 0.3);
}

.member-card-ny-call i {
    font-size: 18px;
    line-height: 1;
    flex-shrink: 0;
}

.member-card-ny-phone-text {
    font-weight: 600;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

@media (max-width: 768px) {
    .member-card-ny {
        gap: 16px;
        padding: 14px 16px;
    }
    
    .member-card-ny-avatar {
        width: 80px;
        height: 80px;
        flex: 0 0 80px;
    }
    
    .member-card-ny-title {
        font-size: 18px;
    }
    
    .member-card-ny-contacts {
        gap: 8px;
    }
    
    .member-card-ny-whatsapp {
        width: 10%;
        height: 40px;
        font-size: 18px;
    }
    
    .member-card-ny-call {
        width: 90%;
        padding: 10px;
        font-size: 14px;
    }
    
    .member-card-ny-call i {
        font-size: 16px;
    }
}
