:root {
    /*
    |--------------------------------------------------------------------------
    | Admin panelinden yönetilen ana renkler
    |--------------------------------------------------------------------------
    |
    | Bu değerler varsayılandır. Site layout dosyası admin panelinde
    | kaydedilen değerlerle bunların üzerine yazacaktır.
    |
    */

    --site-primary: #f5a623;
    --site-primary-hover: #ffb835;
    --site-whatsapp: #20c765;

    --site-background: #080a0f;
    --site-surface: #11141c;
    --site-text: #f6f7f9;
    --site-muted: #a4aab5;
    --site-border: #272d38;

    /*
    |--------------------------------------------------------------------------
    | Mevcut site.css değişkenleriyle uyumluluk
    |--------------------------------------------------------------------------
    */

    --brand: var(--site-primary);
    --brand-hover: var(--site-primary-hover);

    --brand-soft: rgba(245, 166, 35, 0.12);
    --brand-soft:
        color-mix(
            in srgb,
            var(--brand) 12%,
            transparent
        );

    --whatsapp: var(--site-whatsapp);

    --whatsapp-hover: #29db74;
    --whatsapp-hover:
        color-mix(
            in srgb,
            var(--whatsapp) 86%,
            white 14%
        );

    --site-bg: var(--site-background);

    --site-surface-soft: #161a23;
    --site-surface-soft:
        color-mix(
            in srgb,
            var(--site-surface) 92%,
            var(--site-text) 8%
        );

    --site-card: var(--site-surface);

    --site-muted-dark: #707784;
    --site-muted-dark:
        color-mix(
            in srgb,
            var(--site-muted) 68%,
            var(--site-background) 32%
        );

    /*
    |--------------------------------------------------------------------------
    | Sabit ölçüler
    |--------------------------------------------------------------------------
    */

    --site-container: 1180px;
    --site-radius: 14px;
    --site-shadow:
        0 24px 70px rgba(0, 0, 0, 0.32);
}

* {
    box-sizing: border-box;
}

html {
    min-height: 100%;
    scroll-behavior: smooth;
    background: var(--site-bg);
}

