:root {
    --navy:      #0a2540;
    --red:       #e63939;
    --red-hover: #c1121f;
    --gray:      #f5f7fa;
    --text:      #1e293b;
    --muted:     #64748b;
    --ease-out:  cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --ease-premium: cubic-bezier(0.22, 1, 0.36, 1);
    --radius-btn: 18px;
    --radius-card: 18px;
    --shadow-soft: 0 4px 24px rgba(10, 37, 64, 0.07);
    --shadow-cta: 0 14px 40px rgba(10, 37, 64, 0.12);
    --star-gold: #f4b400;
}

* { margin:0; padding:0; box-sizing:border-box; }
html { scroll-behavior: smooth; }

/* Inline SVG ikonlar (telefon / WhatsApp) */
.icon {
    display: inline-block;
    vertical-align: middle;
    flex-shrink: 0;
}
.icon--phone,
.icon--whatsapp {
    width: 1.35em;
    height: 1.35em;
}

body {
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
    background-color: var(--gray);
    color: var(--text);
    line-height: 1.68;
    letter-spacing: -0.011em;
    -webkit-font-smoothing: antialiased;
    font-size: 1rem;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 20px;
}

/* (Ana sayfa) hero split layout ile değiştirildi; eski hero-slider kuralı kaldırıldı */

.container--wide {
    max-width: 1400px;
}

/* HEADER */
.header {
    background: var(--navy);
    padding: 24px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.12);
}

.header.header--compact {
    padding: 16px 0;
}

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

/* Logo — yumuşak yanıp sönme (kırmızı kutu + şimşek + kelime) */
@keyframes logo-mark-pulse {
    0%,
    100% {
        opacity: 1;
        box-shadow:
            0 4px 16px rgba(230, 57, 57, 0.45),
            inset 0 1px 0 rgba(255, 255, 255, 0.2);
    }
    50% {
        opacity: 0.88;
        box-shadow:
            0 6px 28px rgba(230, 57, 57, 0.78),
            inset 0 1px 0 rgba(255, 255, 255, 0.28);
    }
}

@keyframes logo-bolt-blink {
    0%,
    44%,
    56%,
    100% {
        opacity: 1;
    }
    50% {
        opacity: 0.4;
    }
}

@keyframes logo-word-pulse {
    0%,
    100% {
        opacity: 1;
    }
    50% {
        opacity: 0.72;
    }
}

.logo {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: white;
    text-decoration: none;
    line-height: 1;
}

.logo:focus-visible {
    outline: 2px solid rgba(255, 255, 255, 0.55);
    outline-offset: 6px;
    border-radius: 12px;
}

