﻿/* ==================================================
   POWER HAVALANDIRMA
   Ana stil dosyası
================================================== */

@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&display=swap");


/* ==================================================
   Değişkenler
================================================== */

:root {
    --color-primary: #ed1c24;
    --color-primary-dark: #c91017;
    --color-dark: #181b20;
    --color-text: #25282e;
    --color-muted: #68707c;
    --color-border: #e5e7eb;
    --color-surface: #f6f7f9;
    --color-white: #ffffff;
    --font-primary: "Inter", Arial, sans-serif;
    --container-width: 1420px;
    --header-height: 100px;
    --radius-small: 8px;
    --radius-medium: 14px;
    --shadow-card: 0 2px 4px rgba(15, 23, 42, 0.03), 0 12px 30px rgba(15, 23, 42, 0.06);
    --transition: 220ms ease;
}


/* ==================================================
   Sıfırlama
================================================== */

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    min-width: 320px;
    overflow-x: hidden;
    color: var(--color-text);
    background: var(--color-white);
    font-family: var(--font-primary);
    font-size: 16px;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

    body.menu-open {
        overflow: hidden;
    }

img {
    display: block;
    max-width: 100%;
}

button {
    margin: 0;
    padding: 0;
    border: 0;
    color: inherit;
    background: none;
    font: inherit;
    cursor: pointer;
}

h1,
h2,
h3,
p {
    margin-top: 0;
}

.container {
    width: min(calc(100% - 48px), var(--container-width));
    margin-inline: auto;
}


/* ==================================================
   Üst iletişim alanı
================================================== */

.topbar {
    min-height: 46px;
    display: flex;
    align-items: center;
    color: #39404b;
    background: #fafafa;
    border-bottom: 1px solid var(--color-border);
    font-size: 14px;
}

.topbar__inner {
    min-height: 46px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.topbar__contact {
    display: flex;
    align-items: center;
    gap: 34px;
}

    .topbar__contact span,
    .topbar__location {
        position: relative;
        padding-left: 24px;
    }

        .topbar__contact span::before,
        .topbar__location::before {
            position: absolute;
            top: 50%;
            left: 0;
            color: var(--color-primary);
            font-size: 15px;
            font-weight: 800;
            transform: translateY(-50%);
        }

        .topbar__contact span:first-child::before {
            content: "✉";
        }

        .topbar__contact span:last-child::before {
            content: "●";
            font-size: 10px;
        }

        .topbar__location::before {
            content: "●";
            font-size: 10px;
        }


/* ==================================================
   Navigasyon
================================================== */

.navbar {
    position: relative;
    z-index: 20;
    height: var(--header-height);
    background: rgba(255, 255, 255, 0.98);
    border-bottom: 1px solid rgba(229, 231, 235, 0.75);
}

.navbar__inner {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
}

.site-logo {
    flex: 0 0 auto;
}

    .site-logo img {
        width: 265px;
        max-height: 74px;
        object-fit: contain;
        object-position: left center;
    }

.main-navigation {
    height: 100%;
    display: flex;
    align-items: center;
    gap: 48px;
}

.nav-button {
    position: relative;
    height: 100%;
    color: #2f343c;
    font-size: 15px;
    font-weight: 600;
    white-space: nowrap;
    transition: color var(--transition), transform var(--transition);
}

    .nav-button::after {
        content: "";
        position: absolute;
        right: 50%;
        bottom: 22px;
        left: 50%;
        height: 3px;
        background: var(--color-primary);
        border-radius: 10px;
        transition: right var(--transition), left var(--transition);
    }

    .nav-button:hover,
    .nav-button.is-active {
        color: var(--color-primary);
    }

        .nav-button:hover::after,
        .nav-button.is-active::after {
            right: 28%;
            left: 28%;
        }

.mobile-menu-button {
    display: none;
    width: 42px;
    height: 42px;
    padding: 9px;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-small);
}

    .mobile-menu-button span {
        width: 100%;
        height: 2px;
        display: block;
        margin: 5px 0;
        background: var(--color-dark);
        border-radius: 5px;
        transition: transform var(--transition), opacity var(--transition);
    }


/* ==================================================
   Ürünler dropdown menüsü
================================================== */

.nav-dropdown {
    position: static;
    height: 100%;
    display: flex;
    align-items: center;
}

.nav-dropdown__trigger {
    display: flex;
    align-items: center;
    gap: 7px;
}

    .nav-dropdown__trigger svg {
        width: 17px;
        height: 17px;
        transition: transform var(--transition);
    }

.nav-dropdown.is-open .nav-dropdown__trigger {
    color: var(--color-primary);
}

    .nav-dropdown.is-open .nav-dropdown__trigger::after {
        right: 28%;
        left: 28%;
    }

    .nav-dropdown.is-open .nav-dropdown__trigger svg {
        transform: rotate(180deg);
    }

.nav-dropdown__menu {
    position: absolute;
    z-index: 30;
    top: calc(100% + 1px);
    right: 24px;
    left: 24px;
    max-width: var(--container-width);
    margin-inline: auto;
    padding: 30px;
    background: rgba(255, 255, 255, 0.98);
    border: 1px solid var(--color-border);
    border-top: 3px solid var(--color-primary);
    border-radius: 0 0 16px 16px;
    box-shadow: 0 28px 60px rgba(15, 23, 42, 0.16);
    opacity: 0;
    visibility: hidden;
    transform: translateY(15px);
    transition: opacity var(--transition), visibility var(--transition), transform var(--transition);
}

.nav-dropdown.is-open .nav-dropdown__menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.nav-dropdown__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 24px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--color-border);
}

    .nav-dropdown__header > div {
        display: flex;
        align-items: center;
        gap: 18px;
    }

    .nav-dropdown__header span {
        position: relative;
        padding-left: 42px;
        color: var(--color-primary);
        font-size: 12px;
        font-weight: 800;
        letter-spacing: 0.11em;
        text-transform: uppercase;
    }

        .nav-dropdown__header span::before {
            content: "";
            position: absolute;
            top: 50%;
            left: 0;
            width: 30px;
            height: 3px;
            background: var(--color-primary);
            border-radius: 5px;
            transform: translateY(-50%);
        }

    .nav-dropdown__header strong {
        color: var(--color-dark);
        font-size: 20px;
        line-height: 1.3;
    }

