/*!
 * Dikili Çekici Theme - Main Stylesheet v2.0
 * Tüm sınıflar HTML şablonlarıyla birebir uyumludur.
 */

/* ==========================================================================
   1. CSS Variables & Reset
   ========================================================================== */
:root {
    --dc-red: #DC2626;
    --dc-red-dark: #B91C1C;
    --dc-red-light: #EF4444;
    --dc-black: #0A0A0A;
    --dc-dark: #1A1A1A;
    --dc-gray-900: #111827;
    --dc-gray-800: #1F2937;
    --dc-gray-700: #374151;
    --dc-gray-600: #4B5563;
    --dc-gray-500: #6B7280;
    --dc-gray-400: #9CA3AF;
    --dc-gray-300: #D1D5DB;
    --dc-gray-200: #E5E7EB;
    --dc-gray-100: #F3F4F6;
    --dc-gray-50:  #F9FAFB;
    --dc-white: #FFFFFF;
    --dc-yellow: #FBBF24;
    --dc-green: #25D366;
    --dc-green-dark: #1FAE53;

    --dc-font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --dc-display: 'Bebas Neue', 'Inter', sans-serif;

    --dc-radius: 8px;
    --dc-radius-lg: 16px;
    --dc-radius-xl: 24px;
    --dc-shadow-sm: 0 1px 2px rgba(0,0,0,0.05);
    --dc-shadow: 0 4px 6px -1px rgba(0,0,0,0.1), 0 2px 4px -1px rgba(0,0,0,0.06);
    --dc-shadow-lg: 0 10px 15px -3px rgba(0,0,0,0.1), 0 4px 6px -2px rgba(0,0,0,0.05);
    --dc-shadow-xl: 0 20px 25px -5px rgba(0,0,0,0.1), 0 10px 10px -5px rgba(0,0,0,0.04);

    --dc-container: 1200px;
    --dc-transition: 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

*, *::before, *::after { box-sizing: border-box; }

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    margin: 0;
    font-family: var(--dc-font);
    font-size: 16px;
    line-height: 1.65;
    color: var(--dc-gray-800);
    background: var(--dc-white);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

img, svg, video {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: var(--dc-red);
    text-decoration: none;
    transition: color var(--dc-transition);
}
a:hover { color: var(--dc-red-dark); }

h1, h2, h3, h4, h5, h6 {
    font-family: var(--dc-display);
    font-weight: 700;
    line-height: 1.15;
    margin: 0 0 16px;
    color: var(--dc-black);
    letter-spacing: 0.02em;
}

h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.6rem, 4vw, 2.6rem); }
h3 { font-size: clamp(1.25rem, 3vw, 1.75rem); }
h4 { font-size: 1.25rem; font-family: var(--dc-font); letter-spacing: 0; }

p { margin: 0 0 16px; }
ul, ol { padding-left: 1.4em; margin: 0 0 16px; }
button { font-family: inherit; cursor: pointer; }

.skip-link {
    position: absolute; top: -100px; left: 0;
    background: var(--dc-black); color: var(--dc-white);
    padding: 12px 20px; z-index: 9999;
}
.skip-link:focus { top: 0; }

.screen-reader-text {
    position: absolute; width: 1px; height: 1px;
    padding: 0; margin: -1px; overflow: hidden;
    clip: rect(0,0,0,0); border: 0;
}

.container {
    max-width: var(--dc-container);
    margin: 0 auto;
    padding: 0 20px;
}

/* ==========================================================================
   2. Buttons
   ========================================================================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 28px;
    font-weight: 700;
    font-size: 1rem;
    border-radius: var(--dc-radius);
    border: 2px solid transparent;
    transition: all var(--dc-transition);
    cursor: pointer;
    text-decoration: none;
    white-space: nowrap;
    line-height: 1.1;
    font-family: var(--dc-font);
}

.btn-primary {
    background: var(--dc-red);
    color: var(--dc-white);
    box-shadow: 0 4px 14px rgba(220, 38, 38, 0.35);
}
.btn-primary:hover {
    background: var(--dc-red-dark);
    color: var(--dc-white);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(220, 38, 38, 0.45);
}

.btn-secondary {
    background: var(--dc-black);
    color: var(--dc-white);
}
.btn-secondary:hover {
    background: var(--dc-gray-800);
    color: var(--dc-white);
    transform: translateY(-2px);
}

.btn-whatsapp {
    background: var(--dc-green);
    color: var(--dc-white);
    box-shadow: 0 4px 14px rgba(37, 211, 102, 0.35);
}
.btn-whatsapp:hover {
    background: var(--dc-green-dark);
    color: var(--dc-white);
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    color: var(--dc-black);
    border-color: var(--dc-gray-300);
}
.btn-outline:hover {
    background: var(--dc-black);
    color: var(--dc-white);
    border-color: var(--dc-black);
}

.btn-large { padding: 18px 36px; font-size: 1.1rem; }
.btn-sm { padding: 10px 18px; font-size: 0.9rem; }

/* ==========================================================================
   3. Emergency Top Bar
   ========================================================================== */
.emergency-bar {
    background: linear-gradient(90deg, var(--dc-red) 0%, var(--dc-red-dark) 100%);
    color: var(--dc-white);
    padding: 8px 0;
    font-size: 0.9rem;
    font-weight: 500;
}

.emergency-bar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}

.emergency-text { display: inline-block; }

.emergency-call {
    color: var(--dc-white);
    font-weight: 700;
    text-decoration: underline;
    white-space: nowrap;
}
.emergency-call:hover { color: var(--dc-white); opacity: 0.9; }

/* ==========================================================================
   4. Site Header
   ========================================================================== */
.site-header {
    background: var(--dc-white);
    padding: 14px 0;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: var(--dc-shadow-sm);
    border-bottom: 1px solid var(--dc-gray-100);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.site-branding { flex-shrink: 0; }

.site-title-link {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    color: var(--dc-black);
    text-decoration: none;
}

.site-title-link:hover { color: var(--dc-red); }

.site-default-logo,
.custom-logo {
    width: 56px;
    height: 56px;
    object-fit: contain;
    flex-shrink: 0;
}

.site-title-text {
    display: flex;
    flex-direction: column;
    line-height: 1;
}

.site-title {
    font-family: var(--dc-display);
    font-size: 1.5rem;
    color: inherit;
    letter-spacing: 0.04em;
    line-height: 1;
}

.site-tagline {
    font-size: 0.75rem;
    color: var(--dc-gray-500);
    margin-top: 4px;
    font-family: var(--dc-font);
    letter-spacing: 0.05em;
}

/* Main nav */
.main-navigation {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.primary-menu {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: 4px;
    align-items: center;
}

.primary-menu li { margin: 0; }

.primary-menu a {
    color: var(--dc-gray-800);
    font-weight: 500;
    padding: 10px 16px;
    border-radius: var(--dc-radius);
    transition: all var(--dc-transition);
    font-size: 0.95rem;
}

.primary-menu a:hover,
.primary-menu .current-menu-item > a,
.primary-menu .current_page_item > a {
    color: var(--dc-red);
    background: rgba(220, 38, 38, 0.08);
}

/* Hamburger */
.menu-toggle {
    display: none;
    background: var(--dc-black);
    color: var(--dc-white);
    border: 0;
    padding: 0;
    width: 44px;
    height: 44px;
    border-radius: var(--dc-radius);
    cursor: pointer;
    align-items: center;
    justify-content: center;
}

.hamburger {
    display: inline-block;
    width: 22px;
    height: 2px;
    background: var(--dc-white);
    position: relative;
}

.hamburger::before,
.hamburger::after {
    content: "";
    position: absolute;
    left: 0;
    width: 22px;
    height: 2px;
    background: var(--dc-white);
    transition: transform var(--dc-transition), top var(--dc-transition);
}

.hamburger::before { top: -7px; }
.hamburger::after  { top: 7px; }

.menu-toggle[aria-expanded="true"] .hamburger { background: transparent; }
.menu-toggle[aria-expanded="true"] .hamburger::before { top: 0; transform: rotate(45deg); }
.menu-toggle[aria-expanded="true"] .hamburger::after  { top: 0; transform: rotate(-45deg); }

.header-cta {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
}

.btn-call-header {
    padding: 12px 22px;
    font-size: 0.95rem;
}

/* Page header band (breadcrumb) */
.page-header-band {
    background: var(--dc-gray-50);
    padding: 16px 0;
    border-bottom: 1px solid var(--dc-gray-100);
}

.breadcrumbs { font-size: 0.875rem; color: var(--dc-gray-600); }
.breadcrumbs a { color: var(--dc-gray-700); }
.breadcrumbs .separator { margin: 0 8px; color: var(--dc-gray-400); }
.breadcrumbs .current { color: var(--dc-black); font-weight: 600; }

/* ==========================================================================
   5. Hero Section
   ========================================================================== */
.hero {
    position: relative;
    min-height: 600px;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, var(--dc-black) 0%, var(--dc-gray-900) 100%);
    background-size: cover;
    background-position: center;
    color: var(--dc-white);
    overflow: hidden;
    padding: 80px 0;
}

.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 70% 50%, rgba(220, 38, 38, 0.25) 0%, transparent 60%);
    z-index: 1;
}

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

.hero-content { max-width: 760px; }