body {
    min-height: 100vh;
    margin: 0;
    color: var(--site-text);
    background: var(--site-bg);
    font-family:
        Inter,
        -apple-system,
        BlinkMacSystemFont,
        "Segoe UI",
        Arial,
        sans-serif;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

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

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

button,
input,
textarea,
select {
    font: inherit;
}

button,
a {
    -webkit-tap-highlight-color: transparent;
}

a {
    color: inherit;
    text-decoration: none;
}

p {
    line-height: 1.7;
}

.site-container {
    width: min(
        calc(100% - 32px),
        var(--site-container)
    );
    margin-inline: auto;
}

.button {
    display: inline-flex;
    min-height: 46px;
    align-items: center;
    justify-content: center;
    gap: 9px;
    padding: 0 18px;
    border: 1px solid transparent;
    border-radius: 8px;
    cursor: pointer;
    font-size: 13px;
    font-weight: 800;
    transition:
        transform 0.18s ease,
        background 0.18s ease,
        border-color 0.18s ease;
}

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

.button svg {
    width: 19px;
    height: 19px;
}

.button-primary {
    color: #141414;
    background: var(--brand);
}

.button-primary:hover {
    background: var(--brand-hover);
}

.button-whatsapp {
    color: #07150d;
    background: var(--whatsapp);
}

.button-whatsapp:hover {
    background: var(--whatsapp-hover);
}

.button-large {
    min-height: 54px;
    padding-inline: 23px;
    font-size: 14px;
}

.button-disabled {
    opacity: 0.65;
    cursor: default;
    pointer-events: none;
}

.eyebrow {
    display: inline-flex;
    min-height: 26px;
    align-items: center;
    padding: 0 10px;
    border: 1px solid
        color-mix(
            in srgb,
            var(--brand) 28%,
            transparent
        );
    border-radius: 999px;
    color: var(--brand);
    background:
        color-mix(
            in srgb,
            var(--brand) 6%,
            transparent
        );
    font-size: 10px;
    font-weight: 850;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    border-bottom: 1px solid
        color-mix(
            in srgb,
            var(--site-text) 6%,
            transparent
        );
    background:
        color-mix(
            in srgb,
            var(--site-bg) 90%,
            transparent
        );
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
}

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

.site-logo {
    display: inline-flex;
    min-width: 0;
    align-items: center;
    gap: 10px;
}

.site-logo img {
    width: auto;
    max-width: 190px;
    height: 44px;
    object-fit: contain;
}

.site-logo-symbol {
    display: grid;
    width: 43px;
    height: 43px;
    flex: 0 0 43px;
    place-items: center;
    border-radius: 9px;
    color: #111;
    background: var(--brand);
}

.site-logo-symbol svg {
    width: 32px;
    height: 32px;
}

.site-logo-copy {
    display: grid;
    line-height: 1.05;
}

.site-logo-copy strong {
    max-width: 170px;
    overflow: hidden;
    font-size: 15px;
    font-weight: 900;
    letter-spacing: -0.02em;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.site-logo-copy small {
    margin-top: 5px;
    color: var(--site-muted);
    font-size: 9px;
    font-weight: 750;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.desktop-navigation {
    display: flex;
    align-items: center;
    gap: 23px;
}

.desktop-navigation a {
    position: relative;
    color:
        color-mix(
            in srgb,
            var(--site-text) 72%,
            var(--site-muted) 28%
        );
    font-size: 12px;
    font-weight: 700;
    transition: color 0.18s ease;
}

.desktop-navigation a::after {
    position: absolute;
    right: 0;
    bottom: -10px;
    left: 0;
    height: 2px;
    border-radius: 2px;
    background: var(--brand);
    content: "";
    transform: scaleX(0);
    transition: transform 0.18s ease;
}

.desktop-navigation a:hover {
    color: var(--site-text);
}

.desktop-navigation a:hover::after {
    transform: scaleX(1);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 8px;
}

.header-whatsapp {
    display: grid;
    width: 42px;
    height: 42px;
    place-items: center;
    border-radius: 8px;
    color: #08150e;
    background: var(--whatsapp);
}

.header-whatsapp svg {
    width: 21px;
    height: 21px;
}

.header-phone {
    min-height: 42px;
    padding-inline: 14px;
}

.mobile-menu-button {
    display: none;
    width: 42px;
    height: 42px;
    place-items: center;
    padding: 10px;
    border: 1px solid var(--site-border);
    border-radius: 8px;
    color: var(--site-text);
    background: var(--site-surface);
    cursor: pointer;
}

.mobile-menu-button span {
    display: block;
    width: 20px;
    height: 2px;
    margin: 3px auto;
    border-radius: 2px;
    background: currentColor;
}

.mobile-menu {
    position: fixed;
    inset: 70px 0 auto;
    z-index: 90;
    padding: 14px 16px 20px;
    border-bottom: 1px solid var(--site-border);
    background: rgba(8, 10, 15, 0.98);
    box-shadow: var(--site-shadow);
}

.mobile-menu nav {
    display: grid;
    gap: 6px;
}

.mobile-menu a {
    display: flex;
    min-height: 46px;
    align-items: center;
    padding: 0 15px;
    border-radius: 8px;
    color: #d7d9df;
    background: var(--site-surface);
    font-size: 13px;
    font-weight: 750;
}

.hero-section {
    position: relative;
    overflow: hidden;
    min-height: 680px;
    border-bottom: 1px solid var(--site-border);
}

.hero-background {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(
            circle at 80% 28%,
            rgba(245, 166, 35, 0.17),
            transparent 31%
        ),
        radial-gradient(
            circle at 15% 85%,
            rgba(49, 58, 80, 0.2),
            transparent 35%
        ),
        linear-gradient(
            110deg,
            #080a0f 0%,
            #0b0e14 50%,
            #15100a 100%
        );
}

.hero-background::after {
    position: absolute;
    inset: 0;
    opacity: 0.12;
    background-image:
        linear-gradient(
            rgba(255, 255, 255, 0.04) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(255, 255, 255, 0.04) 1px,
            transparent 1px
        );
    background-size: 52px 52px;
    content: "";
    mask-image: linear-gradient(
        to bottom,
        black,
        transparent 75%
    );
}

.hero-grid {
    position: relative;
    z-index: 1;
    display: grid;
    min-height: 610px;
    align-items: center;
    grid-template-columns: minmax(0, 1fr) minmax(420px, 0.9fr);
    gap: 55px;
    padding-block: 78px 90px;
}

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

.hero-content h1 {
    max-width: 640px;
    margin: 22px 0 18px;
    font-size: clamp(42px, 5.4vw, 72px);
    line-height: 0.98;
    letter-spacing: -0.055em;
}

.hero-content h1 span {
    color: var(--brand);
}

.hero-content > p {
    max-width: 610px;
    margin: 0;
    color: var(--site-muted);
    font-size: 16px;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 11px;
    margin-top: 29px;
}

.hero-trust {
    display: flex;
    flex-wrap: wrap;
    gap: 25px;
    margin-top: 31px;
}

.hero-trust div {
    display: grid;
    gap: 4px;
    padding-right: 25px;
    border-right: 1px solid var(--site-border);
}

.hero-trust div:last-child {
    padding-right: 0;
    border-right: 0;
}

.hero-trust strong {
    color: var(--site-text);
    font-size: 20px;
}

.hero-trust span {
    color: var(--site-muted-dark);
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
}

.hero-visual {
    position: relative;
    min-height: 430px;
}

.hero-orbit {
    position: absolute;
    border: 1px solid rgba(245, 166, 35, 0.15);
    border-radius: 50%;
}

.hero-orbit-one {
    inset: 34px 20px 34px 20px;
}

.hero-orbit-two {
    inset: 94px 80px 94px 80px;
}

.hero-truck-card {
    position: absolute;
    inset: 60px 0 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(245, 166, 35, 0.16);
    border-radius: 28px;
    color: #d8831a;
    background:
        linear-gradient(
            145deg,
            rgba(255, 255, 255, 0.045),
            rgba(255, 255, 255, 0.005)
        );
    box-shadow:
        inset 0 1px rgba(255, 255, 255, 0.05),
        0 30px 90px rgba(0, 0, 0, 0.35);
    transform: perspective(900px) rotateY(-5deg);
}

.hero-truck {
    width: 94%;
    filter: drop-shadow(0 30px 35px rgba(0, 0, 0, 0.58));
}

.truck-light {
    position: absolute;
    top: 22%;
    right: 18%;
    width: 180px;
    height: 180px;
    border-radius: 50%;
    background: rgba(245, 166, 35, 0.16);
    filter: blur(50px);
}

.hero-service-badge {
    position: absolute;
    right: 18px;
    bottom: 18px;
    padding: 8px 11px;
    border: 1px solid rgba(245, 166, 35, 0.24);
    border-radius: 7px;
    color: var(--brand);
    background: rgba(8, 10, 15, 0.88);
    font-size: 10px;
    font-weight: 850;
    text-transform: uppercase;
}

.hero-service-strip {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 2;
    background: var(--brand);
}

.hero-service-strip .site-container {
    display: flex;
    min-height: 46px;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    overflow: hidden;
    color: #141414;
    font-size: 10px;
    font-weight: 900;
    text-transform: uppercase;
    white-space: nowrap;
}

.hero-service-strip span {
    display: inline-flex;
    align-items: center;
    gap: 20px;
}

.hero-service-strip span:not(:last-child)::after {
    content: "•";
}

.district-selector-section {
    position: relative;
    z-index: 5;
    margin-top: -1px;
    padding: 28px 0;
    background: var(--site-surface);
}

.district-selector {
    display: grid;
    align-items: center;
    grid-template-columns: 300px minmax(0, 1fr);
    gap: 40px;
    padding: 25px;
    border: 1px solid var(--site-border);
    border-radius: var(--site-radius);
    background: var(--site-card);
}

.district-selector h2 {
    margin: 12px 0 7px;
    font-size: 24px;
    letter-spacing: -0.03em;
}

.district-selector p {
    margin: 0;
    color: var(--site-muted);
    font-size: 12px;
}

.district-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.district-pills a {
    display: inline-flex;
    min-height: 34px;
    align-items: center;
    padding: 0 12px;
    border: 1px solid var(--site-border);
    border-radius: 999px;
    color: #bdc2cb;
    background: var(--site-surface);
    font-size: 10px;
    font-weight: 750;
    transition:
        color 0.18s ease,
        border-color 0.18s ease,
        background 0.18s ease;
}

.district-pills a:hover {
    color: #171717;
    border-color: var(--brand);
    background: var(--brand);
}

.section {
    padding-block: 95px;
}

.section-dark {
    background: var(--site-bg);
}

.section-surface {
    background: var(--site-surface);
}

.section-heading {
    max-width: 700px;
    margin: 0 auto 42px;
    text-align: center;
}

.section-heading h2 {
    margin: 17px 0 12px;
    font-size: clamp(30px, 4vw, 46px);
    line-height: 1.08;
    letter-spacing: -0.045em;
}

.section-heading p {
    max-width: 650px;
    margin: 0 auto;
    color: var(--site-muted);
    font-size: 14px;
}

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

.service-card {
    position: relative;
    display: flex;
    min-height: 275px;
    flex-direction: column;
    padding: 22px;
    overflow: hidden;
    border: 1px solid var(--site-border);
    border-radius: 11px;
    background: var(--site-card);
    transition:
        transform 0.2s ease,
        border-color 0.2s ease;
}

.service-card::before {
    position: absolute;
    top: -50px;
    right: -50px;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: rgba(245, 166, 35, 0.08);
    content: "";
    filter: blur(15px);
}

.service-card:hover {
    border-color: rgba(245, 166, 35, 0.45);
    transform: translateY(-4px);
}

.service-card-featured {
    grid-row: span 2;
    min-height: 564px;
    background:
        radial-gradient(
            circle at 75% 20%,
            rgba(245, 166, 35, 0.16),
            transparent 38%
        ),
        var(--site-card);
}

.service-card-featured::after {
    position: absolute;
    inset: auto -10% 10% 20%;
    height: 180px;
    border-radius: 50%;
    opacity: 0.4;
    background:
        linear-gradient(
            120deg,
            transparent,
            rgba(245, 166, 35, 0.32)
        );
    content: "";
    filter: blur(50px);
}

.service-card-icon {
    position: relative;
    z-index: 2;
    display: grid;
    width: 43px;
    height: 43px;
    place-items: center;
    border: 1px solid rgba(245, 166, 35, 0.2);
    border-radius: 8px;
    color: var(--brand);
    background: var(--brand-soft);
}

.service-card-icon span {
    font-size: 11px;
    font-weight: 900;
}

.service-card h3 {
    position: relative;
    z-index: 2;
    margin: 23px 0 9px;
    font-size: 18px;
    letter-spacing: -0.025em;
}

.service-card p {
    position: relative;
    z-index: 2;
    margin: 0;
    color: var(--site-muted);
    font-size: 12px;
}

.service-card-footer {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: auto;
    padding-top: 24px;
}

.service-card-footer a {
    color: var(--brand);
    font-size: 10px;
    font-weight: 850;
    text-transform: uppercase;
}

.service-card-footer span {
    color: var(--brand);
}

.advantages-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1px;
    overflow: hidden;
    border: 1px solid var(--site-border);
    border-radius: var(--site-radius);
    background: var(--site-border);
}

.advantage-item {
    min-height: 205px;
    padding: 27px;
    background: var(--site-card);
}

.advantage-number {
    color: var(--brand);
    font-size: 11px;
    font-weight: 900;
}

.advantage-item h3 {
    margin: 32px 0 8px;
    font-size: 17px;
}

.advantage-item p {
    margin: 0;
    color: var(--site-muted);
    font-size: 12px;
}

.process-layout {
    display: grid;
    align-items: center;
    grid-template-columns: minmax(0, 0.7fr) minmax(0, 1fr);
    gap: 70px;
}

.process-intro h2 {
    margin: 18px 0 14px;
    font-size: clamp(32px, 4vw, 48px);
    line-height: 1.04;
    letter-spacing: -0.045em;
}

.process-intro p {
    max-width: 480px;
    margin: 0 0 25px;
    color: var(--site-muted);
    font-size: 14px;
}

.process-steps {
    display: grid;
    gap: 12px;
}

.process-step {
    display: grid;
    align-items: center;
    grid-template-columns: 60px minmax(0, 1fr);
    gap: 19px;
    padding: 20px;
    border: 1px solid var(--site-border);
    border-radius: 10px;
    background: var(--site-card);
}

.process-step > span {
    display: grid;
    width: 50px;
    height: 50px;
    place-items: center;
    border-radius: 9px;
    color: #141414;
    background: var(--brand);
    font-size: 11px;
    font-weight: 900;
}

.process-step h3 {
    margin: 0 0 5px;
    font-size: 15px;
}

.process-step p {
    margin: 0;
    color: var(--site-muted);
    font-size: 11px;
}

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

.region-card {
    min-height: 210px;
    padding: 21px;
    border: 1px solid var(--site-border);
    border-radius: 10px;
    background:
        linear-gradient(
            145deg,
            rgba(255, 255, 255, 0.025),
            transparent
        ),
        var(--site-card);
}

.region-card-number {
    color: var(--brand);
    font-size: 10px;
    font-weight: 900;
}

.region-card h3 {
    margin: 32px 0 7px;
    font-size: 18px;
}

.region-card p {
    margin: 0;
    color: var(--site-muted);
    font-size: 11px;
}

.region-card a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 24px;
    color: var(--brand);
    font-size: 10px;
    font-weight: 850;
    text-transform: uppercase;
}

.statistics-section {
    padding: 48px 0;
    border-block: 1px solid var(--site-border);
    background: var(--site-bg);
}

.statistics-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.statistics-grid article {
    display: grid;
    gap: 7px;
    padding: 10px 30px;
    border-right: 1px solid var(--site-border);
    text-align: center;
}

.statistics-grid article:last-child {
    border-right: 0;
}

.statistics-grid strong {
    color: var(--brand);
    font-size: 31px;
    letter-spacing: -0.04em;
}

.statistics-grid span {
    color: var(--site-muted);
    font-size: 10px;
    font-weight: 750;
    text-transform: uppercase;
}

.faq-layout {
    display: grid;
    align-items: start;
    grid-template-columns: minmax(280px, 0.65fr) minmax(0, 1fr);
    gap: 65px;
}

.faq-intro {
    position: sticky;
    top: 110px;
}

.faq-intro h2 {
    margin: 17px 0 12px;
    font-size: clamp(32px, 4vw, 48px);
    line-height: 1.06;
    letter-spacing: -0.045em;
}

.faq-intro p {
    margin: 0 0 23px;
    color: var(--site-muted);
    font-size: 14px;
}

.faq-list {
    display: grid;
    gap: 9px;
}

.faq-item {
    overflow: hidden;
    border: 1px solid var(--site-border);
    border-radius: 9px;
    background: var(--site-card);
}

.faq-item button {
    display: flex;
    width: 100%;
    min-height: 64px;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 0 19px;
    border: 0;
    color: var(--site-text);
    background: transparent;
    cursor: pointer;
    text-align: left;
    font-size: 13px;
    font-weight: 750;
}

.faq-plus {
    display: grid;
    width: 29px;
    height: 29px;
    flex: 0 0 29px;
    place-items: center;
    border-radius: 7px;
    color: var(--brand);
    background: var(--brand-soft);
    font-size: 17px;
    transition: transform 0.18s ease;
}

.faq-item.is-open .faq-plus {
    transform: rotate(45deg);
}

.faq-answer {
    padding: 0 19px 18px;
}

.faq-answer p {
    margin: 0;
    color: var(--site-muted);
    font-size: 12px;
}

.contact-cta-section {
    padding: 68px 0;
    border-top: 1px solid rgba(245, 166, 35, 0.18);
    background:
        radial-gradient(
            circle at 15% 50%,
            rgba(245, 166, 35, 0.16),
            transparent 28%
        ),
        linear-gradient(
            90deg,
            #191106,
            #0b0c10 55%,
            #080a0f
        );
}

.contact-cta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 45px;
}

