/**
 * Router / app/views iç sayfaları — ana site (styles.css) ile uyumlu açık tema.
 * Eski styles.min (koyu) sınıfları: .hero__grid, .btn--primary, .section, .card vb.
 */

body.app-router-page {
    background: var(--gray);
    color: var(--text);
}

.app-router-page .skip {
    position: absolute;
    left: -9999px;
    top: 10px;
    padding: 10px 12px;
    border-radius: 10px;
    background: #fff;
    color: var(--navy);
    z-index: 10000;
}

.app-router-page .skip:focus {
    left: 12px;
}

.app-main {
    min-height: 40vh;
}

/* Hero — iç sayfa (iki sütun / form) */
body.app-router-page .hero {
    text-align: left;
    padding: 48px 0 56px;
    background: linear-gradient(180deg, #ffffff 0%, #f1f5f9 48%, var(--gray) 100%);
}

body.app-router-page .hero .container {
    max-width: 1280px;
}

body.app-router-page .hero__grid {
    display: grid;
    grid-template-columns: 1.12fr 0.88fr;
    gap: 28px;
    align-items: start;
}

body.app-router-page .hero__content {
    min-width: 0;
}

body.app-router-page .hero .hero__title,
body.app-router-page .hero h1.hero__title {
    text-align: left;
    margin-left: 0;
    margin-right: 0;
    max-width: none;
    font-size: clamp(1.65rem, 3.2vw, 2.45rem);
    color: var(--navy);
    margin-bottom: 14px;
}

body.app-router-page .hero__subtitle {
    text-align: left;
    margin: 0 0 18px;
    max-width: 56ch;
    color: var(--muted);
    font-size: clamp(1rem, 1.5vw, 1.1rem);
    line-height: 1.65;
}

body.app-router-page .accent,
body.app-router-page .hero .accent {
    color: var(--red);
}

body.app-router-page .badge {
    display: inline-flex;
    align-items: center;
    padding: 8px 14px;
    border-radius: 999px;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--navy);
    background: rgba(230, 57, 57, 0.08);
    border: 1px solid rgba(230, 57, 57, 0.2);
}

body.app-router-page .hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 18px;
    justify-content: flex-start;
}

/* İlçe sayfası — ana sayfa tarzı ortalı hero + iki slayt */
body.app-router-page .hero.hero--district-marketing {
    text-align: center;
    padding: 88px 0 76px;
    background: linear-gradient(180deg, #ffffff 0%, #f8fafc 52%, var(--gray) 100%);
}

body.app-router-page .hero.hero--district-marketing .hero__title,
body.app-router-page .hero.hero--district-marketing h1.hero__title,
body.app-router-page .hero.hero--district-marketing h2.hero__title {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
    max-width: 1020px;
    font-size: clamp(1.85rem, 3.8vw, 3.05rem);
    font-weight: 700;
    line-height: 1.08;
    letter-spacing: -0.035em;
    color: var(--navy);
}

body.app-router-page .hero.hero--district-marketing h2.hero__title {
    font-size: clamp(1.5rem, 3vw, 2.35rem);
}

body.app-router-page .hero.hero--district-marketing .lead,
body.app-router-page .hero.hero--district-marketing .hero__lead {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
    max-width: 620px;
    font-size: clamp(1.05rem, 1.9vw, 1.28rem);
    font-weight: 500;
    line-height: 1.62;
    color: var(--muted);
    margin-bottom: 0;
}

body.app-router-page .district-hero-badge {
    display: inline-flex;
    align-items: center;
    margin: 0 auto 16px;
    padding: 8px 14px;
    border-radius: 999px;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--navy);
    background: rgba(230, 57, 57, 0.1);
    border: 1px solid rgba(230, 57, 57, 0.22);
}

body.app-router-page .district-hero-badge--muted {
    background: rgba(10, 37, 64, 0.06);
    border-color: rgba(10, 37, 64, 0.12);
}

body.app-router-page .district-hero-slider__viewport {
    position: relative;
    min-height: clamp(200px, 30vw, 320px);
    margin: 0 auto 8px;
}

body.app-router-page .district-hero-slider__slide {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    opacity: 0;
    visibility: hidden;
    transition:
        opacity 0.45s ease,
        visibility 0.45s ease;
    pointer-events: none;
}

body.app-router-page .district-hero-slider__slide.is-active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    position: relative;
}