.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(220, 38, 38, 0.2);
    color: var(--dc-white);
    padding: 8px 18px;
    border-radius: 999px;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    margin-bottom: 24px;
    border: 1px solid rgba(220, 38, 38, 0.4);
}

.hero-title {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    color: var(--dc-white);
    margin-bottom: 20px;
    line-height: 1.05;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: var(--dc-gray-300);
    margin-bottom: 32px;
    max-width: 600px;
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-bottom: 40px;
}

/* trust strip in hero */
.hero-trust {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-top: 40px;
    padding-top: 32px;
    border-top: 1px solid rgba(255,255,255,0.12);
}

.trust-item {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.trust-item strong {
    font-family: var(--dc-display);
    font-size: 2.2rem;
    color: var(--dc-red-light);
    line-height: 1;
    letter-spacing: 0.02em;
    font-weight: 700;
}

.trust-item span {
    font-size: 0.8rem;
    color: var(--dc-gray-400);
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-weight: 500;
}

/* ==========================================================================
   6. Quick Services Strip
   ========================================================================== */
.quick-services {
    background: var(--dc-black);
    padding: 28px 0;
    color: var(--dc-white);
    border-bottom: 3px solid var(--dc-red);
}

.quick-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 24px;
}

.quick-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 8px;
    color: var(--dc-white);
    padding: 8px 4px;
    border-radius: var(--dc-radius);
    transition: background var(--dc-transition);
}

.quick-item:hover { background: rgba(255,255,255,0.05); }

.quick-item span {
    font-size: 1.8rem;
    line-height: 1;
}

.quick-item strong {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--dc-white);
}

/* ==========================================================================
   7. Section Heads
   ========================================================================== */
.section-head {
    text-align: center;
    max-width: 760px;
    margin: 0 auto 56px;
}

.section-eyebrow {
    display: inline-block;
    color: var(--dc-red);
    font-weight: 700;
    font-size: 0.85rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    margin-bottom: 12px;
    font-family: var(--dc-font);
}

.section-head h2 {
    margin-bottom: 16px;
}

.section-head p {
    color: var(--dc-gray-600);
    font-size: 1.05rem;
    margin: 0;
}

.section-foot {
    text-align: center;
    margin-top: 48px;
}

/* ==========================================================================
   8. Services Section
   ========================================================================== */
.services-section {
    padding: 96px 0;
    background: var(--dc-white);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.service-card {
    background: var(--dc-white);
    border: 1px solid var(--dc-gray-200);
    border-radius: var(--dc-radius-lg);
    padding: 32px 24px;
    transition: all var(--dc-transition);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: "";
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 4px;
    background: var(--dc-red);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform var(--dc-transition);
}

.service-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--dc-shadow-xl);
    border-color: var(--dc-red);
}

.service-card:hover::before { transform: scaleX(1); }

.service-icon {
    width: 64px;
    height: 64px;
    border-radius: var(--dc-radius);
    background: rgba(220, 38, 38, 0.1);
    color: var(--dc-red);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    margin-bottom: 20px;
}

.service-title {
    font-size: 1.25rem;
    margin-bottom: 12px;
    line-height: 1.3;
}

.service-title a {
    color: var(--dc-black);
    text-decoration: none;
}

.service-title a:hover { color: var(--dc-red); }

.service-desc {
    color: var(--dc-gray-600);
    font-size: 0.95rem;
    margin-bottom: 16px;
}

.service-link {
    color: var(--dc-red);
    font-weight: 600;
    font-size: 0.9rem;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    transition: gap var(--dc-transition);
}

.service-card:hover .service-link { gap: 8px; }

/* ==========================================================================
   9. Why Us Section
   ========================================================================== */
.why-us {
    background: linear-gradient(135deg, var(--dc-gray-50) 0%, var(--dc-white) 100%);
    padding: 96px 0;
}

.why-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 64px;
    align-items: center;
}

.why-content .section-eyebrow { margin-bottom: 12px; }

.why-content h2 {
    margin-bottom: 16px;
    text-align: left;
}

.why-content .lead {
    font-size: 1.1rem;
    color: var(--dc-gray-600);
    margin-bottom: 32px;
    line-height: 1.7;
}

.features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin-bottom: 32px;
}

.feature {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    padding: 20px;
    background: var(--dc-white);
    border-radius: var(--dc-radius-lg);
    box-shadow: var(--dc-shadow-sm);
    border: 1px solid var(--dc-gray-100);
    transition: all var(--dc-transition);
}

.feature:hover {
    transform: translateY(-3px);
    box-shadow: var(--dc-shadow);
    border-color: var(--dc-red);
}

.feature-ico {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--dc-black);
    color: var(--dc-white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    flex-shrink: 0;
}

.feature h4 {
    margin: 0 0 6px;
    font-size: 1.05rem;
    color: var(--dc-black);
    font-family: var(--dc-font);
    font-weight: 700;
}

.feature p {
    margin: 0;
    color: var(--dc-gray-600);
    font-size: 0.9rem;
    line-height: 1.5;
}

.why-cta { margin-top: 24px; }

/* visual cards on right side */
.why-visual {
    position: relative;
    display: grid;
    gap: 20px;
}

.why-card {
    background: var(--dc-white);
    border-radius: var(--dc-radius-xl);
    padding: 32px;
    box-shadow: var(--dc-shadow-lg);
    border: 1px solid var(--dc-gray-100);
    text-align: center;
    transition: all var(--dc-transition);
    position: relative;
    overflow: hidden;
}

.why-card::before {
    content: "";
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 5px;
    background: linear-gradient(90deg, var(--dc-red), var(--dc-red-dark));
}

.why-card:hover { transform: translateX(-4px); box-shadow: var(--dc-shadow-xl); }

.why-card-2 { margin-left: 32px; }
.why-card-3 { margin-left: 64px; }

.why-card-num {
    font-family: var(--dc-display);
    font-size: 3.5rem;
    color: var(--dc-red);
    line-height: 1;
    margin-bottom: 8px;
    letter-spacing: 0.02em;
}

.why-card-num small {
    font-size: 1.5rem;
    color: var(--dc-gray-500);
    margin-left: 4px;
}

.why-card-text {
    color: var(--dc-gray-700);
    font-size: 0.95rem;
    font-weight: 500;
}

/* ==========================================================================
   10. Areas Section
   ========================================================================== */
.areas-section {
    padding: 96px 0;
    background: var(--dc-gray-50);
}

.areas-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.area-card {
    background: var(--dc-white);
    padding: 22px 24px;
    border-radius: var(--dc-radius-lg);
    border-left: 4px solid var(--dc-red);
    box-shadow: var(--dc-shadow-sm);
    transition: all var(--dc-transition);
    display: flex;
    align-items: center;
    gap: 14px;
    text-decoration: none;
    color: var(--dc-gray-800);
}

.area-card:hover {
    transform: translateX(4px);
    box-shadow: var(--dc-shadow-lg);
    color: var(--dc-red);
}

.area-pin {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(220, 38, 38, 0.1);
    color: var(--dc-red);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.area-name {
    flex: 1;
    font-weight: 600;
    font-size: 1rem;
}

.area-arrow {
    color: var(--dc-red);
    font-size: 1.2rem;
    font-weight: 700;
    transition: transform var(--dc-transition);
}

.area-card:hover .area-arrow { transform: translateX(4px); }

/* ==========================================================================
   11. Reviews Section
   ========================================================================== */
.reviews-section {
    padding: 96px 0;
    background: var(--dc-white);
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.review-card {
    background: var(--dc-white);
    padding: 28px;
    border-radius: var(--dc-radius-lg);
    box-shadow: var(--dc-shadow);
    border: 1px solid var(--dc-gray-100);
    position: relative;
    transition: all var(--dc-transition);
}

.review-card:hover { transform: translateY(-4px); box-shadow: var(--dc-shadow-xl); }

.review-card::before {
    content: "\201C";
    position: absolute;
    top: 14px;
    right: 24px;
    font-size: 4.5rem;
    color: var(--dc-red);
    opacity: 0.13;
    line-height: 1;
    font-family: Georgia, serif;
}

.review-stars {
    color: var(--dc-yellow);
    font-size: 1.1rem;
    margin-bottom: 12px;
    letter-spacing: 2px;
    display: block;
}

.review-title {
    font-size: 1.05rem;
    margin: 0 0 12px;
    color: var(--dc-black);
    font-family: var(--dc-font);
    font-weight: 700;
}

.review-text {
    color: var(--dc-gray-700);
    font-style: italic;
    margin-bottom: 16px;
    line-height: 1.65;
    font-size: 0.95rem;
}
.review-text p:last-child { margin-bottom: 0; }

.review-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    padding-top: 14px;
    border-top: 1px solid var(--dc-gray-100);
    font-size: 0.85rem;
    color: var(--dc-gray-500);
}

/* ==========================================================================
   12. FAQ Section
   ========================================================================== */
.faq-section {
    padding: 96px 0;
    background: var(--dc-gray-50);
}

.faq-list {
    max-width: 820px;
    margin: 0 auto;
}

.faq-item {
    background: var(--dc-white);
    border-radius: var(--dc-radius);
    margin-bottom: 12px;
    box-shadow: var(--dc-shadow-sm);
    overflow: hidden;
    border: 1px solid var(--dc-gray-100);
    transition: border-color var(--dc-transition);
}

.faq-item[open] { border-color: var(--dc-red); }

.faq-item summary {
    padding: 18px 24px;
    cursor: pointer;
    font-weight: 600;
    color: var(--dc-black);
    display: flex;
    justify-content: space-between;
    align-items: center;
    list-style: none;
    transition: background var(--dc-transition);
    font-size: 1rem;
}

.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::marker { display: none; content: ""; }

.faq-item summary::after {
    content: "+";
    font-size: 1.6rem;
    color: var(--dc-red);
    font-weight: 300;
    transition: transform var(--dc-transition);
    line-height: 1;
    flex-shrink: 0;
    margin-left: 16px;
}

.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item summary:hover { background: var(--dc-gray-50); }

.faq-answer {
    padding: 0 24px 20px;
    color: var(--dc-gray-700);
    line-height: 1.7;
    font-size: 0.95rem;
}

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

/* ==========================================================================
   13. Map & Contact Section
   ========================================================================== */
.map-contact-section {
    padding: 96px 0;
    background: var(--dc-white);
}

.map-contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 40px;
    align-items: stretch;
}

