@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap');

:root {
    --background: #f8fafb;
    --surface: #ffffff;
    --text: #111827;
    --muted: #6b7280;
    --border: #e4e9ee;
    --green: #267b5b;
    --green-soft: #eaf5f0;
    --blue: #4d72d8;
    --blue-soft: #eef3ff;
    --purple: #7656c9;
    --purple-soft: #f3efff;
    --orange: #d97706;
    --orange-soft: #fff3e4;
    --shadow: 0 4px 16px rgba(15, 23, 42, 0.05);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    min-width: 320px;
    color: var(--text);
    background:
        radial-gradient(circle at 50% 0%, rgba(38, 123, 91, 0.035), transparent 36%),
        var(--background);
    font-family: "Inter", Arial, sans-serif;
    -webkit-font-smoothing: antialiased;
}

button,
a {
    font: inherit;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    min-height: 76px;
    display: grid;
    grid-template-columns: minmax(210px, 1fr) auto minmax(210px, 1fr);
    align-items: center;
    gap: 24px;
    padding: 0 28px;
    background: rgba(255, 255, 255, 0.94);
    border-bottom: 1px solid var(--border);
    backdrop-filter: blur(16px);
}

.brand {
    display: flex;
    align-items: center;
    gap: 12px;
    justify-self: start;
}

.brand-icon {
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    color: var(--green);
    font-size: 24px;
}

.brand strong,
.brand span {
    display: block;
}

.brand strong {
    font-size: 16px;
    letter-spacing: -0.03em;
}

.brand span {
    margin-top: 4px;
    font-size: 9px;
    letter-spacing: 0.27em;
}

.main-nav {
    align-self: stretch;
    display: flex;
    align-items: stretch;
    gap: 4px;
}

.nav-link {
    position: relative;
    min-width: 130px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 0 18px;
    color: #262b33;
    text-decoration: none;
    border-radius: 8px 8px 0 0;
    transition: background-color 0.2s ease, color 0.2s ease;
}

.nav-link:hover {
    color: var(--green);
    background: #f5faf7;
}

.nav-link.active {
    color: #165f43;
    background: linear-gradient(180deg, #f5faf7 0%, #edf6f1 100%);
}

.nav-link.active::after {
    content: "";
    position: absolute;
    left: 12px;
    right: 12px;
    bottom: 0;
    height: 2px;
    background: var(--green);
    border-radius: 99px;
}

.date-box {
    justify-self: end;
    min-width: 170px;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 14px;
    border: 1px solid var(--border);
    border-radius: 9px;
    background: #fff;
    box-shadow: 0 1px 4px rgba(15, 23, 42, 0.03);
}

.date-box i {
    color: #374151;
}

.date-box strong,
.date-box span {
    display: block;
}

.date-box strong {
    font-size: 13px;
}

.date-box span {
    margin-top: 3px;
    color: var(--muted);
    font-size: 12px;
}

.mobile-menu-button {
    display: none;
    width: 42px;
    height: 42px;
    border: 1px solid var(--border);
    border-radius: 10px;
    background: #fff;
    color: var(--text);
    cursor: pointer;
}

.page {
    width: min(100%, 1740px);
    margin: 0 auto;
    padding: 26px 24px 20px;
}

.page-heading {
    display: flex;
    align-items: center;
    gap: 18px;
    margin-bottom: 24px;
}

.heading-icon {
    width: 58px;
    height: 58px;
    flex: 0 0 58px;
    display: grid;
    place-items: center;
    color: var(--green);
    border: 1px solid #6eaa91;
    border-radius: 50%;
    background: #f3faf6;
    font-size: 24px;
}

.page-heading h1 {
    margin: 0;
    font-size: clamp(24px, 2vw, 30px);
    line-height: 1.2;
    letter-spacing: -0.035em;
}

.page-heading p {
    margin: 7px 0 0;
    color: var(--muted);
    font-size: 15px;
}

.teams {
    display: grid;
    gap: 28px;
}

.team-card {
    overflow: hidden;
    border: 1px solid var(--border);
    border-radius: 10px;
    background: var(--surface);
    box-shadow: var(--shadow);
}

.team-header {
    width: 100%;
    min-height: 69px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 0 26px 0 16px;
    border: 0;
    border-bottom: 1px solid var(--border);
    background: linear-gradient(90deg, var(--surface) 0%, var(--header-soft) 100%);
    color: var(--text);
    cursor: pointer;
    text-align: left;
}

.team-title-group,
.team-header-right,
.cell-with-icon {
    display: flex;
    align-items: center;
}

.team-title-group {
    gap: 14px;
}

.team-header-right {
    gap: 22px;
}

.team-icon {
    width: 46px;
    height: 46px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    color: white;
    background: var(--theme-color);
    box-shadow: inset 0 0 0 1px rgba(255,255,255,.18);
    font-size: 19px;
}

.team-name {
    font-weight: 700;
    font-size: 18px;
}

.plan-badge {
    padding: 6px 12px;
    border-radius: 999px;
    color: var(--theme-color);
    background: var(--badge-soft);
    font-weight: 600;
    font-size: 13px;
}

.toggle-icon {
    color: #52606d;
    font-size: 12px;
    transition: transform 0.25s ease;
}

.team-card.is-collapsed .toggle-icon {
    transform: rotate(180deg);
}

.team-content {
    display: grid;
    grid-template-rows: 1fr;
    transition: grid-template-rows 0.28s ease;
}

.team-card.is-collapsed .team-content {
    grid-template-rows: 0fr;
}

.table-wrapper {
    min-height: 0;
    overflow: hidden;
}

table {
    width: 100%;
    border-collapse: collapse;
    table-layout: fixed;
}

th,
td {
    padding: 10px 16px;
    border-bottom: 1px solid var(--border);
    vertical-align: middle;
    font-size: 13.5px;
}

th {
    color: #596271;
    background: #fff;
    font-size: 12.5px;
    font-weight: 600;
    text-align: left;
}

tbody tr:last-child td {
    border-bottom: 0;
}

tbody tr {
    transition: background-color 0.2s ease;
}

tbody tr:hover {
    background: #fbfcfd;
}

th:nth-child(1) { width: 27%; }
th:nth-child(2) { width: 15.5%; }
th:nth-child(3) { width: 19%; }
th:nth-child(4) { width: 10.5%; }
th:nth-child(5) { width: 17%; }
th:nth-child(6) { width: 11%; }

.cell-with-icon {
    gap: 10px;
    min-width: 0;
}

.person-cell {
    font-weight: 500;
}

.small-icon {
    width: 27px;
    height: 27px;
    flex: 0 0 27px;
    display: grid;
    place-items: center;
    color: var(--theme-color);
    border-radius: 50%;
    background: var(--icon-soft);
    font-size: 12px;
}

.location-icon {
    width: 14px;
    color: #238060;
}

.clock-icon {
    width: 14px;
    color: #687386;
}

.status-column {
    text-align: center;
}

.status-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 88px;
    padding: 5px 10px;
    border-radius: 7px;
    font-size: 12px;
    line-height: 1;
    white-space: nowrap;
}