body.app-router-page .hero.hero--district-marketing .hero__trust {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 14px;
    max-width: 900px;
    margin: 32px auto 36px;
}

body.app-router-page .hero.hero--district-marketing .hero__cta {
    justify-content: center;
}

@media (prefers-reduced-motion: reduce) {
    body.app-router-page .district-hero-slider__viewport {
        min-height: 0;
    }

    body.app-router-page .district-hero-slider__slide {
        position: relative;
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
    }

    body.app-router-page .district-hero-slider__slide:not(:first-child) {
        display: none;
    }
}

@media (max-width: 768px) {
    body.app-router-page .hero.hero--district-marketing {
        padding: 52px 0 40px;
    }

    body.app-router-page .hero.hero--district-marketing .hero__trust {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    body.app-router-page .hero-aside-card {
        max-width: min(100%, 340px);
        margin: 0 auto;
    }

    body.app-router-page .hero__cta--stack .btn-cta--compact {
        max-width: 100%;
    }
}

@media (max-width: 480px) {
    body.app-router-page .hero.hero--district-marketing .hero__trust {
        grid-template-columns: 1fr;
    }
}

/* Hero — içerik + yan CTA (ilçe / hizmet) */
body.app-router-page .hero.hero--marketing-split .hero__container {
    max-width: 1200px;
}

body.app-router-page .hero-marketing-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(240px, 300px);
    gap: clamp(1.25rem, 3vw, 2.5rem);
    align-items: start;
    text-align: left;
}

body.app-router-page .hero-marketing-grid__main {
    min-width: 0;
}

body.app-router-page .hero.hero--marketing-split .district-hero-badge,
body.app-router-page .hero.hero--marketing-split .hero__title,
body.app-router-page .hero.hero--marketing-split .hero__lead {
    text-align: left;
    margin-left: 0;
    margin-right: 0;
}

body.app-router-page .hero.hero--marketing-split .district-hero-slider__viewport {
    margin-left: 0;
    margin-right: 0;
}

body.app-router-page .hero.hero--marketing-split .hero__trust {
    margin-left: 0;
    margin-right: 0;
    max-width: none;
}

body.app-router-page .hero-marketing-grid__aside {
    position: sticky;
    top: 96px;
}

body.app-router-page .hero-aside-card {
    background: #fff;
    border-radius: 16px;
    padding: 1.25rem 1.35rem;
    box-shadow: var(--shadow-soft, 0 4px 24px rgba(10, 37, 64, 0.07));
    border: 1px solid rgba(10, 37, 64, 0.08);
}

body.app-router-page .hero-aside-card__title {
    font-weight: 700;
    font-size: 1.05rem;
    color: var(--navy);
    margin: 0 0 0.35rem;
    letter-spacing: -0.02em;
}

body.app-router-page .hero-aside-card__note {
    font-size: 0.88rem;
    color: var(--muted);
    margin: 0 0 1rem;
    line-height: 1.5;
}

body.app-router-page .hero__cta--stack {
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
}

body.app-router-page .btn-cta--compact {
    padding: 9px 16px;
    font-size: 0.86rem;
    font-weight: 600;
    border-radius: 11px;
    gap: 7px;
    box-shadow: 0 4px 14px rgba(10, 37, 64, 0.08);
}

body.app-router-page .btn-cta--compact .icon {
    width: 1.1em;
    height: 1.1em;
}

@media (max-width: 900px) {
    body.app-router-page .hero-marketing-grid {
        grid-template-columns: 1fr;
    }

    body.app-router-page .hero-marketing-grid__aside {
        position: static;
    }

    body.app-router-page .hero.hero--marketing-split .district-hero-badge,
    body.app-router-page .hero.hero--marketing-split .hero__title,
    body.app-router-page .hero.hero--marketing-split .hero__lead {
        text-align: center;
        margin-left: auto;
        margin-right: auto;
    }

    body.app-router-page .hero.hero--marketing-split .district-hero-slider__viewport {
        margin-left: auto;
        margin-right: auto;
    }

    body.app-router-page .hero.hero--marketing-split .hero__trust {
        margin-left: auto;
        margin-right: auto;
        max-width: 900px;
    }
}