.contact-cta h2 {
    margin: 15px 0 9px;
    font-size: clamp(30px, 4vw, 46px);
    letter-spacing: -0.045em;
}

.contact-cta p {
    max-width: 650px;
    margin: 0;
    color: var(--site-muted);
    font-size: 14px;
}

.contact-cta-actions {
    display: flex;
    flex: 0 0 auto;
    flex-wrap: wrap;
    gap: 10px;
}

.site-footer {
    padding: 65px 0 25px;
    border-top: 1px solid var(--site-border);
    background: #06080c;
}

.footer-grid {
    display: grid;
    grid-template-columns:
        minmax(260px, 1.25fr)
        minmax(140px, 0.65fr)
        minmax(230px, 0.85fr)
        minmax(230px, 0.9fr);
    gap: 45px;
}

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

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

.footer-brand-column > p {
    max-width: 340px;
    margin: 0;
    color: var(--site-muted);
    font-size: 12px;
}

.footer-status {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 20px;
    color: #c6cad2;
    font-size: 11px;
    font-weight: 700;
}

.status-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--whatsapp);
    box-shadow: 0 0 0 5px rgba(32, 199, 101, 0.1);
}

.footer-column h3 {
    margin: 0 0 19px;
    color: #e9ebef;
    font-size: 11px;
    font-weight: 850;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

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

.footer-column li,
.footer-column a,
.footer-column p {
    color: var(--site-muted);
    font-size: 11px;
}

.footer-column a:hover {
    color: var(--brand);
}

.footer-district-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.footer-phone {
    display: block;
    margin-bottom: 12px;
    color: var(--brand) !important;
    font-size: 19px !important;
    font-weight: 900;
}

.footer-whatsapp {
    display: inline-flex;
    margin-bottom: 16px;
    color: var(--whatsapp) !important;
    font-weight: 750;
}

.footer-contact p {
    margin: 8px 0;
}

.footer-legal {
    margin-top: 42px;
    padding-block: 20px;
    border-block: 1px solid var(--site-border);
}

.footer-legal nav {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 25px;
}

.footer-legal a {
    color: var(--site-muted-dark);
    font-size: 10px;
}

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

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding-top: 24px;
}