.nav-dropdown__close {
    width: 38px;
    height: 38px;
    display: grid;
    place-items: center;
    color: var(--color-muted);
    border: 1px solid var(--color-border);
    border-radius: 50%;
    font-size: 25px;
    line-height: 1;
    transition: color var(--transition), border-color var(--transition), transform var(--transition);
}

    .nav-dropdown__close:hover {
        color: var(--color-primary);
        border-color: var(--color-primary);
        transform: rotate(90deg);
    }

.nav-dropdown__grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px 18px;
}

.dropdown-product {
    min-width: 0;
    min-height: 48px;
    display: flex;
    align-items: center;
    gap: 13px;
    padding: 9px 13px;
    color: #323740;
    border-radius: 8px;
    text-align: left;
    font-size: 13px;
    font-weight: 600;
    line-height: 1.35;
    transition: color var(--transition), background var(--transition), padding-left var(--transition);
}

    .dropdown-product span {
        width: 27px;
        flex: 0 0 27px;
        color: #a1a7b0;
        font-size: 10px;
        font-weight: 700;
        transition: color var(--transition);
    }

    .dropdown-product::after {
        content: "→";
        margin-left: auto;
        color: var(--color-primary);
        font-size: 17px;
        opacity: 0;
        transform: translateX(-7px);
        transition: opacity var(--transition), transform var(--transition);
    }

    .dropdown-product:hover,
    .dropdown-product:focus-visible {
        padding-left: 17px;
        color: var(--color-primary);
        background: rgba(237, 28, 36, 0.055);
    }

        .dropdown-product:hover span,
        .dropdown-product:focus-visible span {
            color: var(--color-primary);
        }

        .dropdown-product:hover::after,
        .dropdown-product:focus-visible::after {
            opacity: 1;
            transform: translateX(0);
        }

.nav-dropdown__footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 35px;
    margin-top: 24px;
    padding: 18px 20px;
    background: var(--color-surface);
    border-radius: 10px;
}

    .nav-dropdown__footer p {
        margin: 0;
        color: var(--color-muted);
        font-size: 13px;
    }

.dropdown-all-products {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 11px 18px;
    color: var(--color-white);
    background: var(--color-primary);
    border-radius: 7px;
    font-size: 13px;
    font-weight: 700;
    transition: background var(--transition), transform var(--transition);
}

    .dropdown-all-products:hover {
        background: var(--color-primary-dark);
        transform: translateY(-2px);
    }

    .dropdown-all-products span {
        font-size: 18px;
    }


/* Dropdown arka plan perdesi */

.dropdown-backdrop {
    position: fixed;
    z-index: 15;
    inset: 0;
    display: block;
    background: rgba(8, 12, 18, 0.38);
    opacity: 0;
    visibility: hidden;
    backdrop-filter: blur(2px);
    transition: opacity var(--transition), visibility var(--transition);
}

body.dropdown-open .dropdown-backdrop {
    opacity: 1;
    visibility: visible;
}


/* ==================================================
   Mobil ürün menüsü
================================================== */

@media (max-width: 900px) {
    .nav-dropdown {
        width: 100%;
        height: auto;
        display: block;
        border-bottom: 1px solid var(--color-border);
    }

    .nav-dropdown__trigger {
        width: 100%;
        height: auto;
        justify-content: space-between;
        padding: 18px 10px;
        border: 0;
    }

        .nav-dropdown__trigger::after {
            display: none;
        }

        .nav-dropdown__trigger svg {
            width: 20px;
            height: 20px;
        }

    .nav-dropdown__menu {
        position: static;
        width: 100%;
        max-width: none;
        max-height: 0;
        margin: 0;
        overflow: hidden;
        padding: 0 10px;
        background: #f7f8fa;
        border: 0;
        border-radius: 0;
        box-shadow: none;
        opacity: 1;
        visibility: visible;
        transform: none;
        transition: max-height 450ms ease, padding 450ms ease;
    }

    .nav-dropdown.is-open .nav-dropdown__menu {
        max-height: 750px;
        padding: 18px 10px;
    }

    .nav-dropdown__header {
        margin-bottom: 12px;
        padding-bottom: 13px;
    }

        .nav-dropdown__header > div {
            display: block;
        }

        .nav-dropdown__header span {
            display: none;
        }

        .nav-dropdown__header strong {
            font-size: 15px;
        }

    .nav-dropdown__close {
        width: 30px;
        height: 30px;
        font-size: 20px;
    }

    .nav-dropdown__grid {
        max-height: 390px;
        grid-template-columns: 1fr;
        gap: 3px;
        overflow-y: auto;
        padding-right: 5px;
        overscroll-behavior: contain;
    }

        .nav-dropdown__grid::-webkit-scrollbar {
            width: 5px;
        }

        .nav-dropdown__grid::-webkit-scrollbar-track {
            background: #e8eaed;
            border-radius: 10px;
        }

        .nav-dropdown__grid::-webkit-scrollbar-thumb {
            background: var(--color-primary);
            border-radius: 10px;
        }

    .dropdown-product {
        min-height: 42px;
        padding: 8px 10px;
        background: var(--color-white);
        font-size: 12px;
    }

        .dropdown-product::after {
            display: none;
        }

    .nav-dropdown__footer {
        display: block;
        margin-top: 12px;
        padding: 12px;
    }

        .nav-dropdown__footer p {
            display: none;
        }

    .dropdown-all-products {
        width: 100%;
        justify-content: center;
    }

    .dropdown-backdrop {
        display: none;
    }
}

/* ==================================================
   Ürünler
================================================== */

.products-section {
    padding: 55px 0 80px;
    background: radial-gradient( circle at top center, rgba(237, 28, 36, 0.025), transparent 32% ), var(--color-white);
}

.section-heading {
    max-width: 760px;
    margin: 0 auto 38px;
    text-align: center;
}

.section-heading__line {
    width: 38px;
    height: 3px;
    display: block;
    margin: 0 auto 10px;
    background: var(--color-primary);
    border-radius: 10px;
}

.section-heading h2 {
    margin-bottom: 5px;
    color: var(--color-dark);
    font-size: clamp(34px, 4vw, 48px);
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -0.035em;
}