/* Butonlar — marketing CTA ile uyumlu */
body.app-router-page .btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    padding: 10px 18px;
    font-size: 0.875rem;
    line-height: 1.25;
    border-radius: 12px;
    font-weight: 600;
    text-decoration: none;
    border: none;
    cursor: pointer;
    box-sizing: border-box;
    transition: transform 0.25s var(--ease-out, cubic-bezier(0.25, 0.46, 0.45, 0.94)),
        box-shadow 0.25s ease,
        background 0.2s ease,
        border-color 0.2s ease;
}

body.app-router-page .btn--lg {
    padding: 11px 20px;
    font-size: 0.94rem;
    font-weight: 600;
}

body.app-router-page .btn--md {
    padding: 9px 16px;
    font-size: 0.86rem;
    font-weight: 600;
}

body.app-router-page .btn--primary {
    background: var(--red);
    color: #fff;
    /* Hafif gölge — büyük bulanık hale (kırmızı leke) gelmesin */
    box-shadow: 0 2px 8px rgba(230, 57, 57, 0.22);
}

body.app-router-page .btn--primary:hover {
    background: var(--red-hover);
    transform: translateY(-1px);
    box-shadow: 0 4px 14px rgba(230, 57, 57, 0.28);
}

body.app-router-page .btn--dark {
    background: var(--navy);
    color: #fff;
    box-shadow: 0 2px 8px rgba(10, 37, 64, 0.12);
}

body.app-router-page .btn--dark:hover {
    background: #051c33;
    transform: translateY(-1px);
    box-shadow: 0 4px 14px rgba(10, 37, 64, 0.16);
}

body.app-router-page .btn--ghost {
    background: #fff;
    color: var(--navy);
    border: 1px solid rgba(10, 37, 64, 0.2);
    box-shadow: 0 1px 3px rgba(10, 37, 64, 0.06);
}

body.app-router-page .btn--ghost:hover {
    background: rgba(10, 37, 64, 0.04);
    border-color: rgba(10, 37, 64, 0.28);
}

body.app-router-page .btn--full {
    width: 100%;
}

/* Tek sütun hero (404, galeri başlık) */
body.app-router-page .hero--simple {
    text-align: center;
    padding: 40px 0 32px;
}

body.app-router-page .galeri-hero-head {
    text-align: center;
    padding: 20px 0 8px;
}

body.app-router-page .galeri-hero-head .section__title {
    font-size: clamp(1.75rem, 3vw, 2.25rem);
}

/* Breadcrumb (ilçe sayfası) */
body.app-router-page .app-breadcrumb {
    padding: 1rem 0 0;
    font-size: 0.9rem;
    color: var(--muted);
}

body.app-router-page .app-breadcrumb a {
    color: var(--muted);
    text-decoration: none;
}

body.app-router-page .app-breadcrumb a:hover {
    color: var(--red);
}

/* İlçe FAQ listesi */
body.app-router-page .district-faq {
    max-width: 48rem;
}

body.app-router-page .district-faq dt {
    font-weight: 600;
    margin-top: 1rem;
    color: var(--navy);
}

body.app-router-page .district-faq dd {
    margin: 0.35rem 0 0;
    color: #3d4a57;
}

body.app-router-page .section__cta--center {
    text-align: center;
}

body.app-router-page .hero__trust {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
    margin-top: 20px;
}

body.app-router-page .trustItem {
    padding: 12px 14px;
    border-radius: 12px;
    background: #fff;
    border: 1px solid rgba(10, 37, 64, 0.06);
    box-shadow: var(--shadow-soft);
}

body.app-router-page .trustItem__title {
    font-weight: 700;
    font-size: 0.95rem;
    color: var(--navy);
}

body.app-router-page .trustItem__desc {
    margin-top: 4px;
    font-size: 0.8rem;
    color: var(--muted);
    line-height: 1.4;
}

/* Kart / form */
body.app-router-page .hero__card {
    position: relative;
}

body.app-router-page .card {
    border-radius: var(--radius-card);
    padding: 22px;
    background: #fff;
    border: 1px solid rgba(10, 37, 64, 0.08);
    box-shadow: var(--shadow-soft);
}

body.app-router-page .card__title {
    margin: 0;
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--navy);
}

body.app-router-page .card__title--spaced {
    margin-top: 16px;
}

body.app-router-page .card__desc {
    margin: 8px 0 0;
    color: var(--muted);
    font-size: 0.95rem;
    line-height: 1.55;
}