.footer-bottom p {
    margin: 0;
    color: var(--site-muted-dark);
    font-size: 10px;
}

.mobile-fixed-actions {
    display: none;
}

@media (max-width: 1080px) {
    .desktop-navigation {
        display: none;
    }

    .mobile-menu-button {
        display: grid;
    }

    .hero-grid {
        grid-template-columns: minmax(0, 1fr) 400px;
        gap: 25px;
    }

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

    .service-card-featured {
        grid-row: auto;
        min-height: 275px;
    }

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

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

@media (max-width: 820px) {
    .hero-section {
        min-height: auto;
    }

    .hero-grid {
        min-height: auto;
        grid-template-columns: 1fr;
        padding-block: 65px 100px;
    }

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

    .hero-visual {
        min-height: 340px;
    }

    .hero-truck-card {
        inset: 20px 5% 10px;
    }

    .district-selector {
        grid-template-columns: 1fr;
        gap: 22px;
    }

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

    .process-layout,
    .faq-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .faq-intro {
        position: static;
    }

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

    .contact-cta {
        align-items: flex-start;
        flex-direction: column;
    }

    .contact-cta-actions {
        width: 100%;
    }
}

@media (max-width: 620px) {
    body {
        padding-bottom: 66px;
    }

    .site-container {
        width: min(
            calc(100% - 24px),
            var(--site-container)
        );
    }

    .header-inner {
        min-height: 62px;
    }

    .site-logo-symbol {
        width: 38px;
        height: 38px;
        flex-basis: 38px;
    }

    .site-logo-symbol svg {
        width: 28px;
        height: 28px;
    }

    .site-logo-copy strong {
        max-width: 145px;
        font-size: 13px;
    }

    .site-logo-copy small {
        font-size: 8px;
    }

    .header-phone,
    .header-whatsapp {
        display: none;
    }

    .mobile-menu {
        top: 62px;
    }

    .hero-grid {
        gap: 28px;
        padding-block: 52px 88px;
    }

    .hero-content h1 {
        margin-top: 18px;
        font-size: 43px;
    }

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

    .hero-actions {
        display: grid;
        grid-template-columns: 1fr;
    }

    .hero-actions .button {
        width: 100%;
    }

    .hero-trust {
        display: grid;
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 0;
    }

    .hero-trust div {
        padding-inline: 10px;
        text-align: center;
    }

    .hero-trust div:first-child {
        padding-left: 0;
    }

    .hero-trust strong {
        font-size: 17px;
    }

    .hero-trust span {
        font-size: 8px;
    }

    .hero-visual {
        min-height: 260px;
    }

    .hero-truck-card {
        inset: 0;
        border-radius: 17px;
        transform: none;
    }

    .hero-orbit {
        display: none;
    }

    .hero-service-strip .site-container {
        justify-content: flex-start;
        overflow-x: auto;
    }

    .district-selector-section {
        padding-block: 16px;
    }

    .district-selector {
        padding: 18px;
    }

    .section {
        padding-block: 66px;
    }

    .section-heading {
        margin-bottom: 28px;
        text-align: left;
    }

    .section-heading h2 {
        font-size: 32px;
    }

    .section-heading p {
        margin: 0;
    }

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

    .service-card,
    .service-card-featured {
        min-height: 245px;
    }

    .advantage-item {
        min-height: 185px;
    }

    .process-intro h2,
    .faq-intro h2 {
        font-size: 34px;
    }

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

    .statistics-grid article:nth-child(2) {
        border-right: 0;
    }

    .contact-cta-section {
        padding-block: 55px;
    }

    .contact-cta h2 {
        font-size: 34px;
    }

    .contact-cta-actions {
        display: grid;
        grid-template-columns: 1fr;
    }

    .contact-cta-actions .button {
        width: 100%;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 35px;
    }

    .footer-district-list {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .footer-legal nav {
        justify-content: flex-start;
        gap: 15px 20px;
    }

    .footer-bottom {
        align-items: flex-start;
        flex-direction: column;
    }

    .mobile-fixed-actions {
        position: fixed;
        right: 0;
        bottom: 0;
        left: 0;
        z-index: 150;
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        padding:
            8px
            max(8px, env(safe-area-inset-right))
            calc(8px + env(safe-area-inset-bottom))
            max(8px, env(safe-area-inset-left));
        border-top: 1px solid var(--site-border);
        background: rgba(8, 10, 15, 0.96);
        backdrop-filter: blur(14px);
    }

    .mobile-fixed-actions a {
        display: flex;
        min-height: 48px;
        align-items: center;
        justify-content: center;
        gap: 8px;
        font-size: 12px;
        font-weight: 850;
    }

    .mobile-fixed-actions svg {
        width: 20px;
        height: 20px;
    }

    .mobile-fixed-call {
        border-radius: 8px 0 0 8px;
        color: #141414;
        background: var(--brand);
    }

    .mobile-fixed-whatsapp {
        border-radius: 0 8px 8px 0;
        color: #07150d;
        background: var(--whatsapp);
    }

    .mobile-fixed-actions:has(
        > a:only-child
    ) {
        grid-template-columns: 1fr;
    }

    .mobile-fixed-actions > a:only-child {
        border-radius: 8px;
    }
}

html {
    scroll-behavior: smooth;
}

#hizmetler,
#hizmet-bolgeleri,
#neden-biz {
    scroll-margin-top: 100px;
}