﻿:root {
    --bg: white;
    --stroke: rgba(255,255,255,.14);
    --stroke2: rgba(255,255,255,.18);
    --text: black;
    --muted: rgba(255,255,255,.78);
    --muted2: rgba(255,255,255,.62);
    --yellow: #f7c600;
    --mor: #4C1982;
    --cardGlass: rgba(20,20,20,.38);
    --cardBorder: rgba(255,255,255,.12);
    --panelGlass: rgba(0,0,0,.25);
    --panelBorder: rgba(255,255,255,.10);
    --max: 1280px;
    --line: rgba(255,255,255,.14);
    --brand: #f7c600;
    --radius: 8px;
}


/* lexend-deca-regular - latin */
@font-face {
    font-display: swap;
    font-family: 'Lexend Deca';
    font-style: normal;
    font-weight: 400;
    src: url('/assets/fonts/lexend-deca/lexend-deca-v25-latin-regular.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* lexend-deca-500 - latin */
@font-face {
    font-display: swap;
    font-family: 'Lexend Deca';
    font-style: normal;
    font-weight: 500;
    src: url('/assets/fonts/lexend-deca/lexend-deca-v25-latin-500.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* lexend-deca-600 - latin */
@font-face {
    font-display: swap;
    font-family: 'Lexend Deca';
    font-style: normal;
    font-weight: 600;
    src: url('/assets/fonts/lexend-deca/lexend-deca-v25-latin-600.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* lexend-deca-700 - latin */
@font-face {
    font-display: swap;
    font-family: 'Lexend Deca';
    font-style: normal;
    font-weight: 700;
    src: url('/assets/fonts/lexend-deca/lexend-deca-v25-latin-700.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* lexend-deca-800 - latin */
@font-face {
    font-display: swap;
    font-family: 'Lexend Deca';
    font-style: normal;
    font-weight: 800;
    src: url('/assets/fonts/lexend-deca/lexend-deca-v25-latin-800.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* lexend-deca-900 - latin */
@font-face {
    font-display: swap;
    font-family: 'Lexend Deca';
    font-style: normal;
    font-weight: 900;
    src: url('/assets/fonts/lexend-deca/lexend-deca-v25-latin-900.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}

/* =========================
   GLOBAL / BASE
   ========================= */
html, body {
    height: 100%;
    margin: 0;
    padding: 0;
}

body {
    font-family: "Lexend Deca", Roboto, -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
    background: var(--bg);
    color: var(--text);
    line-height: 1.5;
}

* {
    box-sizing: border-box;
}

a {
    color: inherit;
    text-decoration: none;
}


/* BUTTONS */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 40px;
    padding-right: 16px;
    padding-left: 16px;
    border-radius: var(--radius);
    font-weight: 500;
    cursor: pointer;
}

    .btn:hover {
        background: rgba(255,255,255,.10);
    }

    .btn.primary {
        font-size: 14px;
        border: 1px solid var(--line);
        color: white;
        background: var(--mor);
        border-color: transparent;
    }

        .btn.primary:hover {
            filter: brightness(.95);
        }


/* =========================
   HEADER
   ========================= */
.topbar {
    position: sticky;
    top: 0;
    z-index: 9999;
    /*    backdrop-filter: saturate(160%) blur(10px);*/
    background: white;
    border-bottom: 1px solid var(--line);
}

.header-ust {
    width: 100%;
    background: linear-gradient(90deg, #5b1797 0%, #3b0f72 100%);
    color: #fff;
    font-size: 13px;
    font-weight: 600;
    height: 44px;
    display: flex;
    align-items: center;
    z-index: 999;
}

.header-ust-ic {
    max-width: var(--max);
    width: 100%;
    margin: 0 auto;
    padding: 0 18px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.header-sol,
.header-sag {
    display: flex;
    align-items: center;
    gap: 18px;
}

.header-ust a {
    color: #fff;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: opacity .2s ease;
}

    .header-ust a:hover {
        opacity: .8;
    }

.header-social-title {
    opacity: .9;
    margin-left: 14px;
}

.header-sol i {
    font-size: 14px;
}

.header-phone {
    font-weight: 700;
}

@media (max-width: 768px) {
    .header-ust {
        height: auto;
        padding: 8px 0;
        font-size: 12px;
    }

    .header-ust-ic {
        flex-direction: column;
        gap: 8px;
    }

    .header-sol {
        gap: 12px;
        flex-wrap: wrap;
        justify-content: center;
    }

    .header-sag {
        display: none;
    }

    .header-social-title {
        display: none;
    }
}

.navrow {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 70px;
    gap: 14px;
}

.brand {
    display: flex;
    align-items: center;
    gap: 10px;
    min-width: 170px;
}

    .brand img {
        height: 40px;
        width: auto;
        display: block;
    }

/* Dropdown */
.dd {
    position: relative;
}

    .dd > button {
        all: unset;
        cursor: pointer;
    }

.ddbtn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 10px;
    border-radius: 10px;
    font-weight: 700;
}

    .ddbtn:hover {
        background: rgba(255,255,255,.06);
    }

.caret {
    width: 0;
    height: 0;
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    border-top: 6px solid var(--muted);
    margin-top: 2px;
}

.ddmenu {
    position: absolute;
    left: 0;
    top: 48px;
    min-width: 260px;
    padding: 10px;
    border: 1px solid var(--line);
    background: rgba(18,20,27,.98);
    border-radius: 14px;
    box-shadow: 0 20px 50px rgba(0,0,0,.45);
    display: none;
}

.dd.open .ddmenu {
    display: block;
}

.ddmenu a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 12px;
    border-radius: 10px;
    color: var(--text);
}

    .ddmenu a:hover {
        background: rgba(255,255,255,.06);
    }

.tag {
    font-size: 12px;
    color: var(--muted);
    font-weight: 600;
}
/* Header links */
.navlinks {
    display: flex;
    align-items: center;
    gap: 18px;
    font-weight: 600;
}

    .navlinks > a {
        padding: 10px 10px;
        border-radius: 10px;
        color: var(--text);
    }

        .navlinks > a:hover {
            background: rgba(255,255,255,.06);
        }

.right {
    display: flex;
    align-items: center;
    gap: 10px;
}

/* Mobile */
.burger {
    display: none;
}

.mobilePanel {
    display: none;
    border-top: 1px solid var(--line);
    padding: 12px 0;
}

    .mobilePanel a, .mobilePanel button {
        width: 100%;
        text-align: left;
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 12px 10px;
        border-radius: 12px;
        border: 0;
        background: transparent;
        color: var(--text);
        font-weight: 700;
    }

        .mobilePanel a:hover, .mobilePanel button:hover {
            background: rgba(255,255,255,.06);
        }


.breadcrumb {
    margin: 0 0 5px;
    font-size: 13px;
}

.breadcrumbList {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 0;
}

.breadcrumbItem {
    color: #8f96a3;
}

    .breadcrumbItem + .breadcrumbItem::before {
        content: "›";
        margin: 0 8px;
        color: #6f7682;
    }

    .breadcrumbItem a {
        color: black;
        text-decoration: none;
    }

        .breadcrumbItem a:hover {
            color: var(--mor);
        }

    .breadcrumbItem.active span {
        color: var(--mor);
        font-weight: 600;
    }

@media (max-width: 980px) {
    .navlinks {
        display: none;
    }

    .burger {
        display: inline-flex;
    }

    .mobilePanel.show {
        display: block;
    }

    .brand {
        min-width: auto;
    }
}

.container {
    margin: 0 auto;
}




/* =========================
   TABS
   ========================= */
.tabs {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.tab {
    border: 1px solid rgba(255,255,255,.12);
    background: rgba(255,255,255,.04);
    color: #fff;
    padding: 10px 14px;
    border-radius: 14px;
    font-weight: 800;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
}

    .tab:hover {
        background: rgba(255,255,255,.06);
    }

    .tab.active {
        background: rgba(255,255,255,.92);
        color: #000;
        border-color: rgba(255,255,255,.92);
    }


.container2 {
    max-width: var(--max);
    margin: 0 auto;
    padding: 0 16px;
}

/* MAIN */
.page {
    min-height: 65vh;
    padding: 0px;
    /* padding: 18px 0 40px;*/
}

.heroPage {
    position: relative;
    width: 100%;
    min-height: 300px;
    overflow: hidden;
    background: #000;
}

.heroPageMedia {
    position: absolute;
    inset: 0;
    display: block;
}

    .heroPageMedia img {
        width: 100%;
        height: 100%;
        display: block;
        object-fit: cover;
        object-position: center;
    }



.hero-seo {
    position: relative;
    width: 100%;
    overflow: hidden;
}

    .hero-seo img {
        width: 100%;
        height: auto;
        display: block;
    }

/* overlay */
.hero-overlay {
    position: absolute;
    bottom: 40px;
    left: 40px;
    color: #fff;
    max-width: 600px;
}


    .hero-overlay h1 {
        font-size: 32px;
        font-weight: 800;
        margin-bottom: 10px;
        color: #fff;
        text-shadow: 0 2px 4px rgba(0,0,0,0.9), 0 6px 20px rgba(0,0,0,0.7), 0 0 2px rgba(0,0,0,1);
    }

    .hero-overlay p {
        font-size: 17px;
        font-weight: 600;
        color: #fff;
        text-shadow: 0 2px 4px rgba(0,0,0,0.9), 0 4px 12px rgba(0,0,0,0.7);
    }

.hero-seo::before {
    content: "";
    position: absolute;
    inset: 0;
    /*background: linear-gradient( 90deg, rgba(0,0,0,0.65) 0%, rgba(0,0,0,0.45) 40%, rgba(0,0,0,0.1) 100% );*/
    z-index: 1;
}

.hero-overlay {
    position: absolute;
    z-index: 2;
}

.pageHeader {
    padding-top: 9px;
    padding-bottom: 1px;
    background-color: #d5cedc7a;
    width: 100%;
}
/* mobile */
@media (max-width:768px) {

    .hero-seo::before {
        background: linear-gradient(90deg, rgba(0, 0, 0, 0.65) 0%, rgb(0 0 0 / 67%) 40%, rgb(0 0 0 / 30%) 100%);
        /*    background: linear-gradient( 90deg, rgba(0,0,0,0.65) 0%, rgba(0,0,0,0.45) 40%, rgba(0,0,0,0.1) 100% );*/
    }

    .hero-overlay {
        left: 20px;
        bottom: 20px;
    }

        .hero-overlay h1 {
            font-size: 22px;
        }

        .hero-overlay p {
            font-size: 14px;
        }
}

.heroPageOverlay {
    position: absolute;
    inset: 0;
    background: linear-gradient( 180deg, rgba(0,0,0,0.18) 0%, rgba(0,0,0,0.36) 45%, rgba(0,0,0,0.86) 100% );
    z-index: 1;
}

.heroPageContent {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    min-height: 300px;
    padding: 32px 20px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.heroPageTitle {
    margin: 0;
    color: #fff;
    font-size: 42px;
    line-height: 1.1;
    font-weight: 900;
    letter-spacing: -0.6px;
    text-shadow: 0 2px 10px rgba(0,0,0,0.45);
}

.heroPageIntro {
    margin: 10px 0 0;
    max-width: 760px;
    color: rgba(255,255,255,0.86);
    font-size: 18px;
    line-height: 1.5;
    font-weight: 500;
}

@media (max-width: 991px) {
    .heroPage,
    .heroPageContent {
        min-height: 240px;
    }

    .heroPageTitle {
        font-size: 34px;
    }

    .heroPageIntro {
        font-size: 16px;
    }
}

@media (max-width: 723px) {
    .heroPage,
    .heroPageContent {
        min-height: 140px;
    }

    .heroPageContent {
        padding: 18px 14px;
    }

    .heroPageTitle {
        font-size: 24px;
    }

    .heroPageIntro {
        margin-top: 6px;
        font-size: 14px;
        line-height: 1.35;
    }

    .heroPageMedia img {
        object-position: center;
    }
}

/* Footer links/social */
.links {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

    .links a {
        font-size: 13px;
        color: var(--muted);
        padding: 8px 10px;
        border: 1px solid rgba(255,255,255,.10);
        border-radius: 999px;
        background: rgba(255,255,255,.04);
    }

        .links a:hover {
            color: var(--text);
            background: rgba(255,255,255,.08);
        }

.social {
    display: flex;
    gap: 10px;
    margin-top: 12px;
}

.ico {
    width: 40px;
    height: 40px;
    border-radius: 9px;
}


/* =========================
   FOOTER
   ========================= */
/* =========================
   FOOTER (FIXED + MOBILE SAFE)
   ========================= */

.dtFooter {
    background: #ffffff;
    color: var(--mor);
    padding: 28px 0 32px;
    font-family: inherit;
    border-top: 3px solid var(--mor);
}

/* ⚠️ EN KRİTİK FIX (taşmayı çözer) */
.dtFooterInner {
    width: 100%;
    max-width: var(--max);
    padding: 0 16px;
    margin: 0 auto;
}

/* GRID */
.dtFooterGrid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1.2fr 1.2fr 1fr 1fr;
    gap: 32px;
    align-items: start;
}

/* LOGO */
.dtFooterLogo {
    width: 160px;
    max-width: 100%;
    margin-bottom: 18px;
}

/* STORE BUTTONS */
.dtStoreBtns {
    display: flex;
    gap: 8px;
    margin-bottom: 20px;
}

    .dtStoreBtns img {
        height: 30px;
        width: auto;
    }

/* =========================
   CONTACT (ICON STYLE)
   ========================= */

.dtContactBox {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 10px;
}

.dtContactItem {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 13px;
    line-height: 1.5;
}

    .dtContactItem i {
        color: var(--mor);
        font-size: 15px;
        margin-top: 3px;
        min-width: 16px;
    }

    .dtContactItem a {
        transition: all .2s ease;
    }

        .dtContactItem a:hover {
            color: var(--mor);
            text-decoration: underline;
        }

/* =========================
   LINKS
   ========================= */
.dtFooterLink {
    color: #242a35;
}

.dtFooterCol h4 {
    font-size: 15px;
    font-weight: 800;
    margin: 0 0 12px;
}

.dtFooterCol a {
    display: block;
    text-decoration: none;
    font-size: 13px;
    line-height: 1.45;
    margin-bottom: 8px;
    transition: all .2s ease;
    color: #242a35;
}

    .dtFooterCol a:hover {
        opacity: .75;
        transform: translateX(2px);
    }

/* =========================
   LINES / TEXT
   ========================= */

.dtFooterLine {
    height: 1px;
    background: rgba(76, 25, 130, .18);
    margin: 28px 0 18px;
}

.dtFooterCenter {
    text-align: center;
    font-size: 12px;
    line-height: 1.6;
    color: #242a35;
}

.dtLegalText {
    max-width: 820px;
    margin: 14px auto 0;
    text-align: center;
    font-size: 10.5px;
    line-height: 1.6;
    opacity: .85;
}

.dtCompanyInfo {
    margin: 10px auto 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 6px 16px;
    max-width: 900px;
    font-size: 11px;
    line-height: 1.6;
    color: rgba(76, 25, 130, .85);
}

    .dtCompanyInfo span {
        white-space: nowrap;
    }

/* =========================
   BOTTOM
   ========================= */

.dtFooterBottom {
    display: flex;
    justify-content: center;
    gap: 12px;
    font-size: 12px;
    font-weight: 700;
}

    .dtFooterBottom a {
        text-decoration: none;
    }

        .dtFooterBottom a:hover {
            text-decoration: underline;
        }

.dtCopy {
    text-align: center;
    margin-top: 12px;
    font-size: 11px;
    opacity: .7;
}

/* =========================
   TABLET
   ========================= */

@media (max-width: 992px) {
    .dtFooterGrid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 26px;
    }
}

/* =========================
   FOOTER MOBILE DESIGN
   ========================= */

@media (max-width: 640px) {

    .dtFooter {
        padding: 22px 0 24px;
        background: #fff;
    }

    .dtFooterInner {
        width: 100%;
        max-width: var(--max);
        padding: 0 18px;
        margin: 0 auto;
    }

    .dtFooterGrid {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 28px 18px;
        align-items: start;
    }

    /* İlk blok tam genişlik */
    .dtFooterBrand {
        grid-column: 1 / -1;
        text-align: left;
    }

    /* Logo + app store aynı satır */
    .dtFooterBrandTop {
        display: flex;
        align-items: center;
        gap: 12px;
        flex-wrap: nowrap;
        margin-bottom: 18px;
    }

    .dtFooterLogo {
        width: 135px;
        max-width: 38%;
        margin: 0;
        flex-shrink: 0;
    }

    .dtStoreBtns {
        display: flex;
        align-items: center;
        gap: 6px;
        margin: 0;
        flex: 1;
        min-width: 0;
    }

        .dtStoreBtns a {
            display: block;
            flex: 1;
            min-width: 0;
        }

        .dtStoreBtns img {
            height: auto;
            width: 100%;
            max-width: 92px;
            display: block;
        }

    /* Adres / telefon / mail */
    .dtContactBox {
        display: flex;
        flex-direction: column;
        gap: 12px;
        margin-top: 0;
    }

    .dtContactItem {
        display: flex;
        align-items: flex-start;
        gap: 11px;
        font-size: 13px;
        line-height: 1.5;
        color: var(--mor);
    }

        .dtContactItem i {
            color: var(--mor);
            font-size: 16px;
            margin-top: 3px;
            min-width: 18px;
            text-align: center;
        }

        .dtContactItem a {
            color: var(--mor);
            word-break: break-word;
        }

    /* Link kolonları ikili */
    .dtFooterCol {
        text-align: left;
        min-width: 0;
    }

        .dtFooterCol h4 {
            font-size: 15px;
            margin: 0 0 10px;
            font-weight: 800;
            color: var(--mor);
        }

        .dtFooterCol a {
            font-size: 12.5px;
            line-height: 1.35;
            margin-bottom: 8px;
            
            word-break: normal;
        }

    .dtFooterLine {
        background: rgba(76, 25, 130, .18);
        margin: 24px 0 16px;
    }

    .dtFooterCenter {
        font-size: 12px;
        text-align: center;
    }

    .dtLegalText {
        font-size: 10.5px;
        line-height: 1.6;
        padding: 0 4px;
        text-align: center;
    }

    .dtCompanyInfo {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 8px 10px;
        font-size: 10.5px;
        text-align: center;
        color: rgba(76, 25, 130, .85);
    }

        .dtCompanyInfo span {
            white-space: normal;
        }

    .dtFooterBottom {
        flex-direction: column;
        gap: 4px;
        text-align: center;
        font-size: 12px;
    }

        .dtFooterBottom span {
            display: none;
        }

    .dtCopy {
        font-size: 11px;
        text-align: center;
    }
}