body.app-router-page .card--dark {
    background: #fff;
    border: 1px solid rgba(10, 37, 64, 0.08);
    box-shadow: var(--shadow-soft);
}

body.app-router-page .form {
    margin-top: 12px;
}

body.app-router-page .field {
    display: grid;
    gap: 6px;
    margin-top: 12px;
}

body.app-router-page .field__label {
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--navy);
}

body.app-router-page .field__control {
    width: 100%;
    border-radius: 12px;
    border: 1px solid rgba(10, 37, 64, 0.12);
    background: #fff;
    color: var(--text);
    padding: 12px 14px;
    font-size: 0.95rem;
    outline: none;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

body.app-router-page .field__control:focus {
    border-color: rgba(230, 57, 57, 0.45);
    box-shadow: 0 0 0 3px rgba(230, 57, 57, 0.12);
}

body.app-router-page .form__hint {
    margin: 10px 0 0;
    font-size: 0.78rem;
    color: var(--muted);
    line-height: 1.5;
}

body.app-router-page .card__mini,
body.app-router-page .mini {
    margin-top: 14px;
}

body.app-router-page .mini {
    display: flex;
    gap: 10px;
    align-items: center;
    padding: 12px;
    border-radius: 14px;
    border: 1px solid rgba(10, 37, 64, 0.08);
    background: var(--gray);
}

body.app-router-page .mini__icon {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    display: grid;
    place-items: center;
    background: rgba(230, 57, 57, 0.1);
    color: var(--red);
    border: 1px solid rgba(230, 57, 57, 0.2);
}

body.app-router-page .mini__title {
    font-weight: 700;
    font-size: 0.9rem;
    color: var(--navy);
}

body.app-router-page .mini__desc {
    font-size: 0.82rem;
    color: var(--muted);
    margin-top: 2px;
}

/* Bölümler */
body.app-router-page .section {
    padding: 56px 0;
    background: transparent;
}

body.app-router-page .section.section--below-district-hero {
    background: #e9eef4;
    border-top: 1px solid rgba(10, 37, 64, 0.08);
}

body.app-router-page .section--alt {
    background: #fff;
    border-top: 1px solid rgba(10, 37, 64, 0.06);
    border-bottom: 1px solid rgba(10, 37, 64, 0.06);
}

body.app-router-page .section__head {
    margin-bottom: 22px;
}

body.app-router-page .section__title {
    margin: 0;
    font-size: clamp(1.35rem, 2.5vw, 1.75rem);
    font-weight: 700;
    color: var(--navy);
    letter-spacing: -0.02em;
}

body.app-router-page .section__subtitle {
    margin: 8px 0 0;
    color: var(--muted);
    line-height: 1.6;
    font-size: 1rem;
}

body.app-router-page .section__content {
    color: #334155;
    line-height: 1.75;
}

body.app-router-page .section__content p {
    margin: 0 0 1rem;
}

body.app-router-page .district-rich .district-body h2,
body.app-router-page .district-rich .district-body h3 {
    margin: 1.25rem 0 0.5rem;
    color: var(--navy);
    font-size: 1.1rem;
    font-weight: 700;
}

body.app-router-page .district-rich .district-body h2:first-child,
body.app-router-page .district-rich .district-body h3:first-child {
    margin-top: 0;
}

body.app-router-page .section__cta {
    margin-top: 40px;
    padding-top: 4px;
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
    align-items: center;
    width: 100%;
    clear: both;
}

/* Grid hizmet kartları */
body.app-router-page .grid.cards {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

body.app-router-page .service {
    padding: 18px;
    border-radius: var(--radius-card);
    background: #fff;
    border: 1px solid rgba(10, 37, 64, 0.08);
    box-shadow: var(--shadow-soft);
    transition: box-shadow 0.35s ease, transform 0.35s ease;
}

body.app-router-page .service:hover {
    box-shadow: 0 10px 32px rgba(10, 37, 64, 0.1);
    transform: translateY(-2px);
}

body.app-router-page .service__title {
    margin: 0;
    font-size: 1.02rem;
    font-weight: 700;
    color: var(--navy);
}

body.app-router-page .service__title a {
    color: inherit;
    text-decoration: none;
}

body.app-router-page .service__title a:hover {
    color: var(--red);
}

body.app-router-page .service__desc {
    margin: 10px 0 0;
    font-size: 0.9rem;
    color: var(--muted);
    line-height: 1.55;
}

body.app-router-page .service__meta {
    margin-top: 12px;
    display: inline-flex;
    padding: 6px 10px;
    border-radius: 999px;
    font-size: 0.72rem;
    font-weight: 700;
    background: rgba(230, 57, 57, 0.08);
    color: var(--navy);
    border: 1px solid rgba(230, 57, 57, 0.15);
}

/* Why grid */
body.app-router-page .grid.why {
    margin-bottom: 0;
}

body.app-router-page .why {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px;
}

body.app-router-page .why__item {
    padding: 16px;
    border-radius: 14px;
    background: #fff;
    border: 1px solid rgba(10, 37, 64, 0.07);
    box-shadow: var(--shadow-soft);
}

body.app-router-page .why__title {
    font-weight: 700;
    color: var(--navy);
    font-size: 0.95rem;
}

body.app-router-page .why__desc {
    margin-top: 8px;
    font-size: 0.88rem;
    color: var(--muted);
    line-height: 1.55;
}

/* FAQ */
body.app-router-page .faq {
    max-width: 820px;
}

body.app-router-page .faq__item {
    padding: 16px 18px;
    border-radius: 14px;
    background: #fff;
    border: 1px solid rgba(10, 37, 64, 0.08);
    margin-bottom: 10px;
}

body.app-router-page .faq__q {
    font-weight: 700;
    color: var(--navy);
    font-size: 0.98rem;
}

body.app-router-page .faq__a {
    margin-top: 10px;
    color: var(--muted);
    line-height: 1.65;
    font-size: 0.92rem;
}

/* İlgili aramalar bandı (styles.css ile birlikte) */
body.app-router-page .related-searches {
    border-top: 1px solid rgba(10, 37, 64, 0.07);
}

/* İletişim */
body.app-router-page .section--contact {
    padding-bottom: 72px;
}

body.app-router-page .section.section--contact-page-body {
    background: #e9eef4;
    border-top: 1px solid rgba(10, 37, 64, 0.08);
    padding-top: 56px;
    padding-bottom: 80px;
}

/* /iletisim — marketing hero */
body.app-router-page .hero.hero--contact-page {
    text-align: center;
    padding: 64px 0 56px;
    background: linear-gradient(180deg, #ffffff 0%, #f8fafc 52%, var(--gray) 100%);
}

body.app-router-page .hero.hero--contact-page .hero__title,
body.app-router-page .hero.hero--contact-page h1.hero__title {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
    max-width: 920px;
    font-size: clamp(1.85rem, 3.6vw, 3.1rem);
    font-weight: 700;
    line-height: 1.08;
    letter-spacing: -0.035em;
    color: var(--navy);
}

body.app-router-page .hero.hero--contact-page .lead,
body.app-router-page .hero.hero--contact-page .hero__lead {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
    max-width: 560px;
    font-size: clamp(1.05rem, 1.85vw, 1.22rem);
    font-weight: 500;
    line-height: 1.62;
    color: var(--muted);
    margin-bottom: 28px;
}

body.app-router-page .hero.hero--contact-page .hero__cta {
    justify-content: center;
}

body.app-router-page .contact-page {
    display: flex;
    flex-direction: column;
    gap: 36px;
}

body.app-router-page .contact-page__intro {
    text-align: center;
    max-width: 640px;
    margin: 0 auto;
}

body.app-router-page .contact-page__title {
    margin: 0;
    font-size: clamp(1.35rem, 2.4vw, 1.75rem);
    font-weight: 700;
    color: var(--navy);
    letter-spacing: -0.02em;
}

body.app-router-page .contact-page__subtitle {
    margin: 10px 0 0;
    color: var(--muted);
    font-size: 1rem;
    line-height: 1.6;
}

body.app-router-page .contact-page__channels {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

body.app-router-page .contact-channel {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 22px 18px 20px;
    border-radius: 16px;
    background: #fff;
    border: 1px solid rgba(10, 37, 64, 0.08);
    box-shadow: var(--shadow-soft);
    text-decoration: none;
    color: inherit;
    transition:
        transform 0.3s var(--ease-out, cubic-bezier(0.25, 0.46, 0.45, 0.94)),
        box-shadow 0.3s ease,
        border-color 0.25s ease;
}

body.app-router-page .contact-channel:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 36px rgba(10, 37, 64, 0.1);
    border-color: rgba(230, 57, 57, 0.22);
}

body.app-router-page .contact-channel:focus-visible {
    outline: 2px solid var(--red);
    outline-offset: 3px;
}

body.app-router-page .contact-channel__icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    border-radius: 14px;
    margin-bottom: 14px;
}

body.app-router-page .contact-channel__icon .icon {
    width: 28px;
    height: 28px;
}

body.app-router-page .contact-channel__icon--red {
    background: rgba(230, 57, 57, 0.1);
    color: var(--red);
}

body.app-router-page .contact-channel__icon--navy {
    background: rgba(10, 37, 64, 0.08);
    color: var(--navy);
}

body.app-router-page .contact-channel__icon--wa {
    background: rgba(37, 211, 102, 0.12);
    color: #128c7e;
}

body.app-router-page .contact-channel__kicker {
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: var(--muted);
}

body.app-router-page .contact-channel__value {
    margin-top: 6px;
    font-size: 1.12rem;
    font-weight: 700;
    color: var(--navy);
    line-height: 1.3;
}

body.app-router-page .contact-channel__hint {
    margin-top: 10px;
    font-size: 0.82rem;
    color: var(--muted);
    line-height: 1.45;
}

body.app-router-page .contact-emergency {
    border-radius: 18px;
    overflow: hidden;
    background: linear-gradient(135deg, var(--navy) 0%, #0d3358 55%, #0a2540 100%);
    color: #fff;
    box-shadow: 0 16px 48px rgba(10, 37, 64, 0.18);
}

body.app-router-page .contact-emergency__inner {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 22px;
    padding: 26px 28px;
}

body.app-router-page .contact-emergency__title {
    margin: 0;
    font-size: 1.25rem;
    font-weight: 700;
    letter-spacing: -0.02em;
}

body.app-router-page .contact-emergency__desc {
    margin: 8px 0 0;
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.82);
    line-height: 1.55;
    max-width: 420px;
}

body.app-router-page .contact-emergency__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: flex-end;
}

body.app-router-page .contact-emergency .btn-red,
body.app-router-page .contact-emergency .btn-navy {
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

body.app-router-page .contact-emergency__fine {
    margin: 0;
    padding: 14px 28px 18px;
    font-size: 0.8rem;
    line-height: 1.55;
    color: rgba(255, 255, 255, 0.65);
    background: rgba(0, 0, 0, 0.15);
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

body.app-router-page .location--contact-page {
    margin-top: 0;
    padding: 26px 24px 28px;
    background: #fff;
    border: 1px solid rgba(10, 37, 64, 0.08);
    box-shadow: var(--shadow-soft);
}

body.app-router-page .location--contact-page .location__title--lg {
    font-size: clamp(1.2rem, 2vw, 1.45rem);
    margin-bottom: 6px;
}

body.app-router-page .location--contact-page .location__lead {
    margin: 0 0 20px;
    font-size: 0.92rem;
    color: var(--muted);
    line-height: 1.55;
}

body.app-router-page .location--contact-page .location__areas--pills {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px 28px;
}

body.app-router-page .location--contact-page .location__lead--disclaimer {
    margin-bottom: 18px;
}

@media (max-width: 900px) {
    body.app-router-page .contact-page__channels {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin-left: auto;
        margin-right: auto;
    }

    body.app-router-page .location--contact-page .location__areas--pills {
        grid-template-columns: 1fr;
    }

    body.app-router-page .contact-emergency__inner {
        flex-direction: column;
        align-items: stretch;
    }

    body.app-router-page .contact-emergency__actions {
        justify-content: stretch;
    }

    body.app-router-page .contact-emergency__actions .btn-cta {
        flex: 1;
        min-width: min(100%, 240px);
        justify-content: center;
    }
}

@media (max-width: 480px) {
    body.app-router-page .hero.hero--contact-page {
        padding: 48px 0 40px;
    }
}

body.app-router-page .contact {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    align-items: start;
}

body.app-router-page .contact__cards {
    display: grid;
    gap: 12px;
    margin-top: 14px;
}

body.app-router-page .contact__bottom {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px;
    margin-top: 36px;
    align-items: start;
}

body.app-router-page .location--side {
    margin-top: 0;
}

body.app-router-page .faq--side .section__head {
    margin-bottom: 12px;
}

body.app-router-page .contactCard {
    display: block;
    padding: 16px 18px;
    border-radius: 14px;
    border: 1px solid rgba(10, 37, 64, 0.1);
    background: #fff;
    text-decoration: none;
    color: inherit;
    transition: background 0.2s ease, box-shadow 0.2s ease;
}

body.app-router-page .contactCard:hover {
    background: var(--gray);
    box-shadow: var(--shadow-soft);
}

body.app-router-page .contactCard__kicker {
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--muted);
}

body.app-router-page .contactCard__value {
    margin-top: 8px;
    font-weight: 700;
    color: var(--navy);
    font-size: 1.05rem;
}

body.app-router-page .location {
    margin-top: 18px;
    padding: 18px;
    border-radius: 14px;
    background: var(--gray);
    border: 1px solid rgba(10, 37, 64, 0.08);
}

body.app-router-page .location__title {
    font-weight: 700;
    color: var(--navy);
}

body.app-router-page .location__desc,
body.app-router-page .location__link {
    color: var(--muted);
    font-size: 0.92rem;
}

body.app-router-page .location__link {
    text-decoration: none;
    display: block;
    margin-top: 6px;
    transition: color 0.2s ease;
}

body.app-router-page .location__link:hover {
    color: var(--red);
}

body.app-router-page .location__subtitle {
    font-weight: 700;
    color: var(--navy);
    margin-top: 12px;
    font-size: 0.9rem;
}

body.app-router-page .fine {
    font-size: 0.8rem;
    color: var(--muted);
    margin-top: 12px;
}

body.app-router-page .fine--top {
    margin-top: 14px;
}

body.app-router-page .stack {
    display: grid;
    gap: 10px;
}

/* Etiketler (keyword sayfaları) */
body.app-router-page .tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
    margin-top: 18px;
}

body.app-router-page .tag {
    display: inline-block;
    padding: 8px 14px;
    background: #fff;
    border: 1px solid rgba(10, 37, 64, 0.1);
    border-radius: 999px;
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--navy);
    text-decoration: none;
    transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

body.app-router-page .tag:hover {
    background: rgba(230, 57, 57, 0.08);
    border-color: rgba(230, 57, 57, 0.25);
    color: var(--red);
}

/* Galeri */
body.app-router-page .gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 22px;
}