.contact-info {
    background: var(--dc-black);
    color: var(--dc-white);
    padding: 40px;
    border-radius: var(--dc-radius-lg);
}

.contact-info h3 {
    color: var(--dc-white);
    margin-bottom: 24px;
    font-family: var(--dc-display);
    font-size: 1.6rem;
}

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

.contact-list li {
    display: flex;
    gap: 14px;
    padding: 14px 0;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    align-items: flex-start;
}

.contact-list li:last-child { border-bottom: 0; padding-bottom: 0; }

.contact-list .ico {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--dc-red);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 1.05rem;
}

.contact-list strong {
    display: block;
    font-size: 0.78rem;
    color: var(--dc-gray-400);
    text-transform: uppercase;
    letter-spacing: 0.12em;
    margin-bottom: 4px;
    font-weight: 600;
}

.contact-list a {
    color: var(--dc-white);
    font-weight: 500;
}

.contact-list a:hover { color: var(--dc-red-light); }

.contact-list address {
    font-style: normal;
    color: var(--dc-white);
    line-height: 1.5;
}

.contact-map {
    border-radius: var(--dc-radius-lg);
    overflow: hidden;
    min-height: 480px;
    box-shadow: var(--dc-shadow-lg);
}

.contact-map iframe {
    width: 100%;
    height: 100%;
    min-height: 480px;
    border: 0;
    display: block;
}

/* ==========================================================================
   14. CTA Band
   ========================================================================== */
.cta-band {
    background: linear-gradient(135deg, var(--dc-red) 0%, var(--dc-red-dark) 100%);
    color: var(--dc-white);
    padding: 64px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-band::before,
.cta-band::after {
    content: "";
    position: absolute;
    border-radius: 50%;
    background: rgba(255,255,255,0.05);
}

.cta-band::before { width: 300px; height: 300px; top: -100px; left: -100px; }
.cta-band::after { width: 400px; height: 400px; bottom: -150px; right: -100px; }

.cta-band .container { position: relative; z-index: 2; }

.cta-band h2 {
    color: var(--dc-white);
    margin-bottom: 12px;
}

.cta-band p {
    font-size: 1.1rem;
    margin-bottom: 28px;
    opacity: 0.95;
}

.cta-actions,
.cta-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    justify-content: center;
}

.cta-band .btn-primary {
    background: var(--dc-white);
    color: var(--dc-red);
    box-shadow: 0 4px 14px rgba(0,0,0,0.2);
}

.cta-band .btn-primary:hover {
    background: var(--dc-black);
    color: var(--dc-white);
}

/* ==========================================================================
   15. Site Footer
   ========================================================================== */
.site-footer {
    background: var(--dc-black);
    color: var(--dc-gray-300);
    padding: 64px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
    gap: 40px;
    margin-bottom: 48px;
}

.footer-col h3,
.footer-col h4 {
    color: var(--dc-white);
    font-size: 1.05rem;
    margin-bottom: 20px;
    font-family: var(--dc-font);
    font-weight: 700;
    letter-spacing: 0;
    position: relative;
    padding-bottom: 12px;
}

.footer-col h3::after,
.footer-col h4::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 36px;
    height: 3px;
    background: var(--dc-red);
}

.footer-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-col ul li { margin-bottom: 10px; }

.footer-col a {
    color: var(--dc-gray-400);
    transition: color var(--dc-transition), padding-left var(--dc-transition);
    font-size: 0.95rem;
}

.footer-col a:hover {
    color: var(--dc-red-light);
    padding-left: 4px;
}

.footer-about p {
    color: var(--dc-gray-400);
    line-height: 1.7;
    margin-bottom: 20px;
    font-size: 0.95rem;
}

.footer-social {
    display: flex;
    gap: 12px;
    margin-top: 16px;
}

.footer-social a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255,255,255,0.05);
    color: var(--dc-white);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--dc-transition);
    padding-left: 0 !important;
}

.footer-social a:hover {
    background: var(--dc-red);
    color: var(--dc-white);
    transform: translateY(-2px);
}

.footer-contact-item {
    display: flex;
    gap: 12px;
    margin-bottom: 16px;
    color: var(--dc-gray-300);
    align-items: flex-start;
    font-size: 0.95rem;
}

.footer-contact-item span:first-child {
    color: var(--dc-red-light);
    flex-shrink: 0;
}

.footer-bottom {
    padding: 24px 0;
    border-top: 1px solid rgba(255,255,255,0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
    font-size: 0.875rem;
    color: var(--dc-gray-500);
}

.footer-bottom a { color: var(--dc-gray-400); }
.footer-bottom a:hover { color: var(--dc-red-light); }

.footer-bottom-links {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

/* ==========================================================================
   16. Floating Action Buttons
   ========================================================================== */
.floating-call,
.floating-whatsapp {
    position: fixed;
    bottom: 24px;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    color: var(--dc-white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    z-index: 90;
    box-shadow: 0 8px 20px rgba(0,0,0,0.25);
    transition: transform var(--dc-transition);
    text-decoration: none;
}

.floating-call {
    right: 24px;
    background: var(--dc-red);
    animation: pulseCall 2s infinite;
}

.floating-whatsapp {
    right: 96px;
    background: var(--dc-green);
}

.floating-call:hover, .floating-whatsapp:hover {
    transform: scale(1.1);
    color: var(--dc-white);
}

@keyframes pulseCall {
    0%, 100% { box-shadow: 0 8px 20px rgba(220, 38, 38, 0.5); }
    50% { box-shadow: 0 8px 30px rgba(220, 38, 38, 0.9), 0 0 0 12px rgba(220, 38, 38, 0.15); }
}

/* ==========================================================================
   17. Posts & Archive
   ========================================================================== */
.archive-header,
.search-header,
.error-header {
    text-align: center;
    padding: 64px 0 32px;
}

.content-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
    padding: 48px 0;
}

.post-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.post-card {
    background: var(--dc-white);
    border-radius: var(--dc-radius-lg);
    overflow: hidden;
    box-shadow: var(--dc-shadow);
    transition: all var(--dc-transition);
    border: 1px solid var(--dc-gray-100);
}

.post-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--dc-shadow-xl);
}

.post-card-thumb {
    aspect-ratio: 16/10;
    overflow: hidden;
    background: var(--dc-gray-100);
}

.post-card-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.post-card:hover .post-card-thumb img { transform: scale(1.05); }

.post-card-body { padding: 22px; }

.post-card h2, .post-card h3 {
    font-size: 1.2rem;
    margin-bottom: 8px;
    line-height: 1.3;
}

.post-card h2 a, .post-card h3 a { color: var(--dc-black); }
.post-card h2 a:hover, .post-card h3 a:hover { color: var(--dc-red); }

.post-meta {
    font-size: 0.85rem;
    color: var(--dc-gray-500);
    margin-bottom: 12px;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    align-items: center;
}

.post-meta .sep { color: var(--dc-gray-300); }

.post-card-excerpt {
    color: var(--dc-gray-600);
    font-size: 0.95rem;
}

.post-type-badge {
    display: inline-block;
    background: var(--dc-red);
    color: var(--dc-white);
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    padding: 4px 10px;
    border-radius: 999px;
    margin-bottom: 8px;
    font-weight: 700;
}

/* ==========================================================================
   18. Single Post
   ========================================================================== */
.single-article {
    max-width: 820px;
    margin: 0 auto;
    padding: 64px 0;
}

.single-article .entry-header {
    text-align: center;
    margin-bottom: 40px;
}

.single-article .entry-title {
    margin-bottom: 16px;
}

.single-article .entry-meta {
    font-size: 0.95rem;
    color: var(--dc-gray-500);
    display: flex;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
}

.single-article .featured-image {
    margin-bottom: 32px;
    border-radius: var(--dc-radius-lg);
    overflow: hidden;
}

.entry-content {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--dc-gray-800);
}

.entry-content h2, .entry-content h3 { margin-top: 36px; }

.entry-content img {
    border-radius: var(--dc-radius);
    margin: 24px 0;
}

.entry-content blockquote {
    border-left: 4px solid var(--dc-red);
    background: var(--dc-gray-50);
    padding: 20px 24px;
    margin: 24px 0;
    font-style: italic;
    border-radius: 0 var(--dc-radius) var(--dc-radius) 0;
}