.status-waiting {
    color: var(--orange);
    background: var(--orange-soft);
}

.status-empty {
    color: #6b7280;
    background: #f1f3f5;
}

.theme-green {
    --theme-color: var(--green);
    --header-soft: #f5faf7;
    --badge-soft: #e7f3ed;
    --icon-soft: #eaf5f0;
}

.theme-blue {
    --theme-color: var(--blue);
    --header-soft: #f6f8ff;
    --badge-soft: #edf2ff;
    --icon-soft: #eef3ff;
}

.theme-purple {
    --theme-color: var(--purple);
    --header-soft: #faf8ff;
    --badge-soft: #f1edff;
    --icon-soft: #f2efff;
}

.info-bar {
    margin-top: 22px;
    min-height: 48px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding: 11px 20px;
    color: #657080;
    border: 1px solid var(--border);
    border-radius: 9px;
    background: rgba(255,255,255,.75);
    box-shadow: 0 2px 8px rgba(15, 23, 42, .025);
    font-size: 12.5px;
}

.info-bar > div {
    display: flex;
    align-items: center;
    gap: 9px;
}

.info-bar i {
    color: #4c6fdc;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

@media (max-width: 1050px) {
    .site-header {
        grid-template-columns: 1fr auto auto;
    }

    .main-nav {
        display: none;
        position: absolute;
        left: 16px;
        right: 16px;
        top: 84px;
        height: auto;
        padding: 10px;
        border: 1px solid var(--border);
        border-radius: 12px;
        background: #fff;
        box-shadow: 0 12px 32px rgba(15, 23, 42, .12);
    }

    .main-nav.is-open {
        display: grid;
    }

    .nav-link {
        min-height: 46px;
        border-radius: 8px;
        justify-content: flex-start;
    }

    .nav-link.active::after {
        display: none;
    }

    .mobile-menu-button {
        display: grid;
        place-items: center;
    }
}

@media (max-width: 760px) {
    .site-header {
        min-height: 68px;
        padding: 0 14px;
        gap: 10px;
    }

    .brand strong {
        font-size: 14px;
    }

    .brand span {
        font-size: 8px;
    }

    .brand-icon {
        width: 34px;
        height: 34px;
        font-size: 20px;
    }

    .date-box {
        display: none;
    }

    .page {
        padding: 20px 12px 16px;
    }

    .page-heading {
        align-items: flex-start;
        gap: 12px;
    }

    .heading-icon {
        width: 48px;
        height: 48px;
        flex-basis: 48px;
        font-size: 20px;
    }

    .page-heading p {
        font-size: 13px;
        line-height: 1.5;
    }

    .teams {
        gap: 18px;
    }

    .team-header {
        min-height: 62px;
        padding: 8px 14px;
    }

    .team-icon {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }

    .team-name {
        font-size: 16px;
    }

    .team-header-right {
        gap: 10px;
    }

    .plan-badge {
        padding: 5px 9px;
        font-size: 11px;
    }

    table,
    thead,
    tbody,
    tr,
    th,
    td {
        display: block;
        width: 100%;
    }

    thead {
        display: none;
    }

    tbody tr {
        padding: 10px 14px;
        border-bottom: 1px solid var(--border);
    }

    tbody tr:last-child {
        border-bottom: 0;
    }

    td {
        display: grid;
        grid-template-columns: 112px minmax(0, 1fr);
        align-items: center;
        gap: 10px;
        padding: 7px 0;
        border: 0;
        text-align: left;
        font-size: 13px;
    }

    td::before {
        content: attr(data-label);
        color: #6b7280;
        font-size: 11.5px;
        font-weight: 600;
    }

    td.status-column {
        text-align: left;
    }

    .status-badge {
        justify-self: start;
    }

    .info-bar {
        align-items: flex-start;
        flex-direction: column;
        gap: 12px;
        padding: 14px;
        line-height: 1.5;
    }
}

@media (max-width: 430px) {
    .brand span {
        display: none;
    }

    td {
        grid-template-columns: 94px minmax(0, 1fr);
    }

    .team-header {
        align-items: center;
    }

    .team-header-right .plan-badge {
        display: none;
    }
}


/* =========================================================
   BÖLGELER SAYFASI
   ========================================================= */

.brand-link {
    color: inherit;
    text-decoration: none;
}

.regions-main {
    padding-top: 30px;
}

.regions-hero {
    position: relative;
    min-height: 340px;
    display: grid;
    grid-template-columns: minmax(0, 1.35fr) minmax(300px, .65fr);
    align-items: center;
    gap: 48px;
    overflow: hidden;
    padding: 50px 58px;
    border: 1px solid #dfe9e4;
    border-radius: 18px;
    background:
        radial-gradient(circle at 85% 20%, rgba(38, 123, 91, .13), transparent 30%),
        linear-gradient(135deg, #f7fbf9 0%, #ffffff 58%, #eef7f2 100%);
    box-shadow: var(--shadow);
}

.regions-hero::before {
    content: "";
    position: absolute;
    left: -90px;
    bottom: -120px;
    width: 270px;
    height: 270px;
    border: 1px solid rgba(38, 123, 91, .1);
    border-radius: 50%;
}

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

.eyebrow,
.section-kicker {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--green);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
}

.regions-hero h1 {
    max-width: 760px;
    margin: 15px 0 16px;
    font-size: clamp(34px, 4vw, 58px);
    line-height: 1.04;
    letter-spacing: -.055em;
}

.regions-hero p {
    max-width: 730px;
    margin: 0;
    color: #5f6a76;
    font-size: 16px;
    line-height: 1.8;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 28px;
}

.primary-button,
.secondary-button {
    min-height: 47px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    padding: 0 18px;
    border-radius: 10px;
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    transition: transform .2s ease, box-shadow .2s ease, background-color .2s ease;
}

.primary-button {
    color: #fff;
    background: var(--green);
    box-shadow: 0 8px 22px rgba(38, 123, 91, .2);
}

.secondary-button {
    color: #244337;
    border: 1px solid #cddbd5;
    background: rgba(255,255,255,.8);
}

.primary-button:hover,
.secondary-button:hover {
    transform: translateY(-2px);
}

.map-visual {
    position: relative;
    width: min(100%, 330px);
    aspect-ratio: 1;
    display: grid;
    place-items: center;
    justify-self: end;
    color: var(--green);
    border-radius: 50%;
    background: rgba(255,255,255,.65);
    border: 1px solid rgba(38,123,91,.12);
    box-shadow: inset 0 0 0 18px rgba(38,123,91,.025);
}

.map-visual > i {
    font-size: 118px;
    opacity: .9;
}

.map-circle {
    position: absolute;
    border: 1px dashed rgba(38,123,91,.18);
    border-radius: 50%;
}

.map-circle-one {
    inset: 28px;
}

.map-circle-two {
    inset: 60px;
}

.map-pin {
    position: absolute;
    width: 40px;
    height: 40px;
    display: grid;
    place-items: center;
    color: #fff;
    background: var(--green);
    border: 5px solid #fff;
    border-radius: 50%;
    box-shadow: 0 8px 18px rgba(38,123,91,.18);
}

.pin-one { top: 37px; right: 44px; }
.pin-two { left: 28px; bottom: 78px; }
.pin-three { right: 25px; bottom: 54px; }

.region-stats {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px;
    margin-top: 20px;
}

.stat-card {
    display: flex;
    align-items: center;
    gap: 14px;
    min-height: 102px;
    padding: 19px;
    border: 1px solid var(--border);
    border-radius: 13px;
    background: #fff;
    box-shadow: 0 3px 13px rgba(15,23,42,.035);
}

.stat-icon {
    width: 48px;
    height: 48px;
    flex: 0 0 48px;
    display: grid;
    place-items: center;
    border-radius: 12px;
    font-size: 18px;
}

.stat-icon.green { color: var(--green); background: var(--green-soft); }
.stat-icon.blue { color: var(--blue); background: var(--blue-soft); }
.stat-icon.purple { color: var(--purple); background: var(--purple-soft); }
.stat-icon.orange { color: var(--orange); background: var(--orange-soft); }

.stat-card strong,
.stat-card span {
    display: block;
}

.stat-card strong {
    font-size: 23px;
    letter-spacing: -.04em;
}

.stat-card div > span {
    margin-top: 3px;
    color: var(--muted);
    font-size: 12px;
}

.coverage-highlight {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr) auto;
    align-items: center;
    gap: 20px;
    margin-top: 28px;
    padding: 25px 28px;
    border: 1px solid #dfe9e4;
    border-radius: 14px;
    background: linear-gradient(90deg, #f5faf7, #fff);
}

.coverage-icon {
    width: 54px;
    height: 54px;
    display: grid;
    place-items: center;
    color: #fff;
    background: var(--green);
    border-radius: 14px;
    font-size: 21px;
}

.coverage-label {
    color: var(--green);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.coverage-highlight h2 {
    margin: 5px 0 5px;
    font-size: 22px;
}

.coverage-highlight p {
    margin: 0;
    color: var(--muted);
    font-size: 13px;
    line-height: 1.6;
}

.coverage-tags {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 8px;
    max-width: 420px;
}

.coverage-tags span {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 10px;
    color: #315244;
    border: 1px solid #dfe9e4;
    border-radius: 999px;
    background: #fff;
    font-size: 11.5px;
    white-space: nowrap;
}

.coverage-tags i {
    color: var(--green);
}

.regions-section {
    margin-top: 42px;
    scroll-margin-top: 105px;
}

.section-heading-row {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 30px;
}

.section-heading-row h2 {
    margin: 7px 0 7px;
    font-size: 28px;
    letter-spacing: -.04em;
}

.section-heading-row p {
    margin: 0;
    color: var(--muted);
    font-size: 13px;
}

.region-search {
    width: min(100%, 390px);
    min-height: 48px;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 0 13px;
    border: 1px solid var(--border);
    border-radius: 11px;
    background: #fff;
    transition: border-color .2s ease, box-shadow .2s ease;
}

.region-search:focus-within {
    border-color: #8bb9a5;
    box-shadow: 0 0 0 4px rgba(38,123,91,.08);
}

.region-search > i {
    color: #7b8490;
}

.region-search input {
    width: 100%;
    border: 0;
    outline: 0;
    background: transparent;
    color: var(--text);
    font: inherit;
    font-size: 13px;
}

.region-search button {
    display: none;
    border: 0;
    background: transparent;
    color: #7b8490;
    cursor: pointer;
}

.region-search.has-value button {
    display: block;
}

.region-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 9px;
    margin: 22px 0 18px;
}

.region-filter {
    min-height: 37px;
    padding: 0 14px;
    color: #596271;
    border: 1px solid var(--border);
    border-radius: 999px;
    background: #fff;
    cursor: pointer;
    font-size: 12px;
    font-weight: 600;
    transition: color .2s ease, background-color .2s ease, border-color .2s ease;
}

.region-filter:hover,
.region-filter.active {
    color: #fff;
    border-color: var(--green);
    background: var(--green);
}

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

.district-card {
    overflow: hidden;
    border: 1px solid var(--border);
    border-radius: 12px;
    background: #fff;
    box-shadow: 0 3px 13px rgba(15,23,42,.035);
    transition: transform .2s ease, box-shadow .2s ease, opacity .2s ease;
}

.district-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(15,23,42,.07);
}