.section-heading p {
    margin-bottom: 0;
    color: var(--color-muted);
    font-size: 16px;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 18px;
}

.product-card {
    min-width: 0;
    overflow: hidden;
    background: var(--color-white);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-medium);
    box-shadow: 0 5px 20px rgba(15, 23, 42, 0.035);
    transition: border-color var(--transition), box-shadow var(--transition), transform var(--transition);
}

    .product-card:hover {
        border-color: rgba(237, 28, 36, 0.35);
        box-shadow: var(--shadow-card);
        transform: translateY(-5px);
    }

.product-card__image {
    position: relative;
    height: 155px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: 18px;
    background: radial-gradient(circle at center, #ffffff 0%, #f7f8fa 100%);
    border-bottom: 1px solid #eff0f2;
}

    .product-card__image::after {
        content: "";
        position: absolute;
        right: 20%;
        bottom: 12px;
        left: 20%;
        height: 12px;
        background: rgba(20, 27, 37, 0.1);
        border-radius: 50%;
        filter: blur(10px);
    }

    .product-card__image img {
        position: relative;
        z-index: 1;
        width: 100%;
        height: 100%;
        object-fit: contain;
        transition: transform 320ms ease;
    }

.product-card:hover .product-card__image img {
    transform: scale(1.06);
}

.product-card__content {
    min-height: 68px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 14px 16px;
}

    .product-card__content h3 {
        margin: 0;
        color: var(--color-dark);
        font-size: 14px;
        font-weight: 700;
        line-height: 1.35;
    }

    .product-card__content button {
        width: 30px;
        height: 30px;
        flex: 0 0 30px;
        display: grid;
        place-items: center;
        color: var(--color-primary);
        border: 1px solid transparent;
        border-radius: 50%;
        font-size: 22px;
        line-height: 1;
        transition: color var(--transition), background var(--transition), border-color var(--transition), transform var(--transition);
    }

.product-card:hover .product-card__content button {
    color: var(--color-white);
    background: var(--color-primary);
    border-color: var(--color-primary);
    transform: translateX(2px);
}


/* ==================================================
   Alt bilgi
================================================== */

.site-footer {
    padding: 32px 0;
    color: rgba(255, 255, 255, 0.7);
    background: var(--color-dark);
}

.site-footer__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.site-footer img {
    width: 185px;
    padding: 8px;
    background: var(--color-white);
    border-radius: var(--radius-small);
}

.site-footer p {
    margin: 0;
    font-size: 13px;
}


/* ==================================================
   Klavye erişilebilirliği
================================================== */

button:focus-visible {
    outline: 3px solid rgba(237, 28, 36, 0.35);
    outline-offset: 4px;
}


/* ==================================================
   Tablet
================================================== */

@media (max-width: 1200px) {
    :root {
        --header-height: 88px;
    }

    .site-logo img {
        width: 235px;
    }

    .main-navigation {
        gap: 28px;
    }

    .products-grid {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }
}

@media (max-width: 900px) {
    .topbar__location {
        display: none;
    }

    .navbar__inner {
        gap: 20px;
    }

    .mobile-menu-button {
        position: relative;
        z-index: 25;
        display: block;
    }

    .main-navigation {
        position: fixed;
        z-index: 20;
        top: 0;
        right: 0;
        width: min(82vw, 380px);
        height: 100vh;
        display: flex;
        flex-direction: column;
        align-items: stretch;
        justify-content: center;
        gap: 0;
        padding: 100px 30px 40px;
        background: var(--color-white);
        box-shadow: -20px 0 50px rgba(15, 23, 42, 0.14);
        transform: translateX(105%);
        visibility: hidden;
        transition: transform 320ms ease, visibility 320ms ease;
    }

        .main-navigation.is-open {
            visibility: visible;
            transform: translateX(0);
        }

    .nav-button {
        height: auto;
        padding: 18px 10px;
        border-bottom: 1px solid var(--color-border);
        text-align: left;
        font-size: 17px;
    }

        .nav-button::after {
            top: 50%;
            right: auto;
            bottom: auto;
            left: 0;
            width: 3px;
            height: 0;
            transform: translateY(-50%);
        }

        .nav-button:hover::after,
        .nav-button.is-active::after {
            right: auto;
            left: 0;
            height: 28px;
        }

    .mobile-menu-button.is-active span:nth-child(1) {
        transform: translateY(7px) rotate(45deg);
    }

    .mobile-menu-button.is-active span:nth-child(2) {
        opacity: 0;
    }

    .mobile-menu-button.is-active span:nth-child(3) {
        transform: translateY(-7px) rotate(-45deg);
    }

    .hero {
        min-height: 470px;
    }

    .hero__overlay {
        background: rgba(9, 13, 18, 0.78);
    }

    .products-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}


/* ==================================================
   Mobil
================================================== */

@media (max-width: 680px) {
    .container {
        width: min(calc(100% - 32px), var(--container-width));
    }

    .topbar {
        min-height: 40px;
    }

    .topbar__inner {
        min-height: 40px;
    }

    .topbar__contact {
        width: 100%;
        justify-content: space-between;
        gap: 12px;
    }

        .topbar__contact span {
            padding-left: 18px;
            font-size: 11px;
        }

            .topbar__contact span:first-child {
                max-width: 190px;
                overflow: hidden;
                text-overflow: ellipsis;
                white-space: nowrap;
            }

    .site-logo img {
        width: 205px;
        max-height: 72px;
    }

    .hero {
        min-height: 500px;
        background-position: 62% center;
    }

    .hero__content {
        padding-block: 65px;
    }

    .section-label {
        margin-bottom: 17px;
        padding-left: 43px;
        font-size: 12px;
    }

        .section-label::before {
            width: 30px;
        }

    .hero h1 {
        margin-bottom: 16px;
        font-size: 45px;
    }

    .hero__description {
        margin-bottom: 28px;
        font-size: 16px;
    }

    .primary-button {
        width: 100%;
        min-width: 0;
    }

    .products-section {
        padding: 45px 0 60px;
    }

    .section-heading {
        margin-bottom: 30px;
    }

        .section-heading h2 {
            font-size: 36px;
        }

        .section-heading p {
            font-size: 14px;
        }

    .products-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 12px;
    }

    .product-card__image {
        height: 130px;
        padding: 14px;
    }

    .product-card__content {
        min-height: 76px;
        align-items: flex-start;
        padding: 12px;
    }

        .product-card__content h3 {
            font-size: 12px;
        }

        .product-card__content button {
            width: 25px;
            height: 25px;
            flex-basis: 25px;
            font-size: 18px;
        }

    .site-footer__inner {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 420px) {
    .topbar__contact span:last-child {
        display: none;
    }

    .topbar__contact {
        justify-content: center;
    }

    .site-logo img {
        width: 180px;
    }

    .products-grid {
        grid-template-columns: 1fr;
    }

    .product-card {
        display: grid;
        grid-template-columns: 120px 1fr;
    }

    .product-card__image {
        height: 118px;
        border-right: 1px solid #eff0f2;
        border-bottom: 0;
    }

    .product-card__content {
        min-height: 118px;
        align-items: center;
    }

        .product-card__content h3 {
            font-size: 14px;
        }
}


/* ==================================================
   Hareket azaltma tercihi
================================================== */

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        transition-duration: 0.01ms !important;
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
    }
}
/* ==================================================
   Tam ekran slider
================================================== */