.single-cta {
    background: var(--dc-black);
    color: var(--dc-white);
    padding: 32px;
    border-radius: var(--dc-radius-lg);
    margin: 40px 0;
    text-align: center;
}

.single-cta h3 { color: var(--dc-white); margin-bottom: 12px; }
.single-cta p { color: var(--dc-gray-300); margin-bottom: 20px; }

.single-cta-actions {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
}

.service-icon-large {
    width: 96px;
    height: 96px;
    border-radius: var(--dc-radius-lg);
    background: rgba(220, 38, 38, 0.1);
    color: var(--dc-red);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    margin: 0 auto 24px;
}

/* ==========================================================================
   19. Sidebar / Widgets
   ========================================================================== */
.sidebar {
    align-self: start;
    position: sticky;
    top: 100px;
}

.widget {
    background: var(--dc-white);
    padding: 22px;
    border-radius: var(--dc-radius-lg);
    margin-bottom: 22px;
    box-shadow: var(--dc-shadow-sm);
    border: 1px solid var(--dc-gray-100);
}

.widget-title {
    font-size: 1.05rem;
    margin-bottom: 16px;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--dc-red);
    font-family: var(--dc-font);
    font-weight: 700;
    letter-spacing: 0;
}

.widget ul { list-style: none; padding: 0; margin: 0; }

.widget li {
    padding: 8px 0;
    border-bottom: 1px solid var(--dc-gray-100);
}

.widget li:last-child { border-bottom: 0; }
.widget li a { color: var(--dc-gray-700); }
.widget li a:hover { color: var(--dc-red); }

.sidebar-cta {
    background: linear-gradient(135deg, var(--dc-red) 0%, var(--dc-red-dark) 100%);
    color: var(--dc-white);
    padding: 24px;
    border-radius: var(--dc-radius-lg);
    text-align: center;
    margin-bottom: 22px;
}

.sidebar-cta h3 { color: var(--dc-white); margin-bottom: 8px; }

.sidebar-cta p {
    margin-bottom: 16px;
    opacity: 0.95;
    font-size: 0.95rem;
}

.sidebar-cta .btn {
    background: var(--dc-white);
    color: var(--dc-red);
    width: 100%;
}

.sidebar-cta .btn:hover {
    background: var(--dc-black);
    color: var(--dc-white);
}

/* ==========================================================================
   20. Search & Comments
   ========================================================================== */
.search-form {
    display: flex;
    gap: 8px;
    max-width: 480px;
    margin: 0 auto;
}

.search-form input[type="search"] {
    flex: 1;
    padding: 12px 16px;
    border: 1px solid var(--dc-gray-300);
    border-radius: var(--dc-radius);
    font-family: inherit;
    font-size: 1rem;
}

.search-form input[type="search"]:focus {
    outline: none;
    border-color: var(--dc-red);
    box-shadow: 0 0 0 3px rgba(220, 38, 38, 0.15);
}

.search-form button {
    background: var(--dc-red);
    color: var(--dc-white);
    border: 0;
    padding: 12px 20px;
    border-radius: var(--dc-radius);
    font-weight: 600;
    cursor: pointer;
}

.comments-area {
    max-width: 820px;
    margin: 48px auto 0;
    padding: 32px 0;
    border-top: 1px solid var(--dc-gray-200);
}

.comments-title { margin-bottom: 24px; }

.comment-list {
    list-style: none;
    padding: 0;
    margin: 0 0 32px;
}

.comment {
    padding: 20px 0;
    border-bottom: 1px solid var(--dc-gray-100);
}

.comment-author { font-weight: 600; color: var(--dc-black); }

.comment-meta {
    font-size: 0.85rem;
    color: var(--dc-gray-500);
    margin-bottom: 8px;
}

.comment-respond textarea,
.comment-respond input[type="text"],
.comment-respond input[type="email"],
.comment-respond input[type="url"] {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid var(--dc-gray-300);
    border-radius: var(--dc-radius);
    font-family: inherit;
    font-size: 1rem;
    margin-bottom: 12px;
}

/* ==========================================================================
   21. 404
   ========================================================================== */
.error-404 {
    padding: 80px 0;
    text-align: center;
}

.error-icon { font-size: 5rem; margin-bottom: 24px; }

.error-404 .error-title {
    font-size: clamp(3rem, 8vw, 5rem);
    margin-bottom: 16px;
}

.error-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    margin: 32px 0 48px;
    flex-wrap: wrap;
}

.popular-services-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    max-width: 800px;
    margin: 32px auto 0;
}

.popular-services-list a {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 14px 16px;
    background: var(--dc-white);
    border: 1px solid var(--dc-gray-200);
    border-radius: var(--dc-radius);
    color: var(--dc-gray-800);
    font-weight: 500;
    transition: all var(--dc-transition);
}

.popular-services-list a:hover {
    border-color: var(--dc-red);
    background: rgba(220, 38, 38, 0.04);
    color: var(--dc-red);
}

/* ==========================================================================
   22. Pagination
   ========================================================================== */
.pagination {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin: 48px 0;
    flex-wrap: wrap;
}

.pagination .page-numbers {
    padding: 10px 16px;
    background: var(--dc-white);
    border: 1px solid var(--dc-gray-200);
    border-radius: var(--dc-radius);
    color: var(--dc-gray-700);
    font-weight: 600;
    transition: all var(--dc-transition);
}

.pagination .page-numbers:hover,
.pagination .page-numbers.current {
    background: var(--dc-red);
    border-color: var(--dc-red);
    color: var(--dc-white);
}

/* ==========================================================================
   23. Animations
   ========================================================================== */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(24px); }
    to   { opacity: 1; transform: translateY(0); }
}

.service-card,
.area-card,
.review-card,
.feature,
.why-card,
.post-card {
    animation: fadeInUp 0.6s ease backwards;
}

.services-grid > *:nth-child(1) { animation-delay: 0.05s; }
.services-grid > *:nth-child(2) { animation-delay: 0.1s; }
.services-grid > *:nth-child(3) { animation-delay: 0.15s; }
.services-grid > *:nth-child(4) { animation-delay: 0.2s; }
.services-grid > *:nth-child(5) { animation-delay: 0.25s; }
.services-grid > *:nth-child(6) { animation-delay: 0.3s; }
.services-grid > *:nth-child(7) { animation-delay: 0.35s; }
.services-grid > *:nth-child(8) { animation-delay: 0.4s; }

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.6; }
}

/* ==========================================================================
   24. Responsive — Tablet
   ========================================================================== */
@media (max-width: 1024px) {
    .services-grid { grid-template-columns: repeat(3, 1fr); }
    .areas-grid { grid-template-columns: repeat(2, 1fr); }
    .reviews-grid { grid-template-columns: repeat(2, 1fr); }
    .post-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: repeat(2, 1fr); }
    .map-contact-grid { grid-template-columns: 1fr; }
    .quick-grid { grid-template-columns: repeat(3, 1fr); }
    .content-grid { grid-template-columns: 1fr; }
    .sidebar { position: static; }
    .hero-trust { grid-template-columns: repeat(4, 1fr); gap: 16px; }
    .why-grid { grid-template-columns: 1fr; gap: 48px; }
    .why-card-2 { margin-left: 0; }
    .why-card-3 { margin-left: 0; }
    .features { grid-template-columns: 1fr 1fr; }
}

/* ==========================================================================
   25. Responsive — Mobile
   ========================================================================== */
@media (max-width: 768px) {
    body { font-size: 15px; }
    .services-section, .why-us, .areas-section, .reviews-section,
    .faq-section, .map-contact-section { padding: 56px 0; }

    .menu-toggle { display: inline-flex; }

    .main-navigation {
        position: static;
    }

    .primary-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--dc-white);
        box-shadow: var(--dc-shadow-lg);
        padding: 14px 20px;
        border-top: 1px solid var(--dc-gray-100);
        flex-direction: column;
        gap: 4px;
        align-items: stretch;
        z-index: 99;
    }

    .primary-menu.is-open { display: flex; }

    .primary-menu a {
        padding: 12px 16px;
        display: block;
        width: 100%;
    }

    .header-inner { gap: 12px; }
    .btn-call-header .btn-label { display: none; }
    .btn-call-header { padding: 12px 16px; }

    .site-header { position: relative; }

    .site-tagline { display: none; }
    .site-title { font-size: 1.15rem; }
    .site-default-logo, .custom-logo { width: 44px; height: 44px; }

    .hero { min-height: 480px; padding: 56px 0; }
    .hero-buttons { flex-direction: column; align-items: stretch; }
    .hero-buttons .btn { justify-content: center; }
    .hero-trust {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
        padding-top: 24px;
        margin-top: 28px;
    }
    .trust-item strong { font-size: 1.8rem; }

    .quick-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 14px;
    }

    .services-grid,
    .areas-grid,
    .reviews-grid,
    .post-grid,
    .popular-services-list,
    .features { grid-template-columns: 1fr; }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 32px;
        margin-bottom: 32px;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .contact-info { padding: 28px; }

    .floating-call { width: 54px; height: 54px; bottom: 16px; right: 16px; font-size: 1.4rem; }
    .floating-whatsapp { width: 54px; height: 54px; bottom: 16px; right: 80px; font-size: 1.4rem; }

    .emergency-bar { font-size: 0.78rem; text-align: center; }
    .emergency-bar .container { justify-content: center; gap: 8px; }

    .single-article { padding: 32px 0; }
    .cta-band { padding: 48px 0; }
    .cta-actions, .cta-buttons { flex-direction: column; align-items: stretch; }
    .cta-actions .btn, .cta-buttons .btn { justify-content: center; }
}