.district-card.is-hidden {
    display: none;
}

.district-header {
    width: 100%;
    min-height: 76px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    padding: 14px 16px;
    border: 0;
    background: #fff;
    color: inherit;
    text-align: left;
    cursor: pointer;
}

.district-title,
.district-header-actions {
    display: flex;
    align-items: center;
}

.district-title {
    min-width: 0;
    gap: 13px;
}

.district-number {
    width: 39px;
    height: 39px;
    flex: 0 0 39px;
    display: grid;
    place-items: center;
    color: var(--green);
    border-radius: 10px;
    background: var(--green-soft);
    font-size: 11px;
    font-weight: 700;
}

.district-title strong,
.district-title small {
    display: block;
}

.district-title strong {
    font-size: 15px;
}

.district-title small {
    margin-top: 4px;
    color: var(--muted);
    font-size: 10.5px;
    font-weight: 500;
}

.district-header-actions {
    gap: 12px;
}

.region-status {
    padding: 6px 9px;
    border-radius: 999px;
    font-size: 10.5px;
    font-weight: 600;
    white-space: nowrap;
}

.status-active {
    color: var(--green);
    background: var(--green-soft);
}

.status-planned {
    color: var(--blue);
    background: var(--blue-soft);
}

.status-request {
    color: var(--orange);
    background: var(--orange-soft);
}