.hero-slider {
    position: relative;
    height: calc(100vh - 146px);
    min-height: 620px;
    overflow: hidden;
    color: var(--color-white);
    background: #101318;
}

.hero-slide {
    position: absolute;
    z-index: 1;
    inset: 0;
    overflow: hidden;
    opacity: 0;
    visibility: hidden;
    transition: opacity 900ms ease, visibility 900ms ease;
}

    .hero-slide.is-active {
        z-index: 2;
        opacity: 1;
        visibility: visible;
    }

.hero-slide__background {
    position: absolute;
    inset: -5%;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    transform: scale(1.08);
    transition: transform 7s linear;
}

.hero-slide.is-active .hero-slide__background {
    transform: scale(1);
}

.hero-slide__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient( 90deg, rgba(7, 10, 15, 0.95) 0%, rgba(7, 10, 15, 0.82) 36%, rgba(7, 10, 15, 0.3) 72%, rgba(7, 10, 15, 0.08) 100% ), linear-gradient( 0deg, rgba(7, 10, 15, 0.48) 0%, transparent 40% );
}

.hero-slide__content {
    position: relative;
    z-index: 3;
    height: 100%;
    display: flex;
    align-items: center;
}

.hero-slide__text {
    width: min(780px, 70%);
    padding-bottom: 30px;
}

    .hero-slide__text .section-label {
        opacity: 0;
        transform: translateY(30px);
    }

    .hero-slide__text h1,
    .hero-slide__text h2 {
        margin: 0 0 24px;
        color: var(--color-white);
        font-size: clamp(52px, 5.5vw, 88px);
        font-weight: 800;
        line-height: 1.05;
        letter-spacing: -0.055em;
        opacity: 0;
        transform: translateY(45px);
    }

        .hero-slide__text h1 span,
        .hero-slide__text h2 span {
            display: block;
            color: var(--color-primary);
        }

.hero-slide__description {
    max-width: 670px;
    margin-bottom: 35px;
    color: rgba(255, 255, 255, 0.84);
    font-size: clamp(16px, 1.35vw, 21px);
    line-height: 1.75;
    opacity: 0;
    transform: translateY(40px);
}

.hero-slide__text .primary-button {
    opacity: 0;
    transform: translateY(35px);
}

.hero-slide.is-active .section-label {
    animation: sliderContentIn 700ms 200ms ease forwards;
}

.hero-slide.is-active h1,
.hero-slide.is-active h2 {
    animation: sliderContentIn 800ms 350ms ease forwards;
}

.hero-slide.is-active .hero-slide__description {
    animation: sliderContentIn 800ms 500ms ease forwards;
}

.hero-slide.is-active .primary-button {
    animation: sliderButtonIn 800ms 650ms ease forwards;
}


/* Slider okları */

.slider-arrow {
    position: absolute;
    z-index: 10;
    top: 50%;
    width: 58px;
    height: 58px;
    display: grid;
    place-items: center;
    color: var(--color-white);
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: 50%;
    font-size: 24px;
    opacity: 0;
    backdrop-filter: blur(8px);
    transform: translateY(-50%);
    transition: color var(--transition), background var(--transition), border-color var(--transition), opacity var(--transition), transform var(--transition);
}

.slider-arrow--previous {
    left: 28px;
    transform: translate(-15px, -50%);
}

.slider-arrow--next {
    right: 28px;
    transform: translate(15px, -50%);
}

.hero-slider:hover .slider-arrow {
    opacity: 1;
    transform: translate(0, -50%);
}

.slider-arrow:hover {
    color: var(--color-white);
    background: var(--color-primary);
    border-color: var(--color-primary);
}


/* Slider noktaları */

.slider-pagination {
    position: absolute;
    z-index: 10;
    right: 52px;
    bottom: 48px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.slider-dot {
    position: relative;
    width: 12px;
    height: 12px;
    background: rgba(255, 255, 255, 0.4);
    border: 2px solid transparent;
    border-radius: 50%;
    transition: width var(--transition), background var(--transition), border-color var(--transition);
}

    .slider-dot.is-active {
        width: 38px;
        background: var(--color-primary);
        border-radius: 20px;
    }

    .slider-dot:hover {
        background: var(--color-white);
    }


/* Alt kaydırma göstergesi */

.slider-scroll-indicator {
    position: absolute;
    z-index: 10;
    bottom: 35px;
    left: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.75);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    transform: translateX(-50%);
}

    .slider-scroll-indicator i {
        position: relative;
        width: 24px;
        height: 38px;
        display: block;
        border: 1px solid rgba(255, 255, 255, 0.45);
        border-radius: 20px;
    }

        .slider-scroll-indicator i::after {
            content: "";
            position: absolute;
            top: 7px;
            left: 50%;
            width: 3px;
            height: 8px;
            background: var(--color-primary);
            border-radius: 4px;
            transform: translateX(-50%);
            animation: scrollIndicator 1.8s infinite;
        }