@media (max-width: 480px) {
    h1 { font-size: 2rem; }
    h2 { font-size: 1.6rem; }
    .hero-title { font-size: 2.25rem; }
    .btn { padding: 12px 20px; font-size: 0.95rem; }
    .btn-large { padding: 14px 24px; font-size: 1rem; }
    .quick-grid { grid-template-columns: 1fr 1fr; }
    .quick-item span { font-size: 1.5rem; }
    .quick-item strong { font-size: 0.78rem; }
}

/* ==========================================================================
   26. Print
   ========================================================================== */
@media print {
    .emergency-bar, .site-header, .site-footer,
    .floating-call, .floating-whatsapp, .cta-band { display: none; }
    body { color: #000; background: #fff; }
}

/* ==========================================================================
   v3.0 — SVG İkon Sistemi
   ========================================================================== */
.dc-icon {
    display: inline-block;
    vertical-align: middle;
    flex-shrink: 0;
    color: inherit;
    stroke: currentColor;
}

.btn .dc-icon { color: inherit; }

.hero-eyebrow .dc-icon { stroke-width: 2.4; }

.feature-ico .dc-icon,
.contact-list .ico .dc-icon,
.footer-contact .ico .dc-icon { stroke-width: 2; }

.service-icon .dc-icon { stroke-width: 1.8; }

.area-pin .dc-icon { stroke-width: 2.2; }

.quick-item .dc-icon {
    color: var(--dc-red-light);
    stroke-width: 2;
}

.trust-svg { color: var(--dc-red-light); }

/* ==========================================================================
   v3.0 — Process / Nasıl Çalışırız
   ========================================================================== */
.process-section {
    padding: 96px 0;
    background: var(--dc-white);
    position: relative;
    overflow: hidden;
}

.process-section::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 1px;
    background: repeating-linear-gradient(90deg, var(--dc-gray-200), var(--dc-gray-200) 10px, transparent 10px, transparent 20px);
    z-index: 0;
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    position: relative;
    z-index: 1;
}

.process-step {
    background: var(--dc-white);
    border: 1px solid var(--dc-gray-200);
    border-radius: var(--dc-radius-lg);
    padding: 36px 28px 32px;
    text-align: center;
    position: relative;
    transition: all var(--dc-transition);
}

.process-step:hover {
    transform: translateY(-6px);
    box-shadow: var(--dc-shadow-xl);
    border-color: var(--dc-red);
}

.process-num {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--dc-red);
    color: var(--dc-white);
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--dc-display);
    font-size: 1.2rem;
    font-weight: 700;
    box-shadow: 0 4px 12px rgba(220, 38, 38, 0.4);
    letter-spacing: 0.04em;
}

.process-icon {
    width: 72px;
    height: 72px;
    margin: 16px auto 20px;
    border-radius: var(--dc-radius-lg);
    background: rgba(220, 38, 38, 0.08);
    color: var(--dc-red);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--dc-transition);
}

.process-step:hover .process-icon {
    background: var(--dc-red);
    color: var(--dc-white);
    transform: rotate(-5deg) scale(1.05);
}

.process-step h3 {
    font-size: 1.15rem;
    margin-bottom: 12px;
    font-family: var(--dc-font);
    font-weight: 700;
    letter-spacing: 0;
}

.process-step p {
    color: var(--dc-gray-600);
    font-size: 0.92rem;
    line-height: 1.6;
    margin: 0;
}

/* ==========================================================================
   v3.0 — Vehicles / Çektiğimiz Araçlar
   ========================================================================== */
.vehicles-section {
    padding: 96px 0;
    background: linear-gradient(135deg, var(--dc-black) 0%, var(--dc-gray-900) 100%);
    color: var(--dc-white);
    position: relative;
    overflow: hidden;
}

.vehicles-section::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(220, 38, 38, 0.15) 0%, transparent 60%);
    transform: translate(30%, -30%);
}

.vehicles-section .section-head h2 { color: var(--dc-white); }
.vehicles-section .section-head p { color: var(--dc-gray-400); }

.vehicles-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    position: relative;
    z-index: 1;
}

.vehicle-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--dc-radius-lg);
    padding: 32px 24px;
    text-align: center;
    transition: all var(--dc-transition);
    backdrop-filter: blur(10px);
}

.vehicle-card:hover {
    background: rgba(220, 38, 38, 0.1);
    border-color: var(--dc-red);
    transform: translateY(-6px);
}

.vehicle-icon {
    width: 96px;
    height: 96px;
    margin: 0 auto 24px;
    border-radius: 50%;
    background: rgba(220, 38, 38, 0.15);
    color: var(--dc-red-light);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--dc-transition);
}

.vehicle-card:hover .vehicle-icon {
    background: var(--dc-red);
    color: var(--dc-white);
    transform: scale(1.05);
}

.vehicle-card h3 {
    color: var(--dc-white);
    font-size: 1.2rem;
    margin-bottom: 10px;
    font-family: var(--dc-font);
    font-weight: 700;
    letter-spacing: 0;
}

.vehicle-card p {
    color: var(--dc-gray-400);
    font-size: 0.92rem;
    margin: 0;
    line-height: 1.6;
}

/* ==========================================================================
   v3.0 — Stats Band (Animated Counter)
   ========================================================================== */
.stats-band {
    padding: 56px 0;
    background: linear-gradient(135deg, var(--dc-red) 0%, var(--dc-red-dark) 100%);
    color: var(--dc-white);
    position: relative;
    overflow: hidden;
}

.stats-band::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(circle at 25% 50%, rgba(255,255,255,0.08) 0%, transparent 50%),
        radial-gradient(circle at 75% 50%, rgba(255,255,255,0.08) 0%, transparent 50%);
}

.stats-band .container { position: relative; z-index: 1; }

.stats-band-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    text-align: center;
}

.stats-band-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 16px;
    transition: transform var(--dc-transition);
}

.stats-band-item:hover { transform: translateY(-4px); }

.stats-band-item .dc-icon {
    color: var(--dc-white);
    opacity: 0.95;
    margin-bottom: 4px;
}

.stats-band-num {
    font-family: var(--dc-display);
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    color: var(--dc-white);
    line-height: 1;
    letter-spacing: 0.02em;
    font-weight: 700;
}

.stats-band-num::after {
    content: "+";
    font-size: 0.7em;
    margin-left: 2px;
    opacity: 0.85;
}

.stats-band-label {
    color: var(--dc-white);
    opacity: 0.95;
    font-size: 0.92rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 600;
}

/* ==========================================================================
   v3.0 — Trust Badges
   ========================================================================== */
.badges-section {
    padding: 64px 0;
    background: var(--dc-gray-50);
    border-top: 1px solid var(--dc-gray-100);
    border-bottom: 1px solid var(--dc-gray-100);
}

.badges-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.badge-item {
    background: var(--dc-white);
    padding: 24px;
    border-radius: var(--dc-radius-lg);
    box-shadow: var(--dc-shadow-sm);
    border: 1px solid var(--dc-gray-100);
    display: flex;
    align-items: center;
    gap: 16px;
    transition: all var(--dc-transition);
}

.badge-item:hover {
    transform: translateY(-3px);
    box-shadow: var(--dc-shadow);
    border-color: var(--dc-red);
}

.badge-item > .dc-icon {
    color: var(--dc-red);
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    padding: 8px;
    background: rgba(220, 38, 38, 0.08);
    border-radius: var(--dc-radius);
}

.badge-item div { display: flex; flex-direction: column; gap: 2px; }

.badge-item strong {
    color: var(--dc-black);
    font-size: 1rem;
    font-weight: 700;
}

.badge-item span {
    color: var(--dc-gray-600);
    font-size: 0.85rem;
}

/* ==========================================================================
   v3.0 — Hero trust adjusted for SVG icons
   ========================================================================== */
.hero-trust .trust-item {
    flex-direction: row;
    align-items: center;
    gap: 12px;
}

.hero-trust .trust-item > div {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.hero-trust .trust-svg {
    color: var(--dc-red-light);
    flex-shrink: 0;
}

/* ==========================================================================
   v3.0 — Quick item adjustments
   ========================================================================== */
.quick-item .dc-icon {
    margin-bottom: 4px;
}

/* ==========================================================================
   v3.0 — Service icon adjustment
   ========================================================================== */
.service-icon { padding: 14px; }
.service-icon svg { width: 100%; height: 100%; }

/* ==========================================================================
   v3.0 — Contact list ico adjustment
   ========================================================================== */
.contact-list .ico,
.footer-contact .ico {
    color: var(--dc-white);
}

.footer-contact {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 12px;
    color: var(--dc-gray-300);
    font-size: 0.95rem;
}

.footer-contact .ico {
    color: var(--dc-red-light);
    flex-shrink: 0;
    margin-top: 2px;
}

.footer-contact a {
    color: var(--dc-gray-300);
}

.footer-contact a:hover {
    color: var(--dc-red-light);
    padding-left: 0 !important;
}

.footer-contact address {
    font-style: normal;
    color: var(--dc-gray-300);
    line-height: 1.5;
}

.footer-contact strong {
    color: var(--dc-white);
    font-weight: 600;
}

/* ==========================================================================
   v3.0 — Footer brand
   ========================================================================== */
.footer-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

.footer-logo {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--dc-white);
    padding: 4px;
    flex-shrink: 0;
}