.district-chevron {
    color: #7b8490;
    font-size: 11px;
    transition: transform .25s ease;
}

.district-header[aria-expanded="true"] .district-chevron {
    transform: rotate(180deg);
}

.district-content {
    display: grid;
    grid-template-rows: 0fr;
    border-top: 0 solid var(--border);
    transition: grid-template-rows .28s ease, border-width .28s ease;
}

.district-content.is-open {
    grid-template-rows: 1fr;
    border-top-width: 1px;
}

.district-content-inner {
    min-height: 0;
    overflow: hidden;
    padding: 0 17px;
    transition: padding .28s ease;
}

.district-content.is-open .district-content-inner {
    padding-top: 16px;
    padding-bottom: 17px;
}

.district-content p {
    margin: 0 0 14px;
    color: var(--muted);
    font-size: 12px;
    line-height: 1.65;
}

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

.place-list span {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 7px 9px;
    color: #46515f;
    border: 1px solid #e5e9ed;
    border-radius: 8px;
    background: #fafbfc;
    font-size: 11px;
}

.place-list i {
    color: var(--green);
    font-size: 9px;
}

.district-request-link {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    margin-top: 15px;
    color: var(--green);
    font-size: 11.5px;
    font-weight: 600;
    text-decoration: none;
}

.district-request-link i {
    transition: transform .2s ease;
}