.logo__mark {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 11px;
    background: linear-gradient(145deg, #e63939 0%, #c1121f 100%);
    color: #fff;
    box-shadow:
        0 4px 16px rgba(230, 57, 57, 0.45),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    transition:
        transform 0.25s var(--ease-out),
        box-shadow 0.25s ease;
    animation: logo-mark-pulse 2.1s ease-in-out infinite;
}

.logo:hover .logo__mark {
    transform: scale(1.04);
    box-shadow:
        0 6px 22px rgba(230, 57, 57, 0.5),
        inset 0 1px 0 rgba(255, 255, 255, 0.22);
}

.logo:hover .logo__mark,
.logo:hover .logo__bolt,
.logo:hover .logo__line--bottom {
    animation-play-state: paused;
}

.logo__bolt {
    display: block;
    filter: drop-shadow(0 1px 1px rgba(0, 0, 0, 0.15));
    animation: logo-bolt-blink 2.1s ease-in-out infinite;
}

.logo__wordmark {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 2px;
}

.logo__line {
    display: block;
}

.logo__line--top {
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 0.02em;
    color: rgba(255, 255, 255, 0.92);
}

.logo__line--bottom {
    font-size: 1.22rem;
    font-weight: 700;
    letter-spacing: -0.03em;
    color: #ff8a8a;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.35);
    animation: logo-word-pulse 2.1s ease-in-out infinite;
    animation-delay: 0.12s;
}

@media (prefers-reduced-motion: reduce) {
    .logo__mark,
    .logo__bolt,
    .logo__line--bottom,
    .hero-marketing-grid__aside .btn-red.btn-cta,
    .hero-split__content .hero__cta .btn-red.btn-cta,
    .hero-split__img {
        animation: none !important;
    }
}

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

.header-nav {
    display: flex;
    align-items: center;
    gap: 18px;
}

.header-nav a {
    color: rgba(255, 255, 255, 0.92);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: color 0.25s ease;
}

.header-nav a:hover {
    color: #ffffff;
}

.mobile-menu-toggle {
    display: none;
    width: 42px;
    height: 42px;
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 11px;
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.mobile-menu-toggle__line {
    display: block;
    width: 18px;
    height: 2px;
    border-radius: 2px;
    background: #fff;
}

.mobile-menu-overlay {
    position: fixed;
    inset: 0;
    background: rgba(2, 10, 18, 0.58);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.25s ease;
    z-index: 1200;
}

.mobile-menu-overlay.is-open {
    opacity: 1;
    pointer-events: auto;
}

.mobile-menu-drawer {
    position: fixed;
    top: 0;
    right: 0;
    width: min(84vw, 360px);
    height: 100dvh;
    background: linear-gradient(180deg, #0a2540 0%, #071b30 100%);
    box-shadow: -16px 0 40px rgba(0, 0, 0, 0.34);
    transform: translateX(104%);
    transition: transform 0.28s var(--ease-out);
    z-index: 1210;
    padding: 18px;
    display: flex;
    flex-direction: column;
    gap: 18px;
    visibility: hidden;
}

.mobile-menu-drawer.is-open {
    transform: translateX(0);
    visibility: visible;
}

.mobile-menu-drawer[inert] {
    visibility: hidden;
}

.mobile-menu-close {
    margin-left: auto;
    border: none;
    background: rgba(255, 255, 255, 0.12);
    color: #fff;
    width: 38px;
    height: 38px;
    border-radius: 10px;
    font-size: 1.45rem;
    line-height: 1;
    cursor: pointer;
}

.mobile-menu-nav {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.mobile-menu-nav a {
    display: block;
    padding: 12px 10px;
    border-radius: 10px;
    color: #fff;
    text-decoration: none;
    font-weight: 650;
    background: rgba(255, 255, 255, 0.06);
}

.mobile-menu-nav a:hover {
    background: rgba(255, 255, 255, 0.14);
}

.mobile-menu-actions {
    margin-top: auto;
    display: grid;
    gap: 10px;
}

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

/* Hero kartındaki “Ara” (slider alanı, header değil) — yumuşak nabız */
@keyframes hero-aside-ara-pulse {
    0%,
    100% {
        box-shadow:
            0 4px 16px rgba(230, 57, 57, 0.25),
            0 0 0 0 rgba(230, 57, 57, 0.35);
        filter: brightness(1);
    }
    50% {
        box-shadow:
            0 6px 28px rgba(230, 57, 57, 0.42),
            0 0 0 6px rgba(230, 57, 57, 0.12);
        filter: brightness(1.08);
    }
}

.phone-btn {
    background: var(--red);
    color: white;
    padding: 16px 32px;
    border-radius: 14px;
    font-weight: 700;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 1.12rem;
    box-shadow: 0 4px 16px rgba(230, 57, 57, 0.22);
    transition:
        transform 0.35s var(--ease-out),
        background 0.3s ease,
        box-shadow 0.35s ease;
}

.phone-btn:hover {
    background: var(--red-hover);
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(230, 57, 57, 0.28);
}

.phone-btn--compact {
    padding: 9px 16px;
    font-size: 0.88rem;
    border-radius: 11px;
}

.whatsapp-header--compact {
    padding: 9px 14px;
    font-size: 0.88rem;
    border-radius: 11px;
}

.whatsapp-header {
    background: rgba(255,255,255,0.12);
    color: white;
    padding: 16px 32px;
    border-radius: 14px;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 1.12rem;
    transition:
        background 0.3s ease,
        transform 0.35s var(--ease-out),
        box-shadow 0.35s ease;
}
.whatsapp-header:hover {
    background: rgba(255,255,255,0.2);
    transform: translateY(-1px);
    box-shadow: 0 4px 18px rgba(0, 0, 0, 0.12);
}

/* HERO — üst katman CRO / tipografi (daha ferah üst-alt boşluk) */
.hero {
    padding: 80px 0 30px;
    background: linear-gradient(180deg, #ffffff 0%, #f8fafc 52%, var(--gray) 100%);
    text-align: center;
    min-height: min(85vh, 680px);
    contain: layout style;
}

/* Ana sayfa hero — split görünüm (solda metin, sağda görsel) */
.hero-split {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(280px, 0.95fr);
    gap: clamp(22px, 3.5vw, 40px);
    text-align: left;
    align-items: center;
}

.hero-split__content {
    min-width: 0;
}

.hero-split__media {
    margin: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    aspect-ratio: 848 / 1264;
    max-height: min(72vh, 560px);
    contain: layout style;
}

@keyframes hero-split-mascot-pulse {
    0%,
    100% {
        opacity: 1;
        filter: brightness(1) drop-shadow(0 10px 28px rgba(10, 37, 64, 0.08));
    }
    50% {
        opacity: 0.94;
        filter: brightness(1.04) drop-shadow(0 14px 36px rgba(230, 57, 57, 0.12));
    }
}

@media (prefers-reduced-motion: reduce) {
    .hero-split__img {
        animation: none;
    }
}

.hero-split__img {
    display: block;
    width: 100%;
    max-width: 88%;
    height: auto;
    max-height: min(72vh, 520px);
    aspect-ratio: 848 / 1264;
    object-fit: contain;
    vertical-align: middle;
    animation: hero-split-mascot-pulse 2.4s ease-in-out infinite;
}

@media (max-width: 900px) {
    .hero-split {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-split__media {
        justify-content: center;
    }

    .hero-split__img {
        max-width: min(92vw, 560px);
        max-height: min(58vh, 520px);
    }
}

.hero__title,
.hero h1.hero__title {
    font-size: clamp(2.15rem, 4.8vw, 3.55rem);
    font-weight: 700;
    line-height: 1.08;
    color: var(--navy);
    margin-bottom: 32px;
    max-width: 1020px;
    margin-left: auto;
    margin-right: auto;
    letter-spacing: -0.035em;
}

.hero-split .hero__title,
.hero-split .hero h1.hero__title {
    text-align: left;
    margin-left: 0;
    margin-right: 0;
}

.hero-split .hero__lead {
    margin-left: 0;
    margin-right: 0;
}

@media (max-width: 900px) {
    .hero-split .hero__title,
    .hero-split .hero h1.hero__title {
        text-align: center;
        margin-left: auto;
        margin-right: auto;
    }

    .hero-split .hero__lead {
        margin-left: auto;
        margin-right: auto;
    }
}

.hero-accent {
    color: var(--red);
}

.hero .lead,
.hero__lead {
    font-size: clamp(1.1rem, 2.05vw, 1.32rem);
    max-width: 620px;
    margin: 0 auto 40px;
    color: var(--muted);
    font-weight: 500;
    line-height: 1.62;
}

/* Hero — güven kartları */
.trust-cards {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 14px;
    max-width: 900px;
    margin: 0 auto 36px;
    padding: 0;
}

.trust-card {
    background: #fff;
    color: var(--navy);
    font-size: clamp(0.8rem, 1.35vw, 0.9rem);
    font-weight: 600;
    padding: 14px 12px;
    border-radius: 12px;
    box-shadow: var(--shadow-soft);
    border: 1px solid rgba(10, 37, 64, 0.05);
    line-height: 1.4;
    text-align: center;
    transition: box-shadow 0.45s var(--ease-premium), transform 0.45s var(--ease-premium);
}

.trust-card:hover {
    box-shadow: 0 6px 22px rgba(10, 37, 64, 0.09);
    transform: translateY(-2px);
}

.cta-buttons {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 0;
}

.btn-red,
.btn-navy,
.btn-cta {
    padding: 10px 20px;
    font-size: 0.94rem;
    font-weight: 600;
    border-radius: 12px;
    text-decoration: none;
    min-width: 0;
    max-width: 100%;
    transition:
        transform 0.35s var(--ease-out),
        box-shadow 0.35s ease,
        background 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    letter-spacing: -0.015em;
    box-shadow: 0 6px 22px rgba(10, 37, 64, 0.1);
}

.btn-red  { background: var(--red); color: white; }
.btn-red:hover  {
    background: var(--red-hover);
    transform: translateY(-1px);
    box-shadow: 0 10px 28px rgba(230, 57, 57, 0.22);
}

.btn-navy { background: var(--navy); color: white; }
.btn-navy:hover {
    background: #051c33;
    transform: translateY(-1px);
    box-shadow: 0 10px 26px rgba(10, 37, 64, 0.18);
}

.btn-cta .icon {
    width: 1.2em;
    height: 1.2em;
}

.btn-cta--compact {
    padding: 10px 18px;
    font-size: 0.9rem;
    font-weight: 600;
    border-radius: 11px;
    gap: 7px;
}

.btn-cta--compact .icon {
    width: 1.1em;
    height: 1.1em;
}

/* İlçe/hizmet hero: metin slider’ının yanındaki karttaki kırmızı Ara */
.hero-marketing-grid__aside .btn-red.btn-cta {
    animation: hero-aside-ara-pulse 2.1s ease-in-out infinite;
    transition:
        transform 0.35s var(--ease-out),
        box-shadow 0.35s ease,
        background 0.3s ease,
        filter 0.35s ease;
}

.hero-marketing-grid__aside .btn-red.btn-cta:hover,
.hero-marketing-grid__aside .btn-red.btn-cta:focus-visible {
    animation-play-state: paused;
}

/* Ana sayfa hero (split) — kırmızı Ara butonu */
.hero-split__content .hero__cta .btn-red.btn-cta {
    animation: hero-aside-ara-pulse 2.1s ease-in-out infinite;
    transition:
        transform 0.35s var(--ease-out),
        box-shadow 0.35s ease,
        background 0.3s ease,
        filter 0.35s ease;
}

.hero-split__content .hero__cta .btn-red.btn-cta:hover,
.hero-split__content .hero__cta .btn-red.btn-cta:focus-visible {
    animation-play-state: paused;
}

/* YORUMLAR BÖLÜMÜ */
.testimonials-section {
    padding: 55px 0 128px;
    background: #f8f9fa;
    overflow: visible;
}

.testimonials-section h2 {
    text-align: center;
    font-size: clamp(1.65rem, 3vw, 2.15rem);
    color: var(--navy);
    font-weight: 700;
    margin-bottom: 28px;
    letter-spacing: -0.032em;
    line-height: 1.2;
}

/* Google rating — küçük, zarif; başlık altı ortada */
.google-rating-card {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    gap: 13px;
    width: 100%;
    max-width: 380px;
    margin: 0 auto 44px;
    padding: 13px 17px;
    background: #fff;
    border-radius: 14px;
    box-shadow: 0 1px 3px rgba(15, 23, 42, 0.04), 0 8px 24px rgba(15, 23, 42, 0.06);
    border: 1px solid rgba(226, 232, 240, 0.85);
}

.google-rating-card__content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 3px;
    min-width: 0;
}

.google-rating-card__g {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    background: linear-gradient(180deg, #4285f4 0%, #34a853 42%, #fbbc04 72%, #ea4335 100%);
    color: #fff;
    font-size: 1rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    line-height: 1;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.08);
}

/* Sıra: yıldızlar → puan → alt metin */
.google-rating-card__stars {
    display: flex;
    align-items: center;
    gap: 5px;
    line-height: 1;
    margin-bottom: 4px;
}

.google-rating-card__glyph {
    color: var(--star-gold);
    font-size: 1.12rem;
    line-height: 1;
    filter: drop-shadow(0 1px 2px rgba(244, 180, 0, 0.5));
}

.google-rating-card__score {
    margin: 0;
    line-height: 1;
    display: flex;
    align-items: baseline;
    gap: 2px;
}

.google-rating-card__num {
    font-size: 1.68rem;
    font-weight: 700;
    color: #0f172a;
    letter-spacing: -0.03em;
}

.google-rating-card__den {
    font-size: 0.95rem;
    font-weight: 600;
    color: #64748b;
}

.google-rating-card__sub {
    margin: 0;
    font-size: 0.74rem;
    color: var(--muted);
    font-weight: 500;
    line-height: 1.4;
    text-align: left;
}

/* Yorumlar — masaüstü max 3 sütun, kart ~340–360px */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 360px));
    justify-content: center;
    gap: 40px 36px;
    width: 100%;
    list-style: none;
    margin: 0 auto;
    padding: 0;
    align-content: start;
}

@media (max-width: 1100px) {
    .testimonials-grid {
        grid-template-columns: repeat(2, minmax(0, 360px));
        gap: 32px 28px;
    }
}

@media (max-width: 639px) {
    .testimonials-grid {
        grid-template-columns: minmax(0, 1fr);
        gap: 22px;
    }
}

.testimonial-card {
    width: 100%;
    min-width: 0;
    background: #fff;
    border-radius: var(--radius-card);
    padding: 28px 26px 24px;
    box-shadow: 0 2px 8px rgba(15, 23, 42, 0.04), 0 10px 36px rgba(15, 23, 42, 0.06);
    border: 1px solid rgba(226, 232, 240, 0.95);
    transition: box-shadow 0.55s var(--ease-premium), transform 0.55s var(--ease-premium), border-color 0.45s ease;
}

.testimonial-card:hover {
    box-shadow: 0 18px 50px rgba(10, 37, 64, 0.11);
    transform: translateY(-4px);
    border-color: rgba(10, 37, 64, 0.1);
}

.testimonial-card__stars {
    display: flex;
    gap: 6px;
    margin-bottom: 18px;
    letter-spacing: 0;
    align-items: center;
}

.testimonial-card__glyph {
    color: var(--star-gold);
    font-size: 1.28rem;
    line-height: 1;
    filter: drop-shadow(0 1px 2px rgba(244, 180, 0, 0.45));
}

.testimonial-card__text {
    font-size: 0.935rem;
    color: #334155;
    line-height: 1.72;
    margin: 0 0 18px;
}

.testimonial-card__who {
    font-size: 0.875rem;
    color: var(--navy);
    margin: 0 0 6px;
    font-weight: 600;
}

.testimonial-card__time {
    font-size: 0.78rem;
    color: #64748b;
    margin: 0;
}

/* HİZMETLER */
.services-section {
    padding: 120px 0;
    background: #fff;
}

.services-section h2 {
    text-align: center;
    font-size: clamp(1.65rem, 3vw, 2.3rem);
    color: var(--navy);
    font-weight: 700;
    margin-bottom: 20px;
    letter-spacing: -0.03em;
    line-height: 1.22;
}

.section-lead {
    text-align: center;
    max-width: 640px;
    margin: 0 auto 56px;
    font-size: 1.08rem;
    color: var(--muted);
    line-height: 1.7;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 28px;
}

.service-card {
    position: relative;
    /* overflow: hidden köşe süslerini (negatif inset) kırptığı için kullanılmıyor */
    overflow: visible;
    padding: 34px 28px;
    background: #ffffff;
    border-radius: var(--radius-card);
    font-weight: 700;
    font-size: 1.18rem;
    text-align: center;
    color: #0b223c;
    box-shadow: 0 10px 30px rgba(10, 37, 64, 0.1);
    border: 1px solid rgba(10, 37, 64, 0.12);
    transition: border-color 0.4s var(--ease-premium), transform 0.45s var(--ease-premium), box-shadow 0.45s ease;
    line-height: 1.45;
}

.service-card::before,
.service-card::after {
    content: "";
    position: absolute;
    width: 52px;
    height: 52px;
    pointer-events: none;
    opacity: 0.88;
    transition: transform 0.35s var(--ease-out), opacity 0.35s ease;
}

.service-card::before {
    top: 10px;
    left: 10px;
    border-top: 3px solid rgba(230, 57, 57, 0.72);
    border-left: 3px solid rgba(230, 57, 57, 0.72);
    border-top-left-radius: 14px;
}

.service-card::after {
    right: 10px;
    bottom: 10px;
    border-right: 3px solid rgba(10, 37, 64, 0.45);
    border-bottom: 3px solid rgba(10, 37, 64, 0.45);
    border-bottom-right-radius: 14px;
}

.service-card--lg {
    min-height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-card:hover {
    border-color: rgba(230, 57, 57, 0.45);
    transform: translateY(-4px);
    box-shadow: 0 18px 44px rgba(10, 37, 64, 0.16);
}

.service-card:hover::before,
.service-card:hover::after {
    opacity: 0.9;
    transform: scale(1.06);
}

/* BÖLGELER — 3 sütun (kart + 2 kolon pill grid) */
.regions-section {
    padding: 100px 0 112px;
    background: linear-gradient(180deg, #f1f5f9 0%, #f8fafc 45%, #eef2f7 100%);
}

.regions-section h2 {
    text-align: center;
    color: var(--navy);
    margin-bottom: 16px;
    font-size: clamp(1.65rem, 3vw, 2.2rem);
    font-weight: 700;
    line-height: 1.25;
    letter-spacing: -0.03em;
}

.regions-section > .container > .section-lead {
    max-width: 720px;
    margin-bottom: 44px;
    font-size: 1.05rem;
    line-height: 1.75;
}

.regions-columns {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 28px 32px;
    align-items: start;
    margin-top: 0;
}

/* Sütun: arka plan şeffaf; kartlar yalnızca ilçe linklerinde */
.regions-section .region-column {
    background: transparent;
    border-radius: 0;
    padding: 0;
    border: none;
    box-shadow: none;
}

.region-column h3 {
    color: var(--navy);
    margin: 0 0 18px;
    font-size: 1.22rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    padding-bottom: 14px;
    border-bottom: none;
    position: relative;
}

.region-column h3::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 2px;
    background: var(--red);
    border-radius: 1px;
}

.region-links {
    list-style: none;
}

.region-links li {
    margin-bottom: 10px;
}

.region-links a {
    display: block;
    padding: 11px 14px;
    background: white;
    border-radius: 10px;
    text-decoration: none;
    color: var(--text);
    font-weight: 500;
    font-size: 0.96rem;
    box-shadow: 0 4px 14px rgba(0,0,0,0.05);
    transition: background 0.25s ease, color 0.25s ease, transform 0.25s ease;
}

.region-links a:hover {
    background: var(--red);
    color: white;
    transform: translateX(6px);
}

.region-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 8px 10px;
    margin-top: 4px;
}

/* Ana sayfa — dikey beyaz kartlar (tam genişlik, hafif gölge) */
.regions-section .region-pills {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 0;
}

.regions-section .region-pills .tag-pill--light {
    width: 100%;
    justify-content: center;
    text-align: center;
    padding: 12px 16px;
    font-size: 0.92rem;
    font-weight: 600;
    border-radius: 8px;
    border: 1px solid rgba(10, 37, 64, 0.12);
    background: #fff;
    color: #334155;
    box-shadow: 0 2px 8px rgba(10, 37, 64, 0.06);
}

.regions-section .region-pills .tag-pill--light:hover {
    border-color: rgba(230, 57, 57, 0.4);
    color: var(--red);
    transform: translateY(-1px);
    box-shadow: 0 6px 16px rgba(10, 37, 64, 0.1);
}

/* Ortak pill etiketleri — hizmet bölgeleri + ilgili aramalar */
.tag-pill {
    display: inline-flex;
    align-items: center;
    padding: 9px 16px;
    border-radius: 999px;
    font-size: 0.88rem;
    font-weight: 600;
    text-decoration: none;
    line-height: 1.3;
    transition:
        background 0.2s ease,
        border-color 0.2s ease,
        color 0.2s ease,
        transform 0.2s ease;
}

.tag-pill--light {
    color: var(--navy);
    background: #fff;
    border: 1px solid rgba(10, 37, 64, 0.12);
    box-shadow: 0 2px 8px rgba(10, 37, 64, 0.06);
}

.tag-pill--light:hover {
    border-color: rgba(230, 57, 57, 0.35);
    color: var(--red);
    transform: translateY(-1px);
}

.tag-pill--dark {
    color: rgba(255, 255, 255, 0.95);
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.22);
}

.tag-pill--dark:hover {
    background: rgba(255, 255, 255, 0.16);
    border-color: rgba(255, 255, 255, 0.35);
    color: #fff;
}

/* İlgili aramalar — koyu bant (görseldeki gibi) */
.related-searches {
    position: relative;
    padding: 56px 0 64px;
    overflow: hidden;
}

.related-searches__bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    background:
        linear-gradient(115deg, rgba(8, 18, 32, 0.94) 0%, rgba(10, 37, 64, 0.9) 42%, rgba(5, 12, 22, 0.95) 100%),
        radial-gradient(ellipse 90% 60% at 20% 20%, rgba(230, 57, 57, 0.12), transparent 55%),
        linear-gradient(180deg, #0d2138 0%, #050a12 100%);
}

.related-searches__bg::after {
    content: "";
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
    opacity: 0.5;
    pointer-events: none;
}

.related-searches__inner {
    position: relative;
    z-index: 1;
}

.related-searches__title {
    margin: 0;
    font-size: clamp(1.35rem, 2.5vw, 1.75rem);
    font-weight: 700;
    color: #fff;
    letter-spacing: -0.02em;
}

.related-searches__lead {
    margin: 10px 0 0;
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.72);
    line-height: 1.5;
    max-width: 40rem;
}