.footer-title {
    color: var(--dc-white);
    font-family: var(--dc-display);
    font-size: 1.4rem;
    margin: 0;
    padding: 0;
    letter-spacing: 0.04em;
}

.footer-title::after { display: none; }

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

.footer-list li { margin-bottom: 10px; }

.footer-list a {
    color: var(--dc-gray-400);
    transition: all var(--dc-transition);
    font-size: 0.95rem;
}

.footer-list a:hover {
    color: var(--dc-red-light);
    padding-left: 4px;
}

.text-red { color: var(--dc-red-light); }

/* ==========================================================================
   v3.0 — Cta band content
   ========================================================================== */
.cta-content {
    max-width: 760px;
    margin: 0 auto;
    text-align: center;
}

/* ==========================================================================
   v3.0 — AMP link in footer-bottom
   ========================================================================== */
.footer-bottom .amp-link a {
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

/* ==========================================================================
   v3.0 — Floating buttons - SVG fixes
   ========================================================================== */
.floating-call .dc-icon,
.floating-whatsapp .dc-icon {
    color: var(--dc-white);
    stroke-width: 2.2;
}

.floating-call .pulse-ring {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    border: 2px solid var(--dc-red);
    opacity: 0;
    animation: ring-pulse 2s infinite;
}

@keyframes ring-pulse {
    0% { transform: scale(0.8); opacity: 0.8; }
    100% { transform: scale(1.8); opacity: 0; }
}

/* ==========================================================================
   v3.0 — Responsive overrides
   ========================================================================== */
@media (max-width: 1024px) {
    .process-grid { grid-template-columns: repeat(2, 1fr); gap: 32px 24px; }
    .vehicles-grid { grid-template-columns: repeat(2, 1fr); }
    .stats-band-grid { grid-template-columns: repeat(2, 1fr); gap: 24px; }
    .badges-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    .process-section { padding: 64px 0; }
    .process-grid { grid-template-columns: 1fr; gap: 32px; }
    .vehicles-section { padding: 64px 0; }
    .vehicles-grid { grid-template-columns: 1fr 1fr; gap: 14px; }
    .vehicle-card { padding: 22px 16px; }
    .vehicle-card h3 { font-size: 1.05rem; }
    .vehicle-card p { font-size: 0.85rem; }
    .vehicle-icon { width: 72px; height: 72px; }

    .stats-band { padding: 40px 0; }
    .stats-band-grid { grid-template-columns: 1fr 1fr; gap: 16px; }
    .stats-band-num { font-size: 2rem; }
    .stats-band-label { font-size: 0.78rem; }

    .badges-section { padding: 48px 0; }
    .badges-grid { grid-template-columns: 1fr; gap: 14px; }
    .badge-item { padding: 18px; }

    .hero-trust .trust-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 6px;
    }

    .footer-brand { flex-direction: row; }
}

@media (max-width: 480px) {
    .vehicles-grid { grid-template-columns: 1fr; }
}

/* ==========================================================================
   v4.0 — KRİTİK DÜZELTMELER
   ========================================================================== */

/* ----- 1) Floating Butonlar: Telefon SOL, WhatsApp SAĞ ----- */
.floating-call {
    right: auto !important;
    left: 24px !important;
    background: var(--dc-red);
}

.floating-whatsapp {
    right: 24px !important;
    left: auto !important;
    background: var(--dc-green);
}

/* WhatsApp logosu için filled style */
.floating-whatsapp .dc-icon {
    fill: currentColor;
    stroke: none;
}

/* ----- 2) Mobile Header — Tam Düzeltme ----- */
@media (max-width: 768px) {
    /* Sticky header'ı koru ama menü için relative yap */
    .site-header {
        position: sticky;
        top: 0;
        padding: 10px 0;
    }

    .header-inner {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 8px;
        flex-wrap: nowrap;
    }

    /* Branding daha kompakt */
    .site-branding { flex-shrink: 1; min-width: 0; overflow: hidden; }
    .site-title-link { gap: 8px; }
    .site-default-logo, .custom-logo { width: 40px; height: 40px; }
    .site-title { font-size: 1rem; line-height: 1.1; }
    .site-tagline { display: none; }

    /* Header CTA — telefon butonu küçülmeli */
    .header-cta {
        flex-shrink: 0;
        gap: 6px;
    }

    .btn-call-header {
        padding: 9px 12px;
        font-size: 0.8rem;
    }

    .btn-call-header .btn-label {
        display: none; /* Sadece ikon kalsın */
    }

    .btn-call-header .dc-icon {
        width: 18px;
        height: 18px;
    }

    /* Hamburger ortada görünsün, footer-cta solda */
    .menu-toggle {
        width: 40px;
        height: 40px;
        flex-shrink: 0;
    }

    .main-navigation {
        flex: 0 0 auto;
        display: flex;
    }

    /* Mobile dropdown menü */
    .primary-menu {
        position: fixed !important;
        top: 0;
        right: -100%;
        left: auto;
        width: 80%;
        max-width: 320px;
        height: 100vh;
        background: var(--dc-white);
        box-shadow: -10px 0 30px rgba(0,0,0,0.2);
        padding: 80px 24px 24px;
        flex-direction: column;
        gap: 0;
        align-items: stretch;
        z-index: 200;
        transition: right 0.3s ease;
        display: flex;
        overflow-y: auto;
    }

    .primary-menu.is-open {
        right: 0;
    }

    .primary-menu li {
        border-bottom: 1px solid var(--dc-gray-100);
    }

    .primary-menu a {
        padding: 16px 0;
        font-size: 1rem;
        border-radius: 0;
        width: 100%;
        display: block;
    }

    /* Backdrop overlay when menu open */
    body.menu-open::before {
        content: "";
        position: fixed;
        inset: 0;
        background: rgba(0,0,0,0.5);
        z-index: 150;
        pointer-events: auto;
    }
}

/* ----- 3) Mobile Hero — Daha kompakt ----- */
@media (max-width: 768px) {
    .hero {
        min-height: auto;
        padding: 40px 0 56px;
    }

    .hero-content {
        max-width: 100%;
    }

    .hero-eyebrow {
        font-size: 0.75rem;
        padding: 6px 14px;
        margin-bottom: 16px;
    }

    .hero-title {
        font-size: 2rem;
        line-height: 1.1;
        margin-bottom: 14px;
    }

    .hero-subtitle {
        font-size: 1rem;
        margin-bottom: 24px;
        line-height: 1.5;
    }

    .hero-buttons {
        gap: 12px;
        margin-bottom: 32px;
    }

    .hero-buttons .btn {
        width: 100%;
        padding: 14px 16px;
        font-size: 1rem;
    }

    .hero-trust {
        grid-template-columns: 1fr 1fr !important;
        gap: 14px !important;
        padding-top: 22px;
        margin-top: 22px;
    }

    .hero-trust .trust-item {
        flex-direction: row !important;
        align-items: center;
        gap: 10px;
        padding: 10px;
        background: rgba(255,255,255,0.05);
        border-radius: var(--dc-radius);
    }

    .trust-item strong {
        font-size: 1.4rem;
    }

    .trust-item span {
        font-size: 0.7rem;
        letter-spacing: 0.05em;
    }

    .trust-svg {
        width: 18px !important;
        height: 18px !important;
    }
}

/* ----- 4) Mobile Sections — Padding ve text ----- */
@media (max-width: 768px) {
    .services-section,
    .why-us,
    .areas-section,
    .reviews-section,
    .faq-section,
    .map-contact-section,
    .process-section,
    .vehicles-section,
    .blog-section {
        padding: 48px 0 !important;
    }

    .section-head {
        margin-bottom: 32px;
    }

    .section-head h2 {
        font-size: 1.6rem;
        line-height: 1.15;
    }

    .section-head p {
        font-size: 0.95rem;
    }

    .section-eyebrow {
        font-size: 0.72rem;
        letter-spacing: 0.12em;
    }

    /* Floating butonları viewport'a sıkıştırma */
    .floating-call,
    .floating-whatsapp {
        width: 52px;
        height: 52px;
        bottom: 14px;
    }

    .floating-call {
        left: 14px !important;
    }

    .floating-whatsapp {
        right: 14px !important;
    }

    .floating-call .dc-icon,
    .floating-whatsapp .dc-icon {
        width: 22px;
        height: 22px;
    }

    /* Emergency bar tek satıra sığsın */
    .emergency-bar { padding: 6px 0; font-size: 0.72rem; }
    .emergency-bar .container {
        flex-direction: column;
        gap: 2px;
        text-align: center;
    }
    .emergency-call { font-size: 0.78rem; }
}

/* ----- 5) SIDEBAR Düzeltmeleri ----- */
.sidebar {
    width: 100%;
}

.widget {
    margin-bottom: 20px;
}

.widget ul,
.widget ol {
    list-style: none;
    padding: 0;
    margin: 0;
}

.widget li {
    padding: 8px 0;
    border-bottom: 1px solid var(--dc-gray-100);
    color: var(--dc-gray-700);
    font-size: 0.93rem;
}