.district-request-link:hover i {
    transform: translateX(3px);
}

.no-region-result {
    padding: 55px 20px;
    border: 1px dashed #ccd6d1;
    border-radius: 14px;
    color: var(--muted);
    background: #fbfdfc;
    text-align: center;
}

.no-region-result i {
    display: block;
    margin-bottom: 13px;
    color: #8aa99b;
    font-size: 34px;
}

.no-region-result strong {
    display: block;
    color: var(--text);
    font-size: 16px;
}

.no-region-result p {
    margin: 7px 0 0;
    font-size: 12px;
}

.service-note {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr) auto;
    align-items: center;
    gap: 16px;
    margin-top: 25px;
    padding: 20px 22px;
    color: #596271;
    border: 1px solid #dce5e0;
    border-radius: 12px;
    background: #f7fbf9;
}

.service-note > i {
    color: var(--green);
    font-size: 20px;
}

.service-note strong {
    display: block;
    margin-bottom: 4px;
    color: var(--text);
    font-size: 13px;
}

.service-note p {
    margin: 0;
    font-size: 12px;
    line-height: 1.6;
}

.service-note a {
    color: var(--green);
    font-size: 12px;
    font-weight: 700;
    text-decoration: none;
    white-space: nowrap;
}

@media (max-width: 1050px) {
    .regions-hero {
        grid-template-columns: 1fr;
    }

    .map-visual {
        display: none;
    }

    .region-stats {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .coverage-highlight {
        grid-template-columns: auto 1fr;
    }

    .coverage-tags {
        grid-column: 1 / -1;
        justify-content: flex-start;
        max-width: none;
    }
}

@media (max-width: 760px) {
    .regions-main {
        padding-top: 18px;
    }

    .regions-hero {
        min-height: auto;
        padding: 31px 22px;
        border-radius: 14px;
    }

    .regions-hero h1 {
        font-size: 36px;
    }

    .regions-hero p {
        font-size: 14px;
        line-height: 1.7;
    }

    .hero-actions {
        align-items: stretch;
        flex-direction: column;
    }

    .primary-button,
    .secondary-button {
        width: 100%;
    }

    .region-stats {
        grid-template-columns: 1fr 1fr;
        gap: 10px;
    }

    .stat-card {
        min-height: 92px;
        padding: 14px;
    }

    .stat-icon {
        width: 41px;
        height: 41px;
        flex-basis: 41px;
    }

    .stat-card strong {
        font-size: 19px;
    }

    .coverage-highlight {
        grid-template-columns: 1fr;
        padding: 20px;
    }

    .coverage-icon {
        width: 46px;
        height: 46px;
    }

    .section-heading-row {
        align-items: stretch;
        flex-direction: column;
    }

    .region-search {
        width: 100%;
    }

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

    .district-header {
        padding: 13px;
    }

    .region-status {
        display: none;
    }

    .service-note {
        grid-template-columns: auto 1fr;
    }

    .service-note a {
        grid-column: 2;
    }
}

@media (max-width: 430px) {
    .region-stats {
        grid-template-columns: 1fr;
    }

    .regions-hero h1 {
        font-size: 31px;
    }

    .district-title small {
        display: none;
    }
}


/* =========================================================
   İLETİŞİM SAYFASI
   ========================================================= */

.contact-main {
    padding-top: 30px;
}

.contact-hero {
    position: relative;
    min-height: 430px;
    display: grid;
    grid-template-columns: minmax(0, 1fr) 320px;
    align-items: center;
    gap: 40px;
    overflow: hidden;
    padding: 56px 60px;
    border-radius: 20px;
    background:
        radial-gradient(circle at 85% 15%, rgba(255,255,255,.18), transparent 25%),
        linear-gradient(135deg, #153f30 0%, #267b5b 55%, #4f9a7a 100%);
    box-shadow: 0 20px 45px rgba(19, 63, 47, .18);
}

.contact-hero::before,
.contact-hero::after {
    content: "";
    position: absolute;
    border: 1px solid rgba(255,255,255,.12);
    border-radius: 50%;
}

.contact-hero::before {
    width: 430px;
    height: 430px;
    right: -120px;
    top: -180px;
}

.contact-hero::after {
    width: 260px;
    height: 260px;
    left: -120px;
    bottom: -150px;
}

.contact-hero-overlay {
    position: absolute;
    inset: 0;
    opacity: .16;
    background-image:
        linear-gradient(30deg, transparent 12%, rgba(255,255,255,.08) 12%, rgba(255,255,255,.08) 13%, transparent 13%),
        linear-gradient(150deg, transparent 12%, rgba(255,255,255,.06) 12%, rgba(255,255,255,.06) 13%, transparent 13%);
    background-size: 48px 48px;
}

.contact-hero-content,
.contact-hero-card {
    position: relative;
    z-index: 2;
}

.contact-eyebrow {
    color: #d8f2e7;
}

.contact-hero h1 {
    margin: 15px 0 18px;
    color: #fff;
    font-size: clamp(38px, 5vw, 68px);
    line-height: .98;
    letter-spacing: -.055em;
}

.contact-hero p {
    max-width: 720px;
    margin: 0;
    color: rgba(255,255,255,.82);
    font-size: 16px;
    line-height: 1.8;
}

.contact-hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 30px;
}

.contact-primary-btn,
.contact-secondary-btn {
    min-height: 49px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    padding: 0 19px;
    border-radius: 10px;
    font-size: 13px;
    font-weight: 700;
    text-decoration: none;
    transition: transform .2s ease, box-shadow .2s ease;
}

.contact-primary-btn {
    color: #205a43;
    background: #fff;
    box-shadow: 0 10px 25px rgba(0,0,0,.12);
}

.contact-secondary-btn {
    color: #fff;
    border: 1px solid rgba(255,255,255,.32);
    background: rgba(255,255,255,.08);
    backdrop-filter: blur(8px);
}

.contact-primary-btn:hover,
.contact-secondary-btn:hover {
    transform: translateY(-2px);
}

.contact-hero-card {
    min-height: 240px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    padding: 30px;
    color: #fff;
    border: 1px solid rgba(255,255,255,.18);
    border-radius: 24px;
    background: rgba(255,255,255,.09);
    box-shadow: inset 0 1px 0 rgba(255,255,255,.12);
    backdrop-filter: blur(14px);
    text-align: center;
}

.hero-card-icon {
    width: 88px;
    height: 88px;
    display: grid;
    place-items: center;
    margin-bottom: 18px;
    color: #205a43;
    border-radius: 24px;
    background: #fff;
    font-size: 36px;
    transform: rotate(-4deg);
}

.contact-hero-card strong {
    font-size: 19px;
}

.contact-hero-card span {
    margin-top: 9px;
    color: rgba(255,255,255,.72);
    font-size: 12px;
    line-height: 1.6;
}

.contact-layout {
    display: grid;
    grid-template-columns: 310px minmax(0, 1fr);
    align-items: start;
    gap: 22px;
    margin-top: 24px;
}

.profile-card {
    position: sticky;
    top: 100px;
    padding: 30px 24px 24px;
    border: 1px solid var(--border);
    border-radius: 16px;
    background:
        radial-gradient(circle at 50% 0%, rgba(38,123,91,.07), transparent 35%),
        #fff;
    box-shadow: var(--shadow);
    text-align: center;
}

.profile-avatar {
    width: 92px;
    height: 92px;
    display: grid;
    place-items: center;
    margin: 0 auto 17px;
    color: #fff;
    border: 6px solid #edf6f1;
    border-radius: 50%;
    background: linear-gradient(135deg, #267b5b, #5fa486);
    font-size: 31px;
    box-shadow: 0 10px 25px rgba(38,123,91,.18);
}

.profile-label {
    color: var(--green);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
}

.profile-card h2 {
    margin: 8px 0 5px;
    font-size: 23px;
    letter-spacing: -.04em;
}

.profile-card > p {
    margin: 0;
    color: var(--muted);
    font-size: 12px;
}

.profile-separator {
    height: 1px;
    margin: 23px 0;
    background: var(--border);
}

.profile-availability {
    display: flex;
    align-items: center;
    gap: 11px;
    text-align: left;
}

.availability-dot {
    width: 10px;
    height: 10px;
    flex: 0 0 10px;
    border-radius: 50%;
    background: #22a06b;
    box-shadow: 0 0 0 5px rgba(34,160,107,.1);
}

.profile-availability strong,
.profile-availability small {
    display: block;
}

.profile-availability strong {
    font-size: 12px;
}

.profile-availability small {
    margin-top: 4px;
    color: var(--muted);
    font-size: 10px;
    line-height: 1.5;
}

.profile-phone-button {
    min-height: 46px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    margin-top: 20px;
    color: #fff;
    border-radius: 10px;
    background: var(--green);
    font-size: 12px;
    font-weight: 700;
    text-decoration: none;
}

.contact-content {
    display: grid;
    gap: 22px;
}

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

.contact-info-card {
    min-height: 128px;
    display: grid;
    grid-template-columns: auto minmax(0, 1fr) auto;
    align-items: center;
    gap: 15px;
    padding: 20px;
    color: inherit;
    border: 1px solid var(--border);
    border-radius: 14px;
    background: #fff;
    box-shadow: 0 3px 13px rgba(15,23,42,.035);
    text-decoration: none;
    transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}

.contact-info-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 28px rgba(15,23,42,.08);
}

.contact-card-icon {
    width: 50px;
    height: 50px;
    display: grid;
    place-items: center;
    border-radius: 13px;
    font-size: 19px;
}

.phone-card .contact-card-icon {
    color: var(--green);
    background: var(--green-soft);
}

.instagram-card .contact-card-icon {
    color: #c13584;
    background: #fceef6;
}

.facebook-card .contact-card-icon {
    color: #1877f2;
    background: #edf4ff;
}

.region-card .contact-card-icon {
    color: var(--orange);
    background: var(--orange-soft);
}

.contact-card-body small,
.contact-card-body strong,
.contact-card-body em {
    display: block;
}

.contact-card-body small {
    color: var(--muted);
    font-size: 10px;
    font-weight: 600;
}

.contact-card-body strong {
    overflow: hidden;
    margin-top: 5px;
    font-size: 14px;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.contact-card-body em {
    margin-top: 6px;
    color: var(--muted);
    font-size: 10.5px;
    font-style: normal;
}

.contact-card-arrow {
    color: #9aa2ad;
    font-size: 11px;
    transition: transform .2s ease;
}

.contact-info-card:hover .contact-card-arrow {
    transform: translateX(3px);
}

.about-contact-card,
.contact-regions-card {
    padding: 28px;
    border: 1px solid var(--border);
    border-radius: 16px;
    background: #fff;
    box-shadow: var(--shadow);
}

.about-contact-heading {
    display: flex;
    align-items: center;
    gap: 15px;
}

.about-icon {
    width: 51px;
    height: 51px;
    flex: 0 0 51px;
    display: grid;
    place-items: center;
    color: var(--green);
    border-radius: 13px;
    background: var(--green-soft);
    font-size: 19px;
}

.about-contact-heading h2,
.contact-regions-card h2 {
    margin: 6px 0 0;
    font-size: 22px;
    letter-spacing: -.035em;
}

.about-description {
    margin: 22px 0;
    padding: 18px 20px;
    color: #3f4b59;
    border-left: 4px solid var(--green);
    border-radius: 0 10px 10px 0;
    background: #f6faf8;
    font-size: 13px;
    font-weight: 600;
    line-height: 1.8;
}

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

.service-item {
    display: flex;
    align-items: center;
    gap: 9px;
    min-height: 42px;
    padding: 0 12px;
    color: #46515f;
    border: 1px solid #e7ebee;
    border-radius: 9px;
    background: #fbfcfc;
    font-size: 11.5px;
}

.service-item i {
    color: var(--green);
}

.contact-regions-card {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(280px, .8fr);
    align-items: center;
    gap: 25px;
}

.contact-regions-card p {
    margin: 10px 0 0;
    color: var(--muted);
    font-size: 12px;
    line-height: 1.7;
}

.contact-region-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 9px;
}

.contact-region-list span {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 9px 11px;
    color: #3f4b59;
    border: 1px solid #e1e7e4;
    border-radius: 999px;
    background: #f8fbf9;
    font-size: 11px;
}

.contact-region-list i {
    color: var(--green);
}

.contact-cta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    margin-top: 24px;
    padding: 32px 35px;
    color: #fff;
    border-radius: 17px;
    background:
        radial-gradient(circle at 85% 0%, rgba(255,255,255,.15), transparent 28%),
        linear-gradient(120deg, #163f30, #267b5b);
    box-shadow: 0 15px 35px rgba(19,63,47,.14);
}

.contact-cta-kicker {
    color: #cfeadd;
}

.contact-cta h2 {
    margin: 7px 0 8px;
    font-size: 25px;
    letter-spacing: -.04em;
}

.contact-cta p {
    margin: 0;
    color: rgba(255,255,255,.72);
    font-size: 12px;
}

.contact-cta-buttons {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    justify-content: flex-end;
}

.cta-call-btn,
.cta-instagram-btn {
    min-height: 46px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    padding: 0 16px;
    border-radius: 10px;
    font-size: 12px;
    font-weight: 700;
    text-decoration: none;
}

.cta-call-btn {
    color: #205a43;
    background: #fff;
}

.cta-instagram-btn {
    color: #fff;
    border: 1px solid rgba(255,255,255,.25);
    background: rgba(255,255,255,.08);
}

@media (max-width: 1050px) {
    .contact-hero {
        grid-template-columns: 1fr;
    }

    .contact-hero-card {
        display: none;
    }

    .contact-layout {
        grid-template-columns: 1fr;
    }

    .profile-card {
        position: static;
        display: grid;
        grid-template-columns: auto minmax(0, 1fr) auto;
        align-items: center;
        column-gap: 18px;
        text-align: left;
    }

    .profile-avatar {
        grid-row: 1 / 4;
        margin: 0;
    }

    .profile-label,
    .profile-card h2,
    .profile-card > p {
        grid-column: 2;
    }

    .profile-separator,
    .profile-availability {
        display: none;
    }

    .profile-phone-button {
        grid-column: 3;
        grid-row: 1 / 4;
        margin: 0;
        padding: 0 16px;
    }
}

@media (max-width: 760px) {
    .contact-main {
        padding-top: 18px;
    }

    .contact-hero {
        min-height: auto;
        padding: 36px 23px;
        border-radius: 15px;
    }

    .contact-hero h1 {
        font-size: 38px;
    }

    .contact-hero p {
        font-size: 14px;
    }

    .contact-hero-buttons {
        align-items: stretch;
        flex-direction: column;
    }

    .contact-primary-btn,
    .contact-secondary-btn {
        width: 100%;
    }

    .profile-card {
        display: block;
        text-align: center;
    }

    .profile-avatar {
        margin: 0 auto 16px;
    }

    .profile-phone-button {
        margin-top: 20px;
    }

    .contact-info-grid {
        grid-template-columns: 1fr;
    }

    .contact-info-card {
        min-height: 112px;
    }

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

    .contact-regions-card {
        grid-template-columns: 1fr;
    }

    .contact-region-list {
        justify-content: flex-start;
    }

    .contact-cta {
        align-items: stretch;
        flex-direction: column;
        padding: 27px 23px;
    }

    .contact-cta-buttons {
        justify-content: flex-start;
    }

    .cta-call-btn,
    .cta-instagram-btn {
        flex: 1 1 180px;
    }
}