.related-searches__tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 12px;
    margin: 22px 0 0;
    padding: 0;
    list-style: none;
}

.related-searches__tags li {
    margin: 0;
}

.location__areas--pills {
    display: grid;
    gap: 22px;
}

.location__desc--pills {
    display: flex;
    flex-wrap: wrap;
    gap: 8px 10px;
    margin-top: 8px;
}

.location__lead--disclaimer {
    margin: 8px 0 16px;
    font-size: 0.92rem;
    color: var(--muted);
    line-height: 1.55;
    max-width: 52rem;
}

.location--hizmet-bolge .location__title {
    margin-bottom: 0;
}

/* FOOTER */
.site-footer {
    background: var(--navy);
    color: #e2e8f0;
    padding: 88px 0 44px;
}

.footer-grid {
    display: grid;
    grid-template-columns: minmax(200px, 1.4fr) repeat(4, minmax(140px, 1fr));
    gap: 40px 32px;
    margin-bottom: 48px;
}

.footer-col h5,
.footer-col h6,
.footer-col__title {
    color: white;
    font-weight: 700;
    margin: 0 0 18px;
    font-size: 1.08rem;
}

.footer-col__title--sm {
    font-size: 0.95rem;
}

.footer-col p {
    font-size: 0.95rem;
    line-height: 1.65;
}