.widget li:last-child { border-bottom: none; }

.widget li a {
    color: var(--dc-gray-700);
    transition: color var(--dc-transition);
}

.widget li a:hover { color: var(--dc-red); }

.widget select,
.widget input[type="text"],
.widget input[type="search"] {
    width: 100%;
    padding: 10px 14px;
    border: 1px solid var(--dc-gray-300);
    border-radius: var(--dc-radius);
    font-family: inherit;
    font-size: 0.95rem;
}

/* Recent posts widget özel */
.widget_recent_entries li,
.widget_categories li,
.widget_archive li {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.widget_categories li a,
.widget_archive li a {
    flex: 1;
}

/* Sidebar mobile ----- */
@media (max-width: 1024px) {
    .sidebar {
        position: static !important;
        margin-top: 32px;
    }

    .content-grid {
        grid-template-columns: 1fr !important;
        gap: 24px;
    }
}

/* ----- 6) BLOG Grid Stilleri ----- */
.blog-section {
    padding: 96px 0;
    background: var(--dc-gray-50);
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.blog-card {
    background: var(--dc-white);
    border-radius: var(--dc-radius-lg);
    overflow: hidden;
    box-shadow: var(--dc-shadow);
    border: 1px solid var(--dc-gray-100);
    transition: all var(--dc-transition);
    display: flex;
    flex-direction: column;
}

.blog-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--dc-shadow-xl);
    border-color: var(--dc-red);
}

.blog-card-thumb {
    aspect-ratio: 16/10;
    overflow: hidden;
    background: linear-gradient(135deg, var(--dc-black) 0%, var(--dc-gray-900) 100%);
    display: block;
}

.blog-card-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.blog-card:hover .blog-card-thumb img {
    transform: scale(1.05);
}

.blog-card-thumb-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--dc-red);
    opacity: 0.6;
}

.blog-card-body {
    padding: 22px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.blog-card-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    font-size: 0.82rem;
    color: var(--dc-gray-500);
    margin-bottom: 10px;
}

.blog-card-meta span {
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.blog-card-title {
    font-size: 1.1rem;
    line-height: 1.3;
    margin-bottom: 10px;
    font-family: var(--dc-font);
    font-weight: 700;
    letter-spacing: 0;
}

.blog-card-title a {
    color: var(--dc-black);
    text-decoration: none;
}

.blog-card-title a:hover { color: var(--dc-red); }

.blog-card-excerpt {
    color: var(--dc-gray-600);
    font-size: 0.93rem;
    margin-bottom: 14px;
    flex: 1;
    line-height: 1.6;
}

.blog-card-link {
    color: var(--dc-red);
    font-weight: 600;
    font-size: 0.88rem;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    margin-top: auto;
    transition: gap var(--dc-transition);
}

.blog-card:hover .blog-card-link { gap: 8px; }

@media (max-width: 1024px) {
    .blog-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
    .blog-grid { grid-template-columns: 1fr; gap: 16px; }
    .blog-card-body { padding: 18px; }
    .blog-card-title { font-size: 1.05rem; }
}

/* ----- 7) Mobile Specific FIXES (varolan bug'ları temizle) ----- */
@media (max-width: 768px) {

    /* Process kartları */
    .process-grid { grid-template-columns: 1fr !important; gap: 32px !important; }
    .process-step { padding: 32px 22px 26px; }
    .process-num { width: 42px; height: 42px; font-size: 1.05rem; top: -16px; }
    .process-icon { width: 60px; height: 60px; }

    /* Vehicles */
    .vehicles-grid { grid-template-columns: 1fr 1fr !important; gap: 12px !important; }
    .vehicle-card { padding: 22px 14px; }
    .vehicle-icon { width: 64px; height: 64px; margin-bottom: 16px; }
    .vehicle-icon .dc-icon { width: 36px !important; height: 36px !important; }
    .vehicle-card h3 { font-size: 0.95rem; margin-bottom: 6px; }
    .vehicle-card p { font-size: 0.78rem; line-height: 1.4; }

    /* Stats band */
    .stats-band { padding: 36px 0; }
    .stats-band-grid { grid-template-columns: 1fr 1fr; gap: 18px; }
    .stats-band-num { font-size: 1.8rem; }
    .stats-band-label { font-size: 0.7rem; letter-spacing: 0.05em; }
    .stats-band-item .dc-icon { width: 26px !important; height: 26px !important; }

    /* Badges */
    .badges-section { padding: 36px 0; }
    .badges-grid { grid-template-columns: 1fr; gap: 10px; }
    .badge-item { padding: 14px 16px; }
    .badge-item > .dc-icon { width: 36px; height: 36px; padding: 6px; }
    .badge-item strong { font-size: 0.92rem; }
    .badge-item span { font-size: 0.78rem; }

    /* Why us */
    .why-grid { grid-template-columns: 1fr !important; gap: 32px !important; }
    .features { grid-template-columns: 1fr !important; gap: 12px; }
    .feature { padding: 14px; }
    .feature-ico { width: 40px; height: 40px; }
    .feature h4 { font-size: 0.98rem; margin-bottom: 4px; }
    .feature p { font-size: 0.84rem; }
    .why-visual { gap: 14px; }
    .why-card { padding: 24px; }
    .why-card-2, .why-card-3 { margin-left: 0 !important; }
    .why-card-num { font-size: 2.5rem; }
    .why-card-num small { font-size: 1rem; }

    /* Services */
    .services-grid { grid-template-columns: 1fr !important; gap: 16px !important; }
    .service-card { padding: 24px 20px; }
    .service-icon { width: 56px; height: 56px; padding: 12px; }
    .service-card h3, .service-title { font-size: 1.1rem; }

    /* Areas */
    .areas-grid { grid-template-columns: 1fr !important; gap: 10px; }
    .area-card { padding: 18px 20px; gap: 12px; }
    .area-pin { width: 36px; height: 36px; }
    .area-pin .dc-icon { width: 16px !important; height: 16px !important; }
    .area-name { font-size: 0.95rem; }

    /* Reviews */
    .reviews-grid { grid-template-columns: 1fr !important; gap: 16px; }
    .review-card { padding: 22px; }

    /* FAQ */
    .faq-item summary { padding: 14px 18px; font-size: 0.95rem; }
    .faq-answer { padding: 0 18px 16px; font-size: 0.9rem; }

    /* CTA band */
    .cta-band { padding: 40px 0; }
    .cta-band h2 { font-size: 1.5rem; }
    .cta-band p { font-size: 0.95rem; }
    .cta-buttons { gap: 10px; }

    /* Map contact */
    .map-contact-grid { grid-template-columns: 1fr !important; gap: 20px; }
    .contact-info { padding: 24px; }
    .contact-list li { padding: 10px 0; gap: 10px; }
    .contact-list .ico { width: 34px; height: 34px; }
    .contact-list .ico .dc-icon { width: 14px !important; height: 14px !important; }
    .contact-list strong { font-size: 0.7rem; }
    .contact-map iframe { min-height: 320px; }

    /* Footer */
    .site-footer { padding: 48px 0 0; }
    .footer-grid { grid-template-columns: 1fr; gap: 28px; margin-bottom: 28px; }
    .footer-bottom { padding: 18px 0; font-size: 0.78rem; }

    /* Section foot button */
    .section-foot { margin-top: 32px; }
    .section-foot .btn { width: 100%; justify-content: center; }
}

/* ----- 8) Çok Küçük Cihazlar (iPhone SE vb.) ----- */
@media (max-width: 380px) {
    .container { padding: 0 14px; }
    .hero-title { font-size: 1.7rem; }
    .hero-subtitle { font-size: 0.92rem; }
    .vehicles-grid { grid-template-columns: 1fr !important; }
    .stats-band-grid { grid-template-columns: 1fr; gap: 14px; }
    .hero-trust { grid-template-columns: 1fr !important; gap: 8px !important; }
    .site-title { font-size: 0.92rem; }
    .site-default-logo, .custom-logo { width: 36px; height: 36px; }
    .btn-call-header { padding: 8px 10px; }
    .btn-call-header .dc-icon { width: 16px; height: 16px; }
    .menu-toggle { width: 36px; height: 36px; }
}

/* ==========================================================================
   v4.0 — Sidebar Geliştirmeleri
   ========================================================================== */
.sidebar-cta {
    text-align: center;
    padding: 28px 22px;
}

.sidebar-cta .dc-icon {
    margin: 0 auto 14px;
    color: var(--dc-white);
    opacity: 0.95;
}

.sidebar-cta-wa {
    background: linear-gradient(135deg, var(--dc-green) 0%, #1FAE53 100%);
}

.sidebar-cta-wa .btn-whatsapp {
    background: var(--dc-white);
    color: var(--dc-green);
}

.sidebar-cta-wa .btn-whatsapp:hover {
    background: var(--dc-black);
    color: var(--dc-white);
}

.widget-title {
    display: flex;
    align-items: center;
    gap: 8px;
}

.widget ul li {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 0;
}

.widget ul li a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    flex: 1;
}

.widget ul li .dc-icon {
    color: var(--dc-red);
    flex-shrink: 0;
}

.widget-recent li {
    flex-direction: column;
    align-items: flex-start;
    gap: 2px;
}

.widget-recent li a {
    width: 100%;
    line-height: 1.4;
    font-size: 0.92rem;
    color: var(--dc-gray-800);
}

.widget-date {
    color: var(--dc-gray-500);
    font-size: 0.75rem;
}

/* ==========================================================================
   v5.0 — Yeni Sayfa Şablonu Stilleri
   ========================================================================== */

/* ----- Container narrow ----- */
.container-narrow {
    max-width: 820px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ----- Page Hero (alt sayfalar için) ----- */
.page-hero {
    background: linear-gradient(135deg, var(--dc-black) 0%, var(--dc-gray-900) 100%);
    color: var(--dc-white);
    padding: 80px 0 64px;
    position: relative;
    overflow: hidden;
    text-align: center;
}

.page-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% 0%, rgba(220, 38, 38, 0.25) 0%, transparent 60%);
}