/* Slider ilerleme çizgisi */

.slider-progress {
    position: absolute;
    z-index: 10;
    right: 0;
    bottom: 0;
    left: 0;
    height: 4px;
    background: rgba(255, 255, 255, 0.15);
}

    .slider-progress span {
        width: 0;
        height: 100%;
        display: block;
        background: var(--color-primary);
    }

    .slider-progress.is-running span {
        animation: sliderProgress 6s linear forwards;
    }


/* Animasyonlar */

@keyframes sliderContentIn {
    from {
        opacity: 0;
        transform: translateY(45px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes sliderButtonIn {
    from {
        opacity: 0;
        transform: translateY(35px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes sliderProgress {
    from {
        width: 0;
    }

    to {
        width: 100%;
    }
}

@keyframes scrollIndicator {
    0% {
        opacity: 0;
        transform: translate(-50%, 0);
    }

    35% {
        opacity: 1;
    }

    100% {
        opacity: 0;
        transform: translate(-50%, 14px);
    }
}


/* Slider tablet */

@media (max-width: 900px) {
    .hero-slider {
        height: calc(100vh - 128px);
        min-height: 600px;
    }

    .hero-slide__text {
        width: 85%;
    }

        .hero-slide__text h1,
        .hero-slide__text h2 {
            font-size: clamp(46px, 8vw, 70px);
        }

    .slider-arrow {
        display: none;
    }
}


/* Slider mobil */

@media (max-width: 680px) {
    .hero-slider {
        height: calc(100svh - 128px);
        min-height: 560px;
    }

    .hero-slide__background {
        background-position: 64% center;
    }

    .hero-slide__overlay {
        background: linear-gradient( 90deg, rgba(7, 10, 15, 0.92), rgba(7, 10, 15, 0.6) ), linear-gradient( 0deg, rgba(7, 10, 15, 0.7), transparent );
    }

    .hero-slide__text {
        width: 100%;
        padding-bottom: 35px;
    }

        .hero-slide__text h1,
        .hero-slide__text h2 {
            margin-bottom: 18px;
            font-size: clamp(39px, 12vw, 56px);
        }

    .hero-slide__description {
        margin-bottom: 28px;
        font-size: 15px;
        line-height: 1.65;
    }

    .slider-pagination {
        right: 20px;
        bottom: 25px;
    }

    .slider-scroll-indicator {
        display: none;
    }
}
/* ==================================================
   Hakkımızda
================================================== */

.about-section {
    position: relative;
    overflow: hidden;
    padding: 120px 0;
    background: linear-gradient( 135deg, #ffffff 0%, #f8f9fb 50%, #ffffff 100% );
}

    .about-section::before {
        content: "POWER";
        position: absolute;
        top: 50%;
        right: -60px;
        color: rgba(24, 27, 32, 0.025);
        font-size: clamp(140px, 18vw, 300px);
        font-weight: 800;
        line-height: 1;
        letter-spacing: -0.08em;
        transform: translateY(-50%) rotate(-90deg);
        pointer-events: none;
    }

.about-decoration {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
}

.about-decoration--one {
    top: -120px;
    left: -120px;
    width: 300px;
    height: 300px;
    border: 60px solid rgba(237, 28, 36, 0.035);
}

.about-decoration--two {
    right: 8%;
    bottom: -180px;
    width: 340px;
    height: 340px;
    background: rgba(237, 28, 36, 0.025);
}

.about-grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
    align-items: center;
    gap: clamp(60px, 7vw, 110px);
}


/* Hakkımızda görselleri */

.about-visual {
    position: relative;
    min-height: 610px;
}

.about-visual__main {
    position: absolute;
    top: 0;
    right: 55px;
    bottom: 70px;
    left: 0;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 35px 70px rgba(15, 23, 42, 0.16);
}

    .about-visual__main::before {
        content: "";
        position: absolute;
        z-index: 3;
        top: 0;
        left: 0;
        width: 6px;
        height: 0;
        background: var(--color-primary);
        transition: height 1.2s 400ms ease;
    }

.about-visual.is-visible .about-visual__main::before {
    height: 100%;
}

.about-visual__main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1.2s ease;
}

.about-visual:hover .about-visual__main img {
    transform: scale(1.045);
}

.about-visual__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient( 180deg, transparent 40%, rgba(10, 13, 18, 0.72) 100% );
}

.about-visual__label {
    position: absolute;
    z-index: 2;
    bottom: 32px;
    left: 35px;
    color: var(--color-white);
}

    .about-visual__label span {
        display: block;
        font-size: 32px;
        font-weight: 800;
        letter-spacing: 0.08em;
        line-height: 1;
    }

    .about-visual__label small {
        color: rgba(255, 255, 255, 0.7);
        font-size: 11px;
        font-weight: 600;
        letter-spacing: 0.28em;
    }

.about-visual__secondary {
    position: absolute;
    right: 0;
    bottom: 0;
    width: 230px;
    height: 190px;
    overflow: hidden;
    padding: 8px;
    background: var(--color-white);
    border-radius: 5px;
    box-shadow: 0 25px 50px rgba(15, 23, 42, 0.18);
}

    .about-visual__secondary img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }


/* Deneyim kutusu */

.about-experience {
    position: absolute;
    z-index: 4;
    top: 55px;
    right: 0;
    min-width: 190px;
    display: flex;
    align-items: center;
    padding: 22px 25px;
    color: var(--color-white);
    background: var(--color-primary);
    box-shadow: 0 18px 40px rgba(237, 28, 36, 0.3);
}

    .about-experience strong {
        font-size: 52px;
        font-weight: 800;
        line-height: 1;
    }

    .about-experience > span {
        align-self: flex-start;
        margin: 2px 9px 0 2px;
        font-size: 24px;
        font-weight: 700;
    }

    .about-experience p {
        margin: 0;
        padding-left: 13px;
        border-left: 1px solid rgba(255, 255, 255, 0.35);
        font-size: 12px;
        font-weight: 600;
        line-height: 1.4;
    }


/* Dönen rozet */

.about-rotating-badge {
    position: absolute;
    z-index: 5;
    bottom: 55px;
    left: -60px;
    width: 140px;
    height: 140px;
    display: grid;
    place-items: center;
    background: var(--color-white);
    border-radius: 50%;
    box-shadow: 0 18px 45px rgba(15, 23, 42, 0.12);
}

    .about-rotating-badge svg {
        position: absolute;
        inset: 5px;
        width: 130px;
        height: 130px;
        animation: aboutBadgeRotation 16s linear infinite;
    }

    .about-rotating-badge text {
        fill: var(--color-dark);
        font-size: 12px;
        font-weight: 700;
        letter-spacing: 0.11em;
    }

.about-rotating-badge__center {
    width: 62px;
    height: 62px;
    display: grid;
    place-items: center;
    color: var(--color-white);
    background: var(--color-primary);
    border-radius: 50%;
    font-size: 26px;
}


/* Hakkımızda metinleri */

.about-content {
    position: relative;
}

.about-eyebrow {
    position: relative;
    margin-bottom: 17px;
    padding-left: 52px;
    color: var(--color-primary);
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.11em;
    text-transform: uppercase;
}

    .about-eyebrow::before {
        content: "";
        position: absolute;
        top: 50%;
        left: 0;
        width: 38px;
        height: 3px;
        background: var(--color-primary);
        border-radius: 10px;
        transform: translateY(-50%);
    }

.about-content h2 {
    margin-bottom: 25px;
    color: var(--color-dark);
    font-size: clamp(42px, 4.4vw, 68px);
    font-weight: 800;
    line-height: 1.08;
    letter-spacing: -0.05em;
}

    .about-content h2 span {
        display: block;
        color: var(--color-primary);
    }

.about-lead {
    margin-bottom: 18px;
    color: #343a44;
    font-size: 18px;
    font-weight: 600;
    line-height: 1.7;
}

.about-description {
    margin-bottom: 32px;
    color: var(--color-muted);
    font-size: 15px;
    line-height: 1.85;
}


/* Özellikler */

.about-features {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 15px;
}

.about-feature {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 18px;
    background: var(--color-white);
    border: 1px solid var(--color-border);
    border-radius: 10px;
    transition: border-color var(--transition), box-shadow var(--transition), transform var(--transition);
}

    .about-feature:hover {
        border-color: rgba(237, 28, 36, 0.35);
        box-shadow: 0 15px 35px rgba(15, 23, 42, 0.07);
        transform: translateY(-4px);
    }

.about-feature__icon {
    width: 43px;
    height: 43px;
    flex: 0 0 43px;
    display: grid;
    place-items: center;
    color: var(--color-primary);
    background: rgba(237, 28, 36, 0.08);
    border-radius: 8px;
}

    .about-feature__icon span {
        font-size: 11px;
        font-weight: 800;
    }

.about-feature h3 {
    margin-bottom: 4px;
    color: var(--color-dark);
    font-size: 14px;
    font-weight: 700;
}

.about-feature p {
    margin: 0;
    color: var(--color-muted);
    font-size: 12px;
    line-height: 1.6;
}


/* İstatistikler */

.about-statistics {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    margin-top: 35px;
    padding-top: 28px;
    border-top: 1px solid var(--color-border);
}

.about-statistic {
    position: relative;
    padding-inline: 25px;
}

    .about-statistic:first-child {
        padding-left: 0;
    }

    .about-statistic:not(:last-child)::after {
        content: "";
        position: absolute;
        top: 5px;
        right: 0;
        width: 1px;
        height: 50px;
        background: var(--color-border);
    }

    .about-statistic strong {
        color: var(--color-dark);
        font-size: 35px;
        font-weight: 800;
        line-height: 1;
    }

    .about-statistic > span {
        color: var(--color-primary);
        font-size: 20px;
        font-weight: 800;
    }

    .about-statistic p {
        margin: 8px 0 0;
        color: var(--color-muted);
        font-size: 11px;
        font-weight: 600;
        text-transform: uppercase;
    }


/* Scroll animasyonları */

.reveal {
    opacity: 0;
    transition: opacity 900ms ease, transform 900ms ease;
}

.reveal--left {
    transform: translateX(-70px);
}

.reveal--right {
    transform: translateX(70px);
}

.reveal.is-visible {
    opacity: 1;
    transform: translateX(0);
}


/* Animasyon */

@keyframes aboutBadgeRotation {
    from {
        transform: rotate(0);
    }

    to {
        transform: rotate(360deg);
    }
}


/* Tablet */

@media (max-width: 1100px) {
    .about-section {
        padding: 90px 0;
    }

    .about-grid {
        gap: 55px;
    }

    .about-visual {
        min-height: 540px;
    }

    .about-rotating-badge {
        left: -25px;
    }

    .about-features {
        grid-template-columns: 1fr;
    }
}


/* Mobil */

@media (max-width: 800px) {
    .about-section {
        padding: 70px 0;
    }

    .about-grid {
        grid-template-columns: 1fr;
    }

    .about-visual {
        min-height: 520px;
    }

    .about-content h2 {
        font-size: clamp(40px, 11vw, 58px);
    }
}

@media (max-width: 520px) {
    .about-section {
        padding: 55px 0;
    }

    .about-visual {
        min-height: 430px;
    }

    .about-visual__main {
        right: 25px;
        bottom: 55px;
    }

    .about-visual__secondary {
        width: 150px;
        height: 125px;
    }

    .about-experience {
        top: 25px;
        min-width: 145px;
        padding: 16px;
    }

        .about-experience strong {
            font-size: 38px;
        }

        .about-experience p {
            font-size: 10px;
        }

    .about-rotating-badge {
        bottom: 35px;
        left: -15px;
        width: 105px;
        height: 105px;
    }

        .about-rotating-badge svg {
            width: 97px;
            height: 97px;
        }

    .about-rotating-badge__center {
        width: 45px;
        height: 45px;
        font-size: 20px;
    }

    .about-features {
        grid-template-columns: 1fr;
    }

    .about-statistics {
        gap: 10px;
    }

    .about-statistic {
        padding-inline: 10px;
    }

        .about-statistic strong {
            font-size: 26px;
        }

        .about-statistic p {
            font-size: 9px;
        }
}

/* ==================================================
   Footer
================================================== */

.site-footer {
    position: relative;
    overflow: hidden;
    color: rgba(255, 255, 255, 0.72);
    background: radial-gradient( circle at 10% 0%, rgba(237, 28, 36, 0.13), transparent 28% ), radial-gradient( circle at 90% 100%, rgba(237, 28, 36, 0.08), transparent 25% ), #12151a;
}

    .site-footer::before {
        content: "POWER";
        position: absolute;
        right: -25px;
        bottom: 50px;
        color: rgba(255, 255, 255, 0.018);
        font-size: clamp(150px, 20vw, 340px);
        font-weight: 800;
        line-height: 0.8;
        letter-spacing: -0.08em;
        pointer-events: none;
    }

.site-footer__accent {
    height: 5px;
    background: linear-gradient( 90deg, var(--color-primary) 0%, var(--color-primary) 32%, rgba(237, 28, 36, 0.2) 32%, rgba(237, 28, 36, 0.2) 100% );
}


/* Footer üst teklif alanı */

.footer-top {
    position: relative;
    z-index: 2;
    padding: 55px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-intro {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
}

.footer-intro__label {
    position: relative;
    display: block;
    margin-bottom: 12px;
    padding-left: 48px;
    color: var(--color-primary);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

    .footer-intro__label::before {
        content: "";
        position: absolute;
        top: 50%;
        left: 0;
        width: 34px;
        height: 3px;
        background: var(--color-primary);
        transform: translateY(-50%);
    }

.footer-intro h2 {
    margin: 0;
    color: var(--color-white);
    font-size: clamp(30px, 3.3vw, 50px);
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.04em;
}

    .footer-intro h2 strong {
        color: var(--color-primary);
        font-weight: 800;
    }

.footer-offer-button {
    min-width: 215px;
    min-height: 58px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 22px;
    padding: 14px 25px;
    color: var(--color-white);
    background: var(--color-primary);
    border: 2px solid var(--color-primary);
    border-radius: 7px;
    box-shadow: 0 15px 35px rgba(237, 28, 36, 0.24);
    font-size: 14px;
    font-weight: 700;
    transition: background var(--transition), border-color var(--transition), transform var(--transition), box-shadow var(--transition);
}

    .footer-offer-button span {
        font-size: 21px;
        transition: transform var(--transition);
    }

    .footer-offer-button:hover {
        background: transparent;
        border-color: var(--color-primary);
        transform: translateY(-3px);
        box-shadow: 0 20px 40px rgba(237, 28, 36, 0.18);
    }

        .footer-offer-button:hover span {
            transform: translateX(5px);
        }


/* Footer ana alan */

.footer-main {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: minmax(260px, 1.35fr) minmax(150px, 0.65fr) minmax(210px, 0.9fr) minmax(280px, 1.15fr);
    gap: clamp(35px, 5vw, 75px);
    padding: 70px 0;
}

.footer-brand {
    max-width: 360px;
}

.footer-logo {
    width: 245px;
    margin-bottom: 26px;
    padding: 13px 16px;
    background: var(--color-white);
    border-radius: 8px;
}

    .footer-logo img {
        width: 100%;
        height: auto;
    }

.footer-brand > p {
    margin-bottom: 28px;
    color: rgba(255, 255, 255, 0.58);
    font-size: 13px;
    line-height: 1.85;
}

.footer-socials {
    display: flex;
    align-items: center;
    gap: 10px;
}

    .footer-socials button {
        width: 42px;
        height: 42px;
        display: grid;
        place-items: center;
        color: rgba(255, 255, 255, 0.74);
        background: rgba(255, 255, 255, 0.055);
        border: 1px solid rgba(255, 255, 255, 0.1);
        border-radius: 7px;
        font-size: 13px;
        font-weight: 700;
        text-transform: uppercase;
        transition: color var(--transition), background var(--transition), border-color var(--transition), transform var(--transition);
    }

        .footer-socials button:hover {
            color: var(--color-white);
            background: var(--color-primary);
            border-color: var(--color-primary);
            transform: translateY(-4px);
        }


/* Footer sütunları */

.footer-column h3 {
    position: relative;
    margin-bottom: 27px;
    padding-bottom: 14px;
    color: var(--color-white);
    font-size: 15px;
    font-weight: 700;
}

    .footer-column h3::after {
        content: "";
        position: absolute;
        bottom: 0;
        left: 0;
        width: 32px;
        height: 2px;
        background: var(--color-primary);
    }

.footer-menu {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
}

    .footer-menu button {
        position: relative;
        padding-left: 15px;
        color: rgba(255, 255, 255, 0.58);
        text-align: left;
        font-size: 12px;
        line-height: 1.5;
        transition: color var(--transition), padding-left var(--transition);
    }

        .footer-menu button::before {
            content: "";
            position: absolute;
            top: 8px;
            left: 0;
            width: 5px;
            height: 5px;
            background: var(--color-primary);
            border-radius: 50%;
            transition: transform var(--transition);
        }

        .footer-menu button:hover {
            padding-left: 20px;
            color: var(--color-white);
        }

            .footer-menu button:hover::before {
                transform: scale(1.5);
            }


/* İletişim */

.footer-contact__item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
}

    .footer-contact__item:not(:last-child) {
        margin-bottom: 22px;
    }

.footer-contact__icon {
    width: 39px;
    height: 39px;
    flex: 0 0 39px;
    display: grid;
    place-items: center;
    color: var(--color-primary);
    background: rgba(237, 28, 36, 0.1);
    border: 1px solid rgba(237, 28, 36, 0.18);
    border-radius: 7px;
}

    .footer-contact__icon svg {
        width: 19px;
        height: 19px;
        fill: none;
        stroke: currentColor;
        stroke-width: 1.7;
        stroke-linecap: round;
        stroke-linejoin: round;
    }

.footer-contact__item span {
    display: block;
    margin-bottom: 4px;
    color: rgba(255, 255, 255, 0.4);
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.footer-contact__item p {
    margin: 0;
    color: rgba(255, 255, 255, 0.7);
    font-size: 12px;
    line-height: 1.65;
}


/* Footer alt alan */

.footer-bottom {
    position: relative;
    z-index: 2;
    min-height: 78px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

    .footer-bottom > p {
        margin: 0;
        color: rgba(255, 255, 255, 0.4);
        font-size: 11px;
    }

.footer-bottom__buttons {
    display: flex;
    align-items: center;
    gap: 14px;
}

    .footer-bottom__buttons button {
        color: rgba(255, 255, 255, 0.42);
        font-size: 10px;
        transition: color var(--transition);
    }

        .footer-bottom__buttons button:hover {
            color: var(--color-white);
        }

    .footer-bottom__buttons > span {
        width: 3px;
        height: 3px;
        background: var(--color-primary);
        border-radius: 50%;
    }


/* Yukarı çık butonu */

.back-to-top {
    width: 43px;
    height: 43px;
    display: grid;
    place-items: center;
    color: var(--color-white);
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 7px;
    transition: background var(--transition), border-color var(--transition), transform var(--transition);
}

    .back-to-top svg {
        width: 20px;
        height: 20px;
        fill: none;
        stroke: currentColor;
        stroke-width: 2;
        stroke-linecap: round;
        stroke-linejoin: round;
    }

    .back-to-top:hover {
        background: var(--color-primary);
        border-color: var(--color-primary);
        transform: translateY(-4px);
    }


/* Footer tablet */

@media (max-width: 1050px) {
    .footer-main {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .footer-brand {
        max-width: 100%;
    }
}


/* Footer mobil */

@media (max-width: 680px) {
    .footer-top {
        padding: 42px 0;
    }

    .footer-intro {
        align-items: flex-start;
        flex-direction: column;
        gap: 28px;
    }

        .footer-intro h2 strong {
            display: block;
        }

    .footer-offer-button {
        width: 100%;
    }

    .footer-main {
        grid-template-columns: 1fr;
        gap: 42px;
        padding: 52px 0;
    }

    .footer-logo {
        width: 220px;
    }

    .footer-products {
        display: none;
    }

    .footer-bottom {
        flex-direction: column;
        justify-content: center;
        gap: 17px;
        padding: 27px 0;
        text-align: center;
    }

    .back-to-top {
        position: absolute;
        top: 20px;
        right: 0;
    }

    .footer-bottom__buttons {
        padding-right: 45px;
    }
}
/* ==================================================
   Sabit üst menü
================================================== */

.site-header {
    position: sticky;
    z-index: 1000;
    top: -46px;
    width: 100%;
}

.navbar {
    box-shadow: 0 8px 25px rgba(15, 23, 42, 0.06);
}

@media (max-width: 680px) {
    .site-header {
        top: -40px;
    }
}
@media (min-width: 901px) {
    .nav-dropdown__menu::before {
        content: "";
        position: absolute;
        right: 0;
        bottom: 100%;
        left: 0;
        height: 18px;
    }
}
.site-topbar,
.site-topbar * {
    box-sizing: border-box;
}

.site-topbar {
    width: 100%;
    height: 42px;
    background: #ffffff;
    border-bottom: 1px solid #e8e8e8;
    font-family: Arial, Helvetica, sans-serif;
}

.site-topbar__inner {
    width: calc(100% - 48px);
    max-width: 1448px;
    height: 100%;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.site-topbar__left {
    display: flex;
    align-items: center;
    gap: 28px;
}

.site-topbar__item,
.site-topbar__right {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    color: #292d3d;
    font-size: 14px;
    font-weight: 400;
    line-height: 1;
    text-decoration: none;
    white-space: nowrap;
}

    .site-topbar__item svg,
    .site-topbar__right svg {
        display: block !important;
        width: 15px !important;
        height: 15px !important;
        min-width: 15px;
        flex-shrink: 0;
        fill: #ed1c24 !important;
        color: #ed1c24 !important;
    }

    .site-topbar__item:hover {
        color: #ed1c24;
    }

    /* Eski ikonları ve kırmızı noktaları kaldırır */
    .site-topbar__separator,
    .site-topbar__item::before,
    .site-topbar__item::after,
    .site-topbar__right::before,
    .site-topbar__right::after {
        display: none !important;
        content: none !important;
    }

@media (max-width: 900px) {
    .site-topbar__inner {
        width: calc(100% - 32px);
    }

    .site-topbar__right {
        display: none;
    }
}

@media (max-width: 600px) {
    .site-topbar {
        height: 38px;
    }

    .site-topbar__inner {
        width: calc(100% - 24px);
        justify-content: center;
    }

    .site-topbar__left {
        width: 100%;
        justify-content: space-between;
        gap: 12px;
    }

    .site-topbar__item {
        font-size: 12px;
    }
}

@media (max-width: 430px) {
    .site-topbar__item:first-child span {
        display: none;
    }

    .site-topbar__left {
        justify-content: center;
        gap: 30px;
    }
}

.mobile-contact-bar {
    display: none;
}

@media (max-width: 768px) {
    body {
        padding-bottom: 72px;
    }

    .mobile-contact-bar {
        position: fixed;
        right: 0;
        bottom: 0;
        left: 0;
        z-index: 9999;
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 0;
        padding: 8px 10px;
        padding-bottom: calc(8px + env(safe-area-inset-bottom));
        background: rgba(255, 255, 255, 0.96);
        border-top: 1px solid rgba(0, 0, 0, 0.08);
        box-shadow: 0 -8px 30px rgba(0, 0, 0, 0.12);
        backdrop-filter: blur(12px);
        -webkit-backdrop-filter: blur(12px);
    }

    .mobile-contact-bar__button {
        min-height: 52px;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 9px;
        color: #ffffff;
        font-size: 14px;
        font-weight: 700;
        line-height: 1;
        text-decoration: none;
        transition: transform 0.2s ease, filter 0.2s ease;
    }

        .mobile-contact-bar__button:first-child {
            border-radius: 12px 0 0 12px;
        }

        .mobile-contact-bar__button:last-child {
            border-radius: 0 12px 12px 0;
        }

    .mobile-contact-bar__button--whatsapp {
        background: #25d366;
    }

    .mobile-contact-bar__button--call {
        background: #ed1c24;
    }

    .mobile-contact-bar__button svg {
        display: block;
        width: 21px;
        height: 21px;
        flex: 0 0 21px;
        fill: currentColor;
    }

    .mobile-contact-bar__button:active {
        transform: scale(0.97);
        filter: brightness(0.92);
    }
}