body.app-router-page .gallery-item {
    position: relative;
    border-radius: 14px;
    overflow: hidden;
    aspect-ratio: 16 / 10;
    background: #e2e8f0;
    cursor: pointer;
    box-shadow: var(--shadow-soft);
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}

body.app-router-page .gallery-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 14px 40px rgba(10, 37, 64, 0.12);
}

body.app-router-page .gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

body.app-router-page .gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 14px 16px;
    background: linear-gradient(to top, rgba(10, 37, 64, 0.85), transparent);
    opacity: 0.95;
}

body.app-router-page .gallery-title {
    color: #fff;
    font-weight: 600;
    font-size: 0.95rem;
}

body.app-router-page .lightbox {
    background: rgba(10, 37, 64, 0.92);
}

body.app-router-page .lightbox-close,
body.app-router-page .lightbox-prev,
body.app-router-page .lightbox-next {
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #fff;
}

body.app-router-page .lightbox-caption {
    color: #e2e8f0;
}

/* Sabit alt FAB — tek WhatsApp (marketing ile aynı sınıf) */
body.app-router-page .floating {
    display: none;
}

@media (max-width: 980px) {
    body.app-router-page .hero__grid {
        grid-template-columns: 1fr;
    }

    body.app-router-page .grid.cards {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    body.app-router-page .why {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    body.app-router-page .contact {
        grid-template-columns: 1fr;
    }

    body.app-router-page .contact__bottom {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    body.app-router-page .hero__trust {
        grid-template-columns: 1fr;
    }

    body.app-router-page .grid.cards {
        grid-template-columns: 1fr;
    }

    body.app-router-page .why {
        grid-template-columns: 1fr;
    }

    body.app-router-page .btn--lg {
        padding: 10px 16px;
        font-size: 0.88rem;
    }

    body.app-router-page .section__cta {
        margin-top: 32px;
    }
}

@media (max-width: 480px) {
    body.app-router-page .section__cta {
        flex-direction: column;
        width: 100%;
    }

    body.app-router-page .section__cta .btn {
        width: 100%;
        max-width: min(100%, 300px);
    }
}