.footer-col .footer-phone {
    margin-top: 14px;
}

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

.footer-col li {
    margin-bottom: 10px;
    font-size: 0.92rem;
}

.site-footer a {
    color: #d1d5db;
    text-decoration: none;
    transition: color 0.2s ease;
}

.site-footer a:hover {
    color: var(--red);
}

.footer-bottom {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    padding-top: 32px;
    border-top: 1px solid rgba(255,255,255,0.12);
    font-size: 0.9rem;
}

.footer-legal {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

/* Sabit sağ-alt CTA: Ara + WhatsApp */
@keyframes floating-cta-pulse-wa {
    0%,
    100% {
        transform: scale(1);
        opacity: 1;
        box-shadow: 0 8px 26px rgba(37, 211, 102, 0.42);
    }
    50% {
        transform: scale(1.056);
        opacity: 0.94;
        box-shadow: 0 12px 36px rgba(37, 211, 102, 0.55);
    }
}

@keyframes floating-cta-pulse-call {
    0%,
    100% {
        transform: scale(1);
        opacity: 1;
        box-shadow: 0 8px 26px rgba(230, 57, 57, 0.38);
    }
    50% {
        transform: scale(1.042);
        opacity: 0.95;
        box-shadow: 0 11px 32px rgba(230, 57, 57, 0.5);
    }
}

.floating-cta {
    position: fixed;
    z-index: 99999;
    right: max(16px, env(safe-area-inset-right, 0px));
    bottom: max(16px, env(safe-area-inset-bottom, 0px));
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 11px;
    pointer-events: none;
}

.floating-cta__btn {
    pointer-events: auto;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: #fff;
    font-weight: 700;
    font-size: 0.9rem;
    letter-spacing: 0.02em;
    border: none;
    cursor: pointer;
    transition:
        transform 0.32s var(--ease-out),
        box-shadow 0.32s ease,
        opacity 0.28s ease,
        filter 0.28s ease;
}

.floating-cta__btn:focus-visible {
    outline: 3px solid rgba(255, 255, 255, 0.95);
    outline-offset: 3px;
}

.floating-cta__btn--call {
    min-height: 48px;
    padding: 0 18px 0 16px;
    gap: 8px;
    border-radius: 999px;
    background: #e63939;
    animation: floating-cta-pulse-call 2.35s ease-in-out infinite;
}

.floating-cta__btn--call .icon--phone {
    width: 22px;
    height: 22px;
    flex-shrink: 0;
}

.floating-cta__btn--wa {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: #25d366;
    animation: floating-cta-pulse-wa 2.95s ease-in-out infinite;
}

.floating-cta__btn--wa .icon--whatsapp {
    width: 26px;
    height: 26px;
}

.floating-cta__btn--call:hover {
    animation-play-state: paused;
    transform: scale(1.06) translateY(-2px);
    opacity: 1;
    filter: brightness(1.06);
    box-shadow: 0 14px 40px rgba(230, 57, 57, 0.52);
}

.floating-cta__btn--wa:hover {
    animation-play-state: paused;
    transform: scale(1.08) translateY(-2px);
    opacity: 1;
    filter: brightness(1.05);
    box-shadow: 0 14px 42px rgba(37, 211, 102, 0.58);
}

@media (min-width: 769px) {
    .floating-cta {
        flex-direction: row;
        align-items: center;
        gap: 14px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .floating-cta__btn--call,
    .floating-cta__btn--wa {
        animation: none;
    }

    .floating-cta__btn--call:hover,
    .floating-cta__btn--wa:hover {
        transform: none;
        filter: none;
    }
}

@media (max-width: 1100px) {
    .regions-columns {
        grid-template-columns: 1fr;
        max-width: 560px;
        margin-left: auto;
        margin-right: auto;
    }
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .container {
        padding-left: 18px;
        padding-right: 18px;
    }

}

@media (max-width: 768px) {
    /* Üst bar — mobilde kompakt, iki buton yan yana */
    .header {
        padding: 14px 0;
    }
    .header .container {
        flex-wrap: nowrap;
        gap: 10px;
        align-items: center;
    }
    .header .logo {
        flex: 1 1 auto;
        min-width: 0;
        gap: 8px;
    }

    .header .logo__mark {
        width: 34px;
        height: 34px;
        border-radius: 10px;
    }

    .header .logo__bolt {
        width: 18px;
        height: 18px;
    }

    .header .logo__line--top {
        font-size: 0.72rem;
    }

    .header .logo__line--bottom {
        font-size: clamp(0.98rem, 4.2vw, 1.16rem);
    }
    .header .header-buttons {
        flex-wrap: nowrap;
        gap: 6px;
        flex: 0 0 auto;
        align-items: center;
    }
    .header .phone-btn,
    .header .whatsapp-header {
        padding: 9px 12px;
        min-height: 40px;
        font-size: 0.8rem;
        font-weight: 600;
        border-radius: 10px;
        gap: 5px;
        white-space: nowrap;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.12);
    }
    .header .phone-btn .icon--phone,
    .header .whatsapp-header .icon--whatsapp {
        width: 1.05em;
        height: 1.05em;
    }

    .hero {
        padding: 72px 0 56px;
    }
    .hero__title,
    .hero h1.hero__title {
        margin-bottom: 22px;
    }
    .hero .lead,
    .hero__lead {
        margin-bottom: 28px;
    }
    .trust-cards {
        grid-template-columns: 1fr 1fr;
        gap: 12px;
        margin-bottom: 28px;
    }
    .trust-card {
        padding: 12px 10px;
        font-size: 0.8rem;
    }
    .cta-buttons {
        flex-direction: column;
        align-items: stretch;
        gap: 10px;
    }
    .btn-red, .btn-navy, .btn-cta {
        min-width: 0;
        width: 100%;
        max-width: min(100%, 300px);
        margin-left: auto;
        margin-right: auto;
        padding: 10px 16px;
        font-size: 0.88rem;
        font-weight: 600;
    }
    .google-rating-card {
        max-width: min(380px, 100%);
        padding: 12px 14px;
        gap: 12px;
    }

    .google-rating-card__g {
        width: 34px;
        height: 34px;
        font-size: 0.95rem;
        border-radius: 7px;
    }

    .google-rating-card__num {
        font-size: 1.5rem;
    }

    .google-rating-card__sub {
        font-size: 0.72rem;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    .floating-cta {
        right: max(12px, env(safe-area-inset-right, 0px));
        bottom: max(12px, env(safe-area-inset-bottom, 0px));
        gap: 9px;
    }

    .floating-cta__btn--call {
        min-height: 44px;
        padding: 0 15px 0 13px;
        font-size: 0.84rem;
        gap: 6px;
    }

    .floating-cta__btn--call .icon--phone {
        width: 20px;
        height: 20px;
    }

    .floating-cta__btn--wa {
        width: 46px;
        height: 46px;
    }

    .floating-cta__btn--wa .icon--whatsapp {
        width: 23px;
        height: 23px;
    }
}

@media (max-width: 992px) {
    .header .container {
        flex-wrap: nowrap;
        gap: 10px;
    }

    .header-nav,
    .header-buttons {
        display: none;
    }

    .mobile-menu-toggle {
        display: inline-flex;
        flex: 0 0 auto;
    }
}

/* İç link cümleleri + E-E-A-T blokları (ilçe / hizmet şablonları) */
.internal-links-prose {
    font-size: 1.02rem;
    line-height: 1.75;
    color: var(--text);
    max-width: 900px;
}

.internal-links-prose--tight {
    margin-top: 1rem;
    font-size: 0.98rem;
    color: var(--muted);
}

.internal-inline-link {
    color: var(--navy);
    font-weight: 600;
    text-decoration: underline;
    text-decoration-thickness: 1px;
    text-underline-offset: 3px;
}

.internal-inline-link:hover {
    color: var(--red);
}

.eeat-block .section__subtitle {
    max-width: 720px;
}

.eeat-process {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 1rem;
    max-width: 880px;
}

@media (min-width: 768px) {
    .eeat-process {
        grid-template-columns: 1fr 1fr;
        gap: 1.25rem 1.5rem;
    }
}

.eeat-process__step {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    background: #fff;
    border-radius: var(--radius-card);
    padding: 1.1rem 1.15rem;
    border: 1px solid rgba(10, 37, 64, 0.07);
    box-shadow: var(--shadow-soft);
}

.eeat-process__num {
    flex-shrink: 0;
    width: 2rem;
    height: 2rem;
    border-radius: 10px;
    background: rgba(230, 57, 57, 0.12);
    color: var(--red);
    font-weight: 700;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.eeat-process__title {
    font-size: 1.02rem;
    font-weight: 700;
    color: var(--navy);
    margin: 0 0 0.35rem;
    letter-spacing: -0.02em;
}

.eeat-process__desc {
    margin: 0;
    font-size: 0.94rem;
    color: var(--muted);
    line-height: 1.6;
}

.eeat-checklist {
    list-style: none;
    margin: 0;
    padding: 0;
    max-width: 820px;
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
}

.eeat-checklist__item {
    position: relative;
    padding: 0.95rem 1rem 0.95rem 2.5rem;
    background: #fff;
    border-radius: 14px;
    border: 1px solid rgba(10, 37, 64, 0.07);
    font-size: 0.95rem;
    line-height: 1.58;
    color: var(--text);
    box-shadow: var(--shadow-soft);
}

.eeat-checklist__item::before {
    content: '✓';
    position: absolute;
    left: 0.85rem;
    top: 0.95rem;
    font-weight: 700;
    color: var(--red);
    font-size: 0.95rem;
}

/* Ana sayfa — SSS (FAQPage JSON-LD ile aynı metin; sayfa içi görünür içerik) */
.homepage-faq {
    padding: 72px 0 80px;
    background: #fff;
    border-top: 1px solid rgba(10, 37, 64, 0.06);
}

.homepage-faq__title {
    font-size: clamp(1.45rem, 2.8vw, 2rem);
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 12px;
    letter-spacing: -0.03em;
}

.homepage-faq__lead {
    font-size: 1rem;
    color: var(--muted);
    max-width: 720px;
    line-height: 1.65;
    margin-bottom: 28px;
}

.homepage-faq__list {
    max-width: 800px;
    margin: 0;
    padding: 0;
}

.homepage-faq__q {
    font-weight: 700;
    color: var(--navy);
    font-size: 1.02rem;
    margin: 1.25rem 0 0.4rem;
    padding: 0;
}

.homepage-faq__q:first-child {
    margin-top: 0;
}

.homepage-faq__a {
    margin: 0 0 0.25rem;
    padding: 0 0 0.85rem;
    border-bottom: 1px solid rgba(10, 37, 64, 0.08);
    color: var(--text);
    font-size: 0.98rem;
    line-height: 1.65;
}

.homepage-faq__a:last-of-type {
    border-bottom: none;
    padding-bottom: 0;
}

/* Ilce/hizmet hero yan kartinda ek guven metni */
.hero-aside-card__microproof {
    margin: 0 0 0.95rem;
    font-size: 0.78rem;
    color: var(--navy);
    font-weight: 600;
    line-height: 1.45;
    opacity: 0.9;
}

/* Below-the-fold bolumlerde ilk boyamayi hizlandirir (LCP disi icerik) */
.testimonials-section,
.services-section,
.about-section,
.districts-section,
.regions-section,
.homepage-faq,
.site-footer {
    content-visibility: auto;
    contain-intrinsic-size: 1px 920px;
}