.page-hero .container { position: relative; z-index: 1; }

.page-hero .hero-eyebrow {
    background: rgba(220, 38, 38, 0.2);
    border-color: rgba(220, 38, 38, 0.4);
}

.page-hero-title {
    font-size: clamp(2rem, 5vw, 3.5rem);
    color: var(--dc-white);
    margin: 16px auto 16px;
    line-height: 1.1;
    max-width: 820px;
}

.page-hero-subtitle {
    color: var(--dc-gray-300);
    font-size: 1.1rem;
    max-width: 720px;
    margin: 0 auto;
    line-height: 1.6;
}

/* ----- Page Content Section ----- */
.page-content-section {
    padding: 64px 0;
    background: var(--dc-white);
}

.page-content-section .entry-content {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--dc-gray-800);
}

/* ----- About Story Section ----- */
.about-story {
    padding: 96px 0;
    background: var(--dc-white);
}

.about-story-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 64px;
    align-items: start;
}

.about-story-content h2 {
    margin-bottom: 24px;
    text-align: left;
}

.about-story-content p {
    color: var(--dc-gray-700);
    line-height: 1.8;
    font-size: 1.02rem;
    margin-bottom: 18px;
}

.about-story-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    position: sticky;
    top: 100px;
}

.about-stat {
    background: var(--dc-white);
    border: 1px solid var(--dc-gray-200);
    border-radius: var(--dc-radius-lg);
    padding: 28px 20px;
    text-align: center;
    transition: all var(--dc-transition);
    box-shadow: var(--dc-shadow-sm);
}

.about-stat:hover {
    transform: translateY(-4px);
    box-shadow: var(--dc-shadow-lg);
    border-color: var(--dc-red);
}

.about-stat-num {
    font-family: var(--dc-display);
    font-size: 2.8rem;
    color: var(--dc-red);
    line-height: 1;
    margin-bottom: 6px;
    letter-spacing: 0.02em;
}

.about-stat-num small {
    font-size: 1.2rem;
    color: var(--dc-gray-500);
}

.about-stat-label {
    color: var(--dc-gray-700);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-weight: 600;
}

.about-features {
    grid-template-columns: repeat(3, 1fr);
}

/* ----- Contact Cards Section ----- */
.contact-cards-section {
    padding: 96px 0;
    background: var(--dc-white);
}

.contact-cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.contact-card {
    background: var(--dc-white);
    border: 2px solid var(--dc-gray-200);
    border-radius: var(--dc-radius-xl);
    padding: 40px 28px;
    text-align: center;
    transition: all var(--dc-transition);
    text-decoration: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: var(--dc-gray-800);
}

.contact-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--dc-shadow-xl);
    color: inherit;
}

.contact-card-call:hover { border-color: var(--dc-red); }
.contact-card-wa:hover { border-color: var(--dc-green); }
.contact-card-hours { cursor: default; }

.contact-card-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    transition: all var(--dc-transition);
}

.contact-card-call .contact-card-icon {
    background: rgba(220, 38, 38, 0.1);
    color: var(--dc-red);
}

.contact-card-wa .contact-card-icon {
    background: rgba(37, 211, 102, 0.1);
    color: var(--dc-green);
}

.contact-card-hours .contact-card-icon {
    background: rgba(10, 10, 10, 0.08);
    color: var(--dc-black);
}

.contact-card:hover .contact-card-icon {
    transform: scale(1.1);
}

.contact-card-call:hover .contact-card-icon {
    background: var(--dc-red);
    color: var(--dc-white);
}

.contact-card-wa:hover .contact-card-icon {
    background: var(--dc-green);
    color: var(--dc-white);
}

.contact-card-label {
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--dc-gray-500);
    font-weight: 600;
    margin-bottom: 4px;
}

.contact-card-value {
    font-family: var(--dc-display);
    font-size: 1.5rem;
    color: var(--dc-black);
    letter-spacing: 0.02em;
    margin-bottom: 14px;
    line-height: 1.2;
}

.contact-card-cta {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--dc-red);
    font-weight: 600;
    font-size: 0.9rem;
    margin-top: auto;
}

.contact-card-wa .contact-card-cta { color: var(--dc-green); }
.contact-card-hours .contact-card-cta { color: var(--dc-gray-700); }

/* ----- Contact Areas Section ----- */
.contact-areas-section {
    padding: 96px 0;
    background: var(--dc-gray-50);
}

/* ----- Map Only Section ----- */
.map-only-section {
    padding: 64px 0 96px;
    background: var(--dc-white);
}

.map-wrap-large {
    border-radius: var(--dc-radius-xl);
    overflow: hidden;
    box-shadow: var(--dc-shadow-xl);
    border: 1px solid var(--dc-gray-100);
}

.map-wrap-large iframe {
    display: block;
    width: 100%;
    border: 0;
}

/* ----- Area Cards Detailed (areas page) ----- */
.areas-grid-detailed {
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 24px !important;
}

.area-card-detailed {
    background: var(--dc-white);
    border: 1px solid var(--dc-gray-200);
    border-radius: var(--dc-radius-lg);
    padding: 28px 24px;
    transition: all var(--dc-transition);
    text-decoration: none;
    color: var(--dc-gray-800);
    display: flex;
    flex-direction: column;
    gap: 12px;
    position: relative;
    overflow: hidden;
}

.area-card-detailed::before {
    content: "";
    position: absolute;
    top: 0; left: 0;
    width: 4px;
    height: 100%;
    background: var(--dc-red);
    transform: scaleY(0);
    transform-origin: top;
    transition: transform var(--dc-transition);
}

.area-card-detailed:hover {
    transform: translateY(-4px);
    box-shadow: var(--dc-shadow-xl);
    border-color: var(--dc-red);
}

.area-card-detailed:hover::before { transform: scaleY(1); }

.area-card-icon {
    width: 48px;
    height: 48px;
    background: rgba(220, 38, 38, 0.1);
    color: var(--dc-red);
    border-radius: var(--dc-radius);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 4px;
}

.area-card-title {
    font-family: var(--dc-font);
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--dc-black);
    margin: 0 0 4px;
    letter-spacing: 0;
}

.area-card-desc {
    color: var(--dc-gray-600);
    font-size: 0.92rem;
    line-height: 1.6;
    margin: 0;
    flex: 1;
}

.area-card-link {
    color: var(--dc-red);
    font-weight: 600;
    font-size: 0.88rem;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    margin-top: auto;
    padding-top: 8px;
    transition: gap var(--dc-transition);
}

.area-card-detailed:hover .area-card-link { gap: 8px; }

/* ----- No posts ----- */
.no-posts {
    text-align: center;
    padding: 80px 20px;
    color: var(--dc-gray-500);
}

/* ==========================================================================
   v5.0 — Responsive
   ========================================================================== */
@media (max-width: 1024px) {
    .about-story-grid { grid-template-columns: 1fr; gap: 48px; }
    .about-story-stats { position: static; grid-template-columns: repeat(4, 1fr); }
    .about-features { grid-template-columns: repeat(2, 1fr); }
    .contact-cards-grid { grid-template-columns: 1fr 1fr; }
    .contact-card-hours { grid-column: 1 / -1; }
    .areas-grid-detailed { grid-template-columns: repeat(2, 1fr) !important; }
}

@media (max-width: 768px) {
    .page-hero { padding: 56px 0 40px; }
    .page-hero-title { font-size: 1.8rem; }
    .page-hero-subtitle { font-size: 0.95rem; }

    .about-story { padding: 56px 0; }
    .about-story-grid { gap: 36px; }
    .about-story-stats { grid-template-columns: 1fr 1fr; gap: 12px; }
    .about-stat { padding: 20px 14px; }
    .about-stat-num { font-size: 2.2rem; }
    .about-features { grid-template-columns: 1fr !important; }

    .contact-cards-section { padding: 48px 0; }
    .contact-cards-grid { grid-template-columns: 1fr; gap: 16px; }
    .contact-card-hours { grid-column: auto; }
    .contact-card { padding: 28px 22px; }
    .contact-card-icon { width: 64px; height: 64px; }
    .contact-card-icon .dc-icon { width: 32px !important; height: 32px !important; }
    .contact-card-value { font-size: 1.25rem; }

    .contact-areas-section { padding: 48px 0; }
    .map-only-section { padding: 32px 0 48px; }
    .map-wrap-large iframe { min-height: 320px; }

    .areas-grid-detailed { grid-template-columns: 1fr !important; gap: 14px !important; }
    .area-card-detailed { padding: 22px 20px; }
}
