/* Vars */
:root {
    --fp-primary: #4d4d4f;
    --fp-secondary: #feba29;
    --fp-ink: #0f172a;
    --fp-muted: #475569;
    --fp-line: #ddd;
    --fp-panel: #f9f9f9;
    --fp-spec: #767a84;
    --fp-card-shadow: 0 16px 40px rgba(2, 6, 23, .08);
    --kc-primary: #1a2658;
    /* başlık */
    --kc-secondary: #e31c25;
    /* çizgi */
    --kc-ink: #0f172a;
    /* gövde */
    --kc-panel: #F5F5F5;
    --kc-btn: #767a84;
    --kc-radius: 24px;
    --kc-shadow: 0 18px 50px rgba(2, 6, 23, .12);
    --wk-primary: #4d4d4f;
    --wk-secondary: #feba29;
    --wk-ink: #0f172a;
    --wk-panel: #F5F5F5;
    --wk-card: #ffffff;
    --wk-muted: rgba(26, 38, 88, .85);
    --wk-r: 24px;
    --df-bg: #6c6c6c;
    /* görseldeki gri panel */
    --df-bg-deep: #5f5f5f;
    --df-text: #EAEAEA;
    --df-muted: #cfcfcf;
    --df-accent: #C2261E;
    /* kırmızı buton */
    --df-white: #fff;
    --df-radius: 28px;
    --df-gap: 36px;
    --m-primary: #515f67;
    --m-text-on-primary: #fff;
    --m-border: rgba(0, 0, 0, .10);
    --m-border-on-primary: rgba(255, 255, 255, .20);
    --m-surface: #fff;
    --m-text: #111;
    --m-text-dim: rgba(0, 0, 0, .65);
    --m-radius: 12px;
    --m-shadow: 0 20px 60px rgba(0, 0, 0, .18);
    --m-pad-x: 20px;
    --m-bar-h: 75px;
    --m-drawer-w: min(88vw, 380px);
    --m-acc-speed: 300ms;
}

.fp {
    max-width: 1920px;
    margin: 0 auto;
    padding: 120px 140px 0;
    color: var(--fp-ink)
}

@media (max-width: 1600px) {
    .fp {
        padding: 120px 100px 0
    }
}

@media (max-width: 1440px) {
    .fp {
        padding: 120px 40px 0
    }
}

@media (max-width: 1024px) {
    .fp {
        padding: 50px 15px 0
    }
}

/* Head */
.fp-head {
    display: flex;
    align-items: flex-end;
    gap: 60px;
    flex-wrap: wrap
}

.fp-left {
    display: flex;
    flex-direction: column;
    gap: 20px;
    white-space: nowrap
}

.fp-eyebrow {
    font-size: 20px;
    color: var(--fp-secondary);
    font-weight: 800
}

.fp-title {
    font-size: 48px;
    color: var(--fp-primary);
    font-weight: 800
}

@media (max-width: 1024px) {
    .fp-title {
        font-size: 32px
    }
}

.fp-divider {
    flex: 1;
    height: 2px;
    background: var(--fp-line);
    margin-bottom: 30px
}

@media (max-width: 640px) {
    .fp-divider {
        display: none
    }
}

.fp-right {
    display: flex;
    align-items: center;
    gap: 60px;
    margin-left: auto
}

@media (max-width: 768px) {
    .fp-right {
        gap: 20px;
        margin-left: 0
    }

    .bodyscroll {
        background-color: white;
    }

    .d-header {
        display: none;
    }
}

.fp-link-text {
    font-size: 20px;
    color: color-mix(in srgb, var(--fp-primary) 85%, transparent);
    font-weight: 600;
    white-space: nowrap
}

/* Nav buttons */
.fp-nav {
    display: flex;
    gap: 20px
}

.fp-btn {
    position: relative;
    display: grid;
    place-items: center;
    width: 62px;
    height: 62px;
    border-radius: 999px;
    border: 1px solid rgba(0, 0, 0, .15);
    background: #fff;
    cursor: pointer;
    transition: border-color .25s ease, transform .15s ease
}

.fp-btn:hover {
    border-color: transparent;
    transform: translateY(-1px)
}

@media (max-width: 768px) {
    .fp-btn {
        width: 50px;
        height: 50px
    }
}

.fp-arrow {
    width: 20px;
    height: 20px;
    stroke: var(--fp-primary);
    fill: none;
    stroke-width: 2;
    pointer-events: none
}

.fp-btn-ring {
    position: absolute;
    inset: 0;
    transform: rotate(90deg)
}

.fp-btn-ring circle {
    fill: none;
    stroke-width: 1;
    stroke-dasharray: 0 150;
    stroke-dashoffset: 0;
    transition: stroke-dasharray 1s ease
}

.fp-btn-ring--top circle {
    stroke: var(--fp-secondary)
}

.fp-btn-ring--bg circle {
    stroke: transparent;
    transition-duration: .9s
}

.fp-btn:hover .fp-btn-ring--top circle {
    stroke-dasharray: 120 150;
    transition-duration: 1.5s
}

.fp-btn:hover .fp-btn-ring--bg circle {
    stroke: color-mix(in srgb, var(--fp-primary) 50%, transparent)
}

/* Rail */
.fp-rail {
    position: relative;
    padding-top: 80px
}

@media (max-width: 1024px) {
    .fp-rail {
        padding-top: 30px
    }
}

/* Slider */
.fp-slider {
    position: relative;
    overflow: hidden
}

.fp-track {
    display: flex;
    will-change: transform;
    transition: transform .35s cubic-bezier(.22, .61, .36, 1);
    touch-action: pan-y;
    /* user-select: none; <- KALDIRILDI */
}

.fp-slide {
    flex: 0 0 auto;
    user-select: auto;
    pointer-events: auto;
}

/* Card */
.fp-card {
    display: flex;
    flex-direction: column;
    gap: 35px;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    height: 100%;
    min-height: 450px;
    border-radius: 18px;
    background: var(--fp-panel);
    padding-top: 4px;
    padding-bottom: 15px;
    box-shadow: var(--fp-card-shadow);
    text-decoration: none;
    cursor: pointer;
    transition: transform 0.3s ease;
    -webkit-tap-highlight-color: transparent;
}

.fp-card:hover {
    transform: translateY(-4px);
}

@media (max-width: 1024px) {
    .fp-card {
        height: 450px;
        padding-top: 30px
    }
}

@media (max-width: 640px) {
    .fp-card {
        gap: 15px;
        height: 450px;
        padding-top: 0
    }

}

.fp-media {
    position: relative;
    z-index: 1;
    width: 100%;
    height: --webkit-fill-available;
    display: grid;

    margin-bottom: 15px;
    place-items: center;
}

.fp-media img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform .45s ease
}

.fp-card:hover .fp-media img {
    transform: scale(1.05)
}

@media (max-width: 1280px) {
    .fp-media {
        height: 150px
    }
}

@media (max-width: 640px) {
    .fp-media {
        height: 100px
    }
}

.fp-card-title {
    font-size: 24px;
    line-height: 30px;
    color: var(--fp-primary);
    font-weight: 800;
    text-transform: uppercase;
    text-align: center;
    /* max-width: 235px; */
    padding-bottom: 10px;
    margin: 0
}

@media (max-width: 1024px) {
    .fp-card-title {
        font-size: 20px
    }
}

@media (max-width: 640px) {
    .fp-card-title {
        font-size: 15px;
        line-height: 1.2
    }
}

.fp-sub {
    font-size: 20px;
    line-height: 24px;
    color: color-mix(in srgb, var(--fp-primary) 85%, transparent);
    font-weight: 600;
    text-align: center;
    max-width: 300px;
    margin: 0
}

@media (max-width: 640px) {
    .fp-sub {
        font-size: 16px;
        line-height: 1
    }
}

.fp-spec {
    width: 100%;
    background: var(--fp-spec);
    border-radius: 8px;
    padding: 25px 20px 25px 35px;
    display: grid;
    place-items: center;
    list-style: disc;
    color: #fff;
    margin: 0
}

.fp-spec li {
    font-size: 17px;
    font-weight: 500;
    margin: 10px 0
}

.fp-spec li span {
    font-weight: 700
}

@media (max-width: 640px) {
    .fp-spec {
        padding: 10px;
        display: none
    }
}

/* Disabled arrows */
.fp-btn[disabled] {
    opacity: .5;
    cursor: not-allowed;
    transform: none;
    border-color: rgba(0, 0, 0, .15)
}

.scrolled {
    background: #4d4d4f;
    /* height: 110px; */
}


/* dış grid */
.wk-duo {
    max-width: 1920px;
    margin: 0 auto;
    padding: 120px 140px 0;
}

.wk-duo__grid {
    display: grid;
    grid-template-columns: 1.15fr 1fr;
    gap: 40px;
    align-items: stretch
}

@media (max-width: 1200px) {
    .wk-duo__grid {
        grid-template-columns: 1fr
    }
}

/* --- Katalog (soldaki) - önce verdiğimle aynı --- */
.kc-catalog {
    height: 100%
}

.kc-card {
    position: relative;
    height: 100%;
    min-height: 360px;
    background: var(--wk-panel);
    border-radius: var(--wk-r);
    overflow: hidden
}

.kc-content {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    flex-direction: column;
    gap: 28px;
    align-items: flex-end;
    padding: 50px 60px 30px 30px
}

@media (max-width: 1024px) {
    .kc-content {
        align-items: center;
        text-align: center;
        padding: 24px
    }
}

.kc-title {
    position: relative;
    margin: 0;
    color: var(--wk-primary);
    font: 700 32px/1.15 "League Spartan", sans-serif
}

.kc-title::before {
    content: "";
    position: absolute;
    right: calc(100% + 30px);
    top: 50%;
    width: 70px;
    height: 2px;
    background: var(--wk-secondary);
    transform: translateY(-50%)
}

@media (max-width: 1024px) {
    .kc-title::before {
        right: calc(100% + 12px)
    }

    .kc-title::after {
        content: "";
        position: absolute;
        left: calc(100% + 12px);
        top: 50%;
        width: 70px;
        height: 2px;
        background: var(--wk-secondary);
        transform: translateY(-50%)
    }
}

.kc-lead {
    max-width: 260px;
    color: var(--wk-muted);
    font: 600 16px/1.4 "League Spartan", sans-serif;
    margin: 0
}

.kc-lead--mob {
    display: none
}

@media (max-width: 640px) {
    .kc-lead--desk {
        display: none
    }

    .kc-lead--mob {
        display: block
    }
}

.kc-btn {
    display: inline-flex;
    align-items: center;
    gap: 18px;
    padding: 10px 14px 10px 22px;
    background: #767a84;
    color: #fff;
    border-radius: 999px;
    text-decoration: none;
    font: 600 16px/1 Manrope, sans-serif;
    transition: .25s
}

.kc-btn-ico {
    display: grid;
    place-items: center;
    width: 36px;
    height: 36px;
    border-radius: 999px;
    position: relative;
    color: #fff
}

.kc-btn-ico::before {
    content: "";
    position: absolute;
    width: min-content;
    inset: 0;
    border-radius: 999px;
    background: rgba(255, 255, 255, .15);
    transition: .45s
}

.kc-card:hover .kc-btn-ico::before {
    transform: scale(10);
    background: #fff
}

.kc-card:hover .kc-btn,
.kc-card:hover .kc-btn-ico {
    color: var(--wk-primary)
}

.kc-book {
    position: absolute;
    left: -225px;
    bottom: -26px;
    height: 420px;
    margin: 0;
    z-index: 1;
    transform-origin: 65% 0%;
    transition: .45s;
}

.kc-book img {
    margin: 50px;
    height: 88%;
    display: block;
    object-fit: contain;
}

.kc-card:hover .kc-book {
    transform: rotate(12deg)
}

@media (max-width: 1024px) {
    .kc-book {
        display: none
    }
}

.kc-decor {
    position: absolute;
    left: 0;
    bottom: 0;
    height: 90%;
    pointer-events: none;
    z-index: 0
}

.kc-decor img {
    height: 100%;
    display: block;
    opacity: .9
}

/* --- Markalar grid (sağdaki) --- */
.wk-brandsGrid {
    background: #F9F9F9;
    border-radius: 14px;
    padding: 30px 40px;
    display: flex;
    flex-direction: column
}

@media (max-width: 1024px) {
    .wk-brandsGrid {
        padding: 20px 15px
    }
}

.wk-brandsGrid__head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 18px
}

.wk-brandsGrid__title {
    margin: 0;
    font: 700 24px/1.2 "League Spartan", sans-serif;
    color: var(--wk-primary);
    position: relative;
}

.wk-brandsGrid__title::after {
    content: "";
    display: inline-block;
    vertical-align: middle;
    margin-left: 12px;
    width: 48px;
    height: 3px;
    background: var(--wk-secondary);
    border-radius: 3px;
}

/* responsive grid */
.wk-brandsGrid__grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 30px;
}

@media (min-width: 1024px) {
    .wk-brandsGrid__grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (min-width: 1280px) {
    .wk-brandsGrid__grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* logo kutusu */
.wk-logoBox {
    background: #fff;
    border-radius: 14px;
    box-shadow: 0 8px 24px rgba(2, 6, 23, .06);
    padding: 32px 14px;
    height: 96px;
    display: grid;
    place-items: center;
    transition: transform .2s ease, box-shadow .2s ease;
}

.wk-logoBox:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 36px rgba(2, 6, 23, .12);
}

.wk-logoBox img {
    width: 100%;
    height: 40px;
    object-fit: contain;
}

@media (max-width: 1280px) {
    .wk-logoBox {
        padding: 24px;
        height: 80px
    }

    .wk-logoBox img {
        height: 30px
    }
}

@media (max-width: 640px) {
    .wk-logoBox {
        padding: 18px;
        height: 64px
    }

    .wk-logoBox img {
        height: 22px
    }
}

/* ===== namespace: .blognews-* ===== */
.blognews-section {
    position: relative;
    padding-top: 100px;
    margin: 110px;
    overflow: hidden;

}

.blognews-bg {
    position: absolute;
    inset: 0 0 50% 0;
    pointer-events: none;
    display: flex;
    align-items: flex-end;
    justify-content: flex-end;
}

.blognews-bg::before {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: calc(100% - 50px);
    height: 100%;
    background: #020c230d;
    border-radius: 20px;
}

.blognews-bg-logo {
    max-width: 755px;
    width: 100%;
    opacity: 0.5;
    translate: 0 20px;
}

.blognews-container {
    max-width: 1470px;
    margin: 0 auto;
    padding: 0 20px;
}

.blognews-stack {
    display: flex;
    flex-direction: column;
    gap: 100px;
}

@media (max-width: 1536px) {
    .blognews-stack {
        gap: 80px;
    }
}

@media (max-width: 1280px) {
    .blognews-stack {
        gap: 60px;
    }
}

@media (max-width: 1024px) {
    .blognews-stack {
        gap: 35px;
    }
}

@media (max-width: 768px) {
    .blognews-stack {
        gap: 24px;
    }
}

/* head */
.blognews-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding-left: 30px;
}

.blognews-eyebrow {
    font-size: 14px;
    color: #afafaf;
    letter-spacing: 5px;
    text-transform: uppercase;
    padding-bottom: 30px;
}

.blognews-title {
    font-weight: 300;
    color: #feba29;
    text-transform: uppercase;
    letter-spacing: -1.5px;
    font-size: clamp(24px, 4vw, 52px);
}

.blognews-title strong {
    font-weight: 800;
}

.blognews-actions {
    display: flex;
    align-items: center;
    gap: 10px;
}

.blognews-navbtn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: 1.5px solid rgba(0, 0, 0, 0.15);
    background: rgba(0, 0, 0, 0.03);
    display: grid;
    place-items: center;
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s;
}

.blognews-navbtn:hover {
    transform: translateY(-1px);
    box-shadow: 0 8px 22px rgba(0, 0, 0, 0.12);
}

.blognews-navbtn svg {
    width: 22px;
    height: 22px;
    color: #000;
}

.blognews-more {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    border-radius: 999px;
    background: #feba29;
    color: #fff;
    text-decoration: none;
    font-weight: 600;
}

.blognews-more i {
    display: inline-grid;
    place-items: center;
    width: 26px;
    height: 26px;
    border-radius: 999px;
    background: #fff;
    color: #feba29;
    font-style: normal;
    font-weight: 800;
}

/* grid */
.blognews-grid {
    display: grid;
    grid-template-columns: 1.35fr 0.9fr;
    gap: 100px;
    align-items: stretch;
}

@media (max-width: 1536px) {
    .blognews-grid {
        gap: 80px;
    }
}

@media (max-width: 1280px) {
    .blognews-grid {
        gap: 60px;
    }
}

@media (max-width: 1024px) {
    .blognews-grid {
        gap: 30px;
    }
}

@media (max-width: 640px) {
    .blognews-head {
        flex-direction: column;
        align-items: flex-start;
    }

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

/* image slider */
.blognews-imgwrap {
    position: relative;
    border-radius: 26px;
    overflow: hidden;
    border: 1px solid #e8edf3;
    background: #fff;
    height: 430px;
}

@media (max-width: 640px) {
    .blognews-imgwrap {
        height: 280px;
    }
}

@media (min-width: 640px) and (max-width: 768px) {
    .blognews-imgwrap {
        height: 340px;
    }
}

.blognews-imgtrack {
    position: absolute;
    inset: 0;
    display: flex;
    height: 100%;
    transition: transform 600ms ease;
}

.blognews-imgslide {
    min-width: 100%;
    position: relative;
}

.blognews-imgslide img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* text slider */
.blognews-textwrap {
    display: block;
}

.blognews-txttrack {
    display: flex;
    transition: transform 600ms ease;
}

.blognews-txtslide {
    min-width: 100%;
    padding-bottom: 30px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    gap: 18px;
}

.blognews-date {
    color: #020c23a6;
    font-weight: 600;
    font-size: clamp(16px, 2.2vw, 20px);
}

.blognews-heading {
    font-size: clamp(20px, 2.1vw, 28px);
    color: #020c23;
    font-weight: 700;
    text-decoration: none;
}

.blognews-heading:hover {
    color: #020c23;
}

.blognews-excerpt {
    color: rgba(2, 12, 35, 0.65);
    font-size: clamp(16px, 2vw, 20px);
    line-height: 1.55;
    max-width: 560px;
}

.blognews-clip4 {
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* dots */
.blognews-dots {
    display: flex;
    gap: 8px;
    margin-top: 8px;
}

.blognews-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #cbd5e1;
    opacity: 0.7;
    border: 0;
    padding: 0;
    cursor: pointer;
}

.blognews-dot.is-active {
    background: #5cbe1d;
    opacity: 1;
}

.blognews-imgwrap,
.blognews-textwrap {
    overflow: hidden;
}

.blognews-imgtrack,
.blognews-txttrack {
    will-change: transform;
}

.footer-ust {
    /* background-color: #000 !important; */
    font-size: 15px;
    position: relative;
    height: 48vh;
    margin: 0 40px;
    padding-top: 100px;
    border-radius: 30px;
    background-image: url(https://deksan.gramax.com.tr/site/assets/img/service-video-poster.jpg);
    background-repeat: no-repeat;
    background-position: left top;
    background-size: cover;
    background-attachment: scroll;
    color: rgba(var(--pbmit-white-color-rgb), 1);
    overflow: hidden;
    top: 55px;
}

.footer-ust h4 {
    -webkit-box-sizing: content-box;
    -moz-box-sizing: content-box;
    box-sizing: content-box;
    padding: 0 125px;
    font-size: 3.5rem;
    text-align: left;
    font-family: "League Spartan", sans-serif;
    font-weight: 400;
    letter-spacing: 0px;
    line-height: 1.3;
    color: white;
}


.wks-footer {
    background: transparent;
}

.wks-footer__container {
    margin: 0 40px;
    padding: 56px 115px 30px;
    background: linear-gradient(180deg, var(--df-bg), var(--df-bg-deep));
    color: var(--df-text);
    border-radius: 36px;
    position: relative;
}

/* üst bölüm */
.wks-footer__top {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 60px;
    align-items: start;
}

.wks-footer__brand {
}

.wks-footer__logo {
    width: 220px;
    height: auto;
    display: block;
    margin-bottom: 16px;
}

.wks-footer__about {
    max-width: 560px;
    line-height: 1.7;
    color: #f0f0f0;
    margin: 0 0 22px;
}

.wks-footer__social {
    display: flex;
    gap: 20px;
    list-style: none;
    padding: 0;
    margin: 4px 0 0;
}

.wks-footer__social a {
    width: 22px;
    height: 22px;
    color: #ececec;
    display: grid;
    place-items: center;
    opacity: .9
}

.wks-footer__social svg {
    width: 22px;
    height: 22px;
    fill: currentColor
}

.wks-footer__heading {
    font-size: 40px;
    margin: 0 0 18px;
    color: var(--df-white);
}

.wks-footer__form {
    display: flex;
    gap: 16px;
    align-items: center;
}

.wks-footer__input {
    flex: 1;
    height: 64px;
    border-radius: 38px;
    border: none;
    outline: none;
    padding: 0 22px;
    font-size: 16px;
    color: #0f172a;
    background: #ecf3ff;
    /* görselde açık mavi/grimsi */
}

.wks-footer__btn {
    height: 64px;
    padding: 0 28px;
    border: none;
    border-radius: 38px;
    cursor: pointer;
    background: var(--df-accent);
    color: #fff;
    font-weight: 700;
    letter-spacing: .3px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.wks-footer__btnIcon {
    width: 18px;
    height: 18px;
}

.wks-footer__divider {
    margin-top: 26px;
    height: 1px;
    border: 0;
    background: rgba(255, 255, 255, .28);
}

/* alt sütunlar */
.wks-footer__cols {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 60px;
    margin-top: 60px;
}

.wks-footer__col h4 {
    margin: 0 0 16px;
    font-size: 22px;
    color: #fff;
}

.wks-footer__col ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 12px;
}

.wks-footer__col a {
    color: var(--df-muted);
    text-decoration: none;
    font-size: 16px;
}

.wks-footer__col a:hover {
    color: #fff;
}

.wks-footer__hours li {
    color: var(--df-muted);
}

.wks-footer__hours b {
    color: #fff;
    font-weight: 700;
}

.wks-footer__address {
    font-style: normal;
}

.wks-footer__link {
    text-decoration: underline;
    text-underline-offset: 4px;
}

.wks-footer__phone a {
    color: #fff;
    font-weight: 700;
    text-decoration: none;
}

/* telif */
.wks-footer__copy {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-top: 38px;
    color: #eaeaea;
    font-size: 15px;
    position: relative;
}

.wks-footer__brandLink {
    color: #ffddd9;
    font-weight: 700;
    text-decoration: none;
}

.wks-footer__toTop {
    position: absolute;
    right: 22px;
    bottom: -6px;
    width: 46px;
    height: 46px;
    border-radius: 50%;
    border: 2px solid rgba(194, 38, 30, .6);
    background: transparent;
    color: #c2261e;
    display: grid;
    place-items: center;
    cursor: pointer;
}

.wks-footer__toTop svg {
    width: 22px;
    height: 22px;
}

/* alt “pill” köşe dekorları */
.wks-footer__bottomPills {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 70px;
    pointer-events: none;
}

.wks-footer__bottomPills span {
    position: absolute;
    bottom: 0;
    width: 420px;
    height: 70px;
    background: #fff;
    border-radius: 26px 26px 0 0;
    filter: drop-shadow(0 -18px 32px rgba(0, 0, 0, .25));
}

.wks-footer__bottomPills span:first-child {
    left: 28px;
}

.wks-footer__bottomPills span:last-child {
    right: 28px;
}

/* responsive */
@media (max-width: 1100px) {
    .wks-footer__top {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .wks-footer__heading {
        font-size: 32px;
    }
}

@media (max-width: 900px) {
    .wks-footer__cols {
        grid-template-columns: 1fr 1fr;
        gap: 26px;
    }

    .wks-footer__container {
        padding: 42px 24px 26px;
    }
}

@media (max-width: 560px) {
    .wks-footer__form {
        flex-direction: column;
        align-items: stretch;
    }

    .wks-footer__input,
    .wks-footer__btn {
        height: 56px;
    }

    .wks-footer__cols {
        grid-template-columns: 1fr;
    }

    .wks-footer__bottomPills span {
        width: 62%;
    }
}

.pbmit-footer-text-area > .container {
    position: relative;
}

.pbmit-footer-text-inner {
    text-align: center;
    font-size: 14px;
    padding: 20px 35px;
    border-radius: 30px 30px 0 0;
    background-color: white;
}

.pbmit-footer-text-inner::before {
    left: -8px;
    border-bottom-right-radius: 20px;
}

.pbmit-footer-text-inner:before, .pbmit-footer-text-inner:after {
    content: "";
    position: absolute;
    background-color: transparent;
    bottom: 0;
    height: 40px;
    width: 20px;
    box-shadow: 0 20px 0 0 white;
}

.pbmit-footer-text-inner:after {
    right: -8px;
    border-bottom-left-radius: 20px;
}

.pbmit-footer-text-inner:before, .pbmit-footer-text-inner:after {
    content: "";
    position: absolute;
    background-color: transparent;
    bottom: 0;
    height: 40px;
    width: 20px;
    box-shadow: 0 20px 0 0 white;
}

.pbmit-footer-copyright-text-area {
    color: #565656;
}

.pbmit-footer-copyright-text-area a {
    text-decoration: underline !important;
}

.pbmit-footer-text-area {
    position: relative;
    top: 35px;
    margin: 2px 20vw;
}

/* Quento Machine Framework Classes */
.qm-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 60px 40px 30px;
    display: flex;
    gap: 100px;
}

.qm-flex {
    display: flex;
}

.qm-flex-col {
    flex-direction: column;
}

.qm-justify-between {
    justify-content: space-between;
}

.qm-items-center {
    align-items: center;
}

.qm-gap-0 {
    gap: 0;
}

.qm-gap-8 {
    gap: 8px;
}

.qm-gap-16 {
    gap: 16px;
}

.qm-gap-24 {
    gap: 24px;
}

.qm-text-sm {
    font-size: 13px;
}

.qm-text-base {
    font-size: 16px;
}

.qm-text-lg {
    font-size: 18px;
}

.qm-text-xl {
    font-size: 24px;
}

.qm-text-2xl {
    font-size: 32px;
}

.qm-font-normal {
    font-weight: 400;
}

.qm-font-medium {
    font-weight: 500;
}

.qm-text-white {
    color: #ffffff;
}

.qm-text-gray {
    color: #8b9aab;
}

.qm-cursor-pointer {
    cursor: pointer;
}

.qm-transition {
    transition: all 0.2s ease;
}

.qm-hover-white:hover {
    color: #ffffff;
}

.qm-border-b {
    border-bottom: 1px solid #2a3441;
}

.qm-py-12 {
    padding-top: 12px;
    padding-bottom: 12px;
}

.qm-py-8 {
    padding-top: 8px;
    padding-bottom: 8px;
}

.qm-mb-8 {
    margin-bottom: 8px;
}

.qm-mb-16 {
    margin-bottom: 16px;
}

.qm-mb-24 {
    margin-bottom: 24px;
}

.qm-mb-32 {
    margin-bottom: 32px;
}

.qm-mb-40 {
    margin-bottom: 40px;
}

.qm-mt-60 {
    margin-top: 60px;
}

.qm-w-full {
    width: 100%;
}

/* Quento Machine Components */
.qm-logo {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 50px;
}

.qm-logo-icon {
    width: 24px;
    height: 24px;
    background: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: bold;
    color: #0a1420;
}

.qm-logo-text {
    font-size: 24px;
    font-weight: 500;
    letter-spacing: 1px;
}

.qm-tagline {
    font-size: 11px;
    color: #8b9aab;
    margin-bottom: 60px;
}

.qm-nav-item {
    padding: 12px 0;
    border-bottom: 1px solid #ffffff5e;
    font-size: 18px;
    color: #ffffff;
    cursor: pointer;
    transition: all 0.2s ease;
}

.qm-nav-item:hover {
    color: #feba29;
}

.qm-nav-item:last-child {
    border-bottom: none;
}

.qm-info-section {
    margin-bottom: 40px;
}

.qm-info-title {
    font-size: 18px;
    color: #feba29;
    margin-bottom: 24px;
}

.qm-info-item {
    font-size: 14px;
    color: #ffffff;
    margin-bottom: 11px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.qm-info-item:hover {
    color: #ffffff;
}

.qm-contact-phone {
    font-size: 24px;
    font-weight: 500;
    color: #ffffff;
    margin-bottom: 32px;
}

.qm-contact-section {
    margin-bottom: 40px;
}

.qm-contact-label {
    font-size: 18px;
    color: #feba29;
    margin-bottom: 8px;
}

.qm-contact-value {
    font-size: 16px;
    color: #ffffff;
}

.qm-address {
    font-size: 14px;
    color: #ffffff;
    line-height: 1.6;
}

.qm-social-icons {
    display: flex;
    gap: 17px;
    margin-bottom: 40px;
}

.qm-social-icon {
    width: 40px;
    height: 40px;
    background: #2a3441;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    color: #8b9aab;
    cursor: pointer;
    transition: all 0.2s ease;
}

.qm-social-icon:hover {
    background: #3a4651;
    color: #ffffff;
}

.qm-footer {
    border-top: 1px solid #ffffff;
    padding: 26px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 13px;
    color: #ffffff;
}

.qm-footer-links {
    display: flex;
    gap: 32px;
}

.qm-footer-link {
    color: #8b9aab;
    cursor: pointer;
    transition: all 0.2s ease;
}

.qm-footer-link:hover {
    color: #ffffff;
}

.qm-web-design {
    display: flex;
    align-items: center;
    gap: 8px;
}

.qm-web-design-badge {
    border: 1px solid #8b9aab;
    padding: 2px 6px;
    font-size: 10px;
    border-radius: 2px;
}

/* Layout Classes */
.qm-left-column {
    width: 300px;
    flex-shrink: 0;
}

.qm-middle-column {
    width: 300px;
    flex-shrink: 0;
}

.qm-right-column {
    width: 350px;
    flex-shrink: 0;
}

/* Responsive */
@media (max-width: 1200px) {
    .qm-container {
        flex-direction: column;
        gap: 60px;
        padding: 40px 20px;
    }

    .qm-left-column,
    .qm-middle-column,
    .qm-right-column {
        width: 100%;
    }
}


/* Quento Machine Framework Classes */
.qm-sidebar-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    padding: 40px 30px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    position: sticky;
    top: 20px;
}

.qm-sidebar-title {
    font-size: 28px;
    font-weight: 700;
    color: #2c3e50;
    line-height: 1.2;
    letter-spacing: -0.5px;
    margin-bottom: 40px;
    /* text-align: center; */
}

.qm-nav-list {
    list-style: none;
    padding: 0;
}

.qm-nav-item {
    margin-bottom: 2px;
}

.qm-nav-link {
    display: flex;
    align-items: center;
    padding: 18px 20px;
    text-decoration: none;
    color: #5a6c7d;
    font-size: 16px;
    font-weight: 500;
    border-radius: 12px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.qm-nav-link:hover {
    background: rgba(52, 152, 219, 0.08);
    color: #383e42;
    transform: translateX(8px);
    border-bottom-color: transparent;
    text-decoration: none;
}

.qm-nav-link.active {
    background: #feba29;
    color: #ffffff;
    box-shadow: 0 8px 25px rgb(79 79 79 / 17%);
    transform: translateX(0);
}

.qm-nav-link.active:hover {
    background: #c0392b;
    transform: translateX(4px);
    color: #ffffff;
}

.qm-nav-icon {
    margin-right: 15px;
    font-size: 18px;
    transition: transform 0.3s ease;
}

.qm-nav-link:hover .qm-nav-icon {
    transform: rotate(90deg);
}

.qm-nav-link.active .qm-nav-icon {
    transform: rotate(90deg);
}

.qm-content-header {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    margin-bottom: 30px;
}

.qm-content-title {
    font-size: 36px;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 20px;
}

.qm-content-subtitle {
    font-size: 16px;
    color: #5a6c7d;
    line-height: 1.6;
}

.qm-card {
    background: #ffffff;
    border-radius: 24px;
    padding: 40px 30px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    height: 100%;
    /* GPU Acceleration */
    will-change: transform;
    transform: translateZ(0);
    backface-visibility: hidden;
}

.qm-card:hover {
    transform: translateY(-12px) translateZ(0);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

.qm-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(76, 175, 80, 0.03) 0%, rgba(46, 125, 50, 0.03) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
    border-radius: 24px;
    will-change: opacity;
}

.qm-card:hover::after {
    opacity: 1;
}

.qm-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(76, 175, 80, 0.05) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
    will-change: opacity;
}

.qm-card:hover::before {
    opacity: 1;
}

.qm-card-image {
    width: 100%;
    height: 280px;
    border-radius: 16px;
    margin-bottom: 32px;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
    will-change: transform;
}

.qm-card-image img {
    object-fit: cover;
    width: -webkit-fill-available;
    height: min-content;
}

.qm-card:hover .qm-card-image {
    transform: scale(1.02) translateZ(0);
}

.qm-grass-texture {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: repeating-linear-gradient(
            90deg,
            #4CAF50 0px,
            #4CAF50 2px,
            #388E3C 2px,
            #388E3C 4px
    ),
    repeating-linear-gradient(
            0deg,
            #2E7D32 0px,
            #2E7D32 1px,
            #1B5E20 1px,
            #1B5E20 3px
    );
    opacity: 0.6;
    transition: opacity 0.3s ease;
    will-change: opacity;
}

.qm-card:hover .qm-grass-texture {
    opacity: 0.8;
}

.qm-grass-blades {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 60%;
    background: radial-gradient(ellipse at 20% 100%, #66BB6A 0%, transparent 50%),
    radial-gradient(ellipse at 40% 100%, #4CAF50 0%, transparent 50%),
    radial-gradient(ellipse at 60% 100%, #66BB6A 0%, transparent 50%),
    radial-gradient(ellipse at 80% 100%, #4CAF50 0%, transparent 50%);
    transition: transform 0.3s ease;
    will-change: transform;
}

.qm-card:hover .qm-grass-blades {
    transform: scaleY(1.05) translateZ(0);
}

.qm-backing-texture {
    position: absolute;
    bottom: 0;
    right: 20px;
    width: 120px;
    height: 40px;
    background: repeating-linear-gradient(
            45deg,
            #424242 0px,
            #424242 3px,
            #212121 3px,
            #212121 6px
    );
    border-radius: 8px 8px 0 0;
    opacity: 0.8;
}

.qm-watermark {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 36px;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.1);
    letter-spacing: 4px;
    pointer-events: none;
    transition: opacity 0.3s ease;
    will-change: opacity;
}

.qm-card:hover .qm-watermark {
    opacity: 0.8;
}

.qm-category {
    font-size: 14px;
    color: #9E9E9E;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 12px;
    font-weight: 500;
}

.qm-title {
    font-size: 24px;
    font-weight: 600;
    color: #212121;
    margin-bottom: 32px;
    line-height: 1.3;
    transition: transform 0.3s ease;
    will-change: transform;
}

.qm-title.green {
    color: #383e42;
}

.qm-card:hover .qm-title {
    transform: translateY(-2px) translateZ(0);
}

.qm-button {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 32px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 500;
    text-decoration: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease;
    cursor: pointer;
    border: none;
    position: relative;
    overflow: hidden;
    will-change: transform;
}

.qm-button-primary {
    background: #feba29;
    color: #ffffff;
    box-shadow: 0 4px 16px rgb(0 0 0 / 30%);
}

.qm-button-primary:hover {
    background: #383e42;
    transform: translateY(-2px) translateZ(0);
    box-shadow: 0 6px 20px rgb(0 0 0 / 40%);
    color: #ffffff;
    text-decoration: none;
}

.qm-button-secondary {
    background: transparent;
    color: #424242;
    border: 2px solid #E0E0E0;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.05);
}

.qm-button-secondary:hover {
    background: #f5f5f5;
    border-color: #4CAF50;
    color: #2E7D32;
    transform: translateY(-2px) translateZ(0);
    box-shadow: 0 6px 20px rgba(76, 175, 80, 0.2);
    text-decoration: none;
}

.qm-button-arrow {
    transition: transform 0.3s ease;
    display: inline-block;
    will-change: transform;
}

.qm-button:hover .qm-button-arrow {
    transform: translateX(4px) translateZ(0);
}

.qm-button::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.3s ease, height 0.3s ease;
    will-change: width, height;
}

.qm-button:hover::before {
    width: 200px;
    height: 200px;
}

/* Simplified Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.qm-fade-in {
    animation: fadeIn 0.6s ease-out;
}

/* Active state animation */
.qm-nav-link.active::after {
    content: '';
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    width: 6px;
    height: 6px;
    background: #ffffff;
    border-radius: 50%;
    animation: pulse-dot 2s infinite;
}

@keyframes pulse-dot {
    0%, 100% {
        opacity: 1;
        transform: translateY(-50%) scale(1);
    }
    50% {
        opacity: 0.7;
        transform: translateY(-50%) scale(1.2);
    }
}

.round-container {
    max-width: 1620px;
    margin-left: auto;
    margin-right: auto;
    border-radius: 20px;
    position: relative;
    z-index: 2;
    overflow: hidden
}

@media (max-width: 1199px) {
    .round-container {
        border-radius: 0
    }
}


/*--------------------------------------------------------------
# Page Header
--------------------------------------------------------------*/
.page-header {
    background-color: var(--garlon-base, #000000);
    position: relative;
    min-height: auto !important;
    padding-top: 235px;
    padding-bottom: 150px;
}

@media (max-width: 991px) {
    .page-header {
        padding-top: 326px;
        padding-bottom: 192px;
    }
}

.page-header__bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: top right;
}

.page-header__bg::after {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;

}

.page-header__shape-one {
    position: absolute;
    right: 0;
    bottom: 0;
}

.page-header__shape-two {
    position: absolute;
    right: 0;
    bottom: 0;
}

.page-header .container {
    position: relative;
    z-index: 1;
    padding-left: 120px;
}

.page-header__title {
    margin: 0 0 18px;
    color: var(--garlon-white, #fff);
    font-style: normal;
    font-size: 50px;
    font-weight: 700;
    line-height: 100%;
    padding-bottom: 0;
}

@media (min-width: 768px) {
    .page-header__title {
        font-size: 60px;
    }
}

.garlon-breadcrumb {
    display: flex;
    justify-content: start;
    align-items: center;
    flex-wrap: wrap;
    margin: 0;
}

.garlon-breadcrumb li {
    display: flex;
    align-items: center;
    color: var(--garlon-base, #209D2F);
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 144.444%;
    text-transform: capitalize;
}

.garlon-breadcrumb li:not(:last-of-type)::after {
    content: "/";
    position: relative;
    top: 0;
    margin-left: 7px;
    margin-right: 7px;
    color: var(--garlon-white, #fff);
}

.garlon-breadcrumb li span {
    color: #feba29;
    display: inline-flex;
}

.garlon-breadcrumb li a {
    color: var(--garlon-white, #fff);
    background: linear-gradient(to right, currentcolor 0%, currentcolor 100%) 0px 95%/0px 1px no-repeat;
    transition: all 500ms ease;
}

.garlon-breadcrumb li a:hover {
    background-size: 100% 1px;
}


.product-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
    padding-bottom: 20px;
    border-bottom: 1px solid #eee;
}


.product-container {
    margin: 30px 52px;
    padding: 5rem;
    border-radius: 30px;
    border: 1px solid #dde0e9;
}

.product-title {
    flex: 1;
}

.product-title h1 {
    color: #4d4d4f;
    font-size: 3.5rem;
    margin-bottom: 10px;
    font-family: "Poppins", Sans-serif;
    font-weight: 600;
}

.product-title p {
    color: #555;
    font-size: 0.9rem;
}

.product-btn-area a {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: #ffffff;
    font-weight: 500;
    transition: color 0.3s;
    background: linear-gradient(90deg, #9b0000, #000000);
}

.product-btn-area a:hover {
    color: #feba29;
}

.product-btn-area img {
    width: 30px;
    margin-right: 10px;
}


.product-btn-area {
    display: flex;
    gap: 1rem;
    align-items: center;
    justify-content: center;
}

.product-btn-area a span {
    color: var(--pbmit-white-color);
}

.pbmit-btn {
    position: relative;
    display: inline-block;
    text-decoration: none;
    box-shadow: none;
    font-family: "Poppins", Sans-serif;
    font-size: 13px;
    font-weight: 600;
    line-height: 23px;
    letter-spacing: 0.6px;
    text-transform: uppercase;
    font-style: normal;
    padding: 18px 35px;
    border: none;
    border-radius: 30px;
    transition: all .3s;
    z-index: 1;
    color: #ffffff;
    background-color: #4d4d4f;
}

.product-display {
    /* display: flex; */
    flex-wrap: wrap;
    gap: 30px;
}

.product-border {
    border-left: 2px solid #e5e7ee;
    height: 40vh;
}

.main-image {
    flex: 1;
    min-width: 300px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.main-image img {
    width: 100%;
    height: 300px;
    -o-object-fit: contain;
    object-fit: contain;
}

.product-gallery {
    flex: 1;
    min-width: 300px;
}

.gallery-title {
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: #333;
}

.thumbnail-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
    gap: 15px;
}

.thumbnail {
    border: 1px solid #ddd;
    padding: 5px;
    border-radius: 5px;
    cursor: pointer;
    transition: transform 0.3s, box-shadow 0.3s;
}

.thumbnail:hover {
    transform: scale(1.05);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.thumbnail img {
    width: 100%;
    height: 100px;
    object-fit: contain;
}


/* Capacity Table Styles */
.capacity-table-section {
    margin-top: 40px;
    margin-bottom: 40px;
    padding-top: 20px;
    border-top: 1px solid #eee;
}

.capacity-table-section h2 {
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: #333;
}

.capacity-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 15px;
    overflow-x: auto;
}

.capacity-table th,
.capacity-table td {
    border: 1px solid #ddd;
    padding: 10px;
    text-align: center;
}

.capacity-table th {
    background-color: #f2f2f2;
    font-weight: bold;
}

.capacity-table tr:nth-child(even) {
    background-color: #f9f9f9;
}

.capacity-table tr:hover {
    background-color: #f1f1f1;
}

/* First column style */
.capacity-table td:first-child,
.capacity-table th:first-child {
    text-align: left;
    font-weight: 500;
}

.table-container {
    width: 100%;
    overflow-x: auto;
    margin-bottom: 20px;
}

@media (max-width: 768px) {
    .header {
        flex-direction: column;
        align-items: flex-start;
    }

    .product-pdf {
        margin-top: 15px;
    }

    .product-display {
        flex-direction: column;
    }

    .thumbnail-grid {
        grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
    }
}


/* FotoÄŸraflar SayfasÄ± CSS Kodu */

/* Galeri BÃ¶lÃ¼mÃ¼ Stilleri */
.pbmit-gallery-section {

}

.pbmit-heading-subheading {
    margin-bottom: 50px;
}

.pbmit-subtitle {
    font-size: 16px;
    color: #1e73be;
    margin-bottom: 10px;
    font-weight: 600;
    letter-spacing: 1px;
    display: inline-block;
    position: relative;
}

.pbmit-title {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #222;
}

/* Galeri Filtreleme ButonlarÄ± */
.pbmit-portfolio-filter-wrapper {
    margin-bottom: 40px;
}

.pbmit-portfolio-filter {
    display: flex;
    justify-content: center;
    list-style: none;
    padding: 0;
    margin: 0;
    flex-wrap: wrap;
}

.pbmit-portfolio-filter li {
    margin: 5px;
}

.pbmit-portfolio-filter li a {
    display: inline-block;
    padding: 10px 20px;
    background-color: #fff;
    color: #222;
    border-radius: 5px;
    font-weight: 500;
    transition: all 0.3s ease;
    text-decoration: none;
    border: 1px solid #e1e1e1;
}

.pbmit-portfolio-filter li a:hover,
.pbmit-portfolio-filter li a.active {
    background-color: #1e73be;
    color: #fff;
    border-color: #1e73be;
}

/* Galeri Ã–ÄŸeleri */
.pbmit-gallery-items {
    margin: 0 -15px;
}

.pbmit-gallery-item {
    padding: 15px;
    margin-bottom: 30px;
}

.pbmit-gallery-wrapper {
    background-color: #fff;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.pbmit-gallery-icon-box::before {
    content: none;
}

.pbmit-gallery-wrapper:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.pbmit-gallery-img-box {
    position: relative;
    overflow: hidden;
    padding-top: 75%; /* 4:3 gÃ¶rÃ¼ntÃ¼ oranÄ± */
}

.pbmit-gallery-img-box img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.6s ease;
}

.pbmit-gallery-wrapper:hover .pbmit-gallery-img-box img {
    transform: scale(1.05);
}

.pbmit-gallery-icon-box {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 0;
    transition: all 0.3s ease;
}

.pbmit-gallery-wrapper:hover .pbmit-gallery-icon-box {
    opacity: 1;
}

.pbmit-gallery-icon-box a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background-color: #fff;
    color: #fff;
    border-radius: 50%;
    text-decoration: none;
    transition: all 0.3s ease;
}

.pbmit-gallery-icon-box a:hover {
    background-color: #fff;
    color: #1e73be;
}

.pbmit-gallery-content {
    padding: 20px;
    text-align: center;
}

.pbmit-gallery-title {
    font-size: 18px;
    font-weight: 600;
    margin: 0;
    color: #222;
}

/* Ä°letiÅŸim CTA BÃ¶lÃ¼mÃ¼ */
.pbmit-contact-section {
    padding: 80px 0;
    background-color: #fff;
}

.pbmit-contact-cta {
    padding: 40px;
    background-color: #f8f8f8;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.pbmit-contact-cta p {
    font-size: 16px;
    margin-bottom: 25px;
    color: #666;
}

.pbmit-btn-wrapper {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
}


.pbmit-btn:hover {
    background-color: #135ca3;
    color: #fff;
}

.pbmit-btn-outline {
    background-color: transparent;
    color: #1e73be;
    border: 1px solid #1e73be;
}

.pbmit-btn-outline:hover {
    background-color: #1e73be;
    color: #fff;
}

.pbmit-button-icon {
    margin-right: 8px;
}

.custom-btn-group {
    display: flex;
    gap: 30px;
    justify-content: center;
    margin: 50px 0;
}

.custom-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 18px 40px;
    border: none;
    border-radius: 999px; /* tam yuvarlak uç */
    font-size: 15px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    color: #fff;
    background: linear-gradient(to right, #feba29, #cea03e);
    text-decoration: none;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.custom-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.35);
}

.custom-btn i {
    font-style: normal;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}


:root {
    --tab-red: #e10b2b; /* başlık rengi */
    --card-border: #e6eaf0; /* kart sınırı */
    --ink: #0b1220;
    --muted: #6b7280;
}

/* kart / sekme görünümü */
.prd-specs--single .specs-card {
    border: 1px solid var(--card-border);
    border-radius: 18px;
    margin: 52px 52px;
    background: #fff;
    padding: 12px 12px 16px;
}

.prd-specs--single .tabs {
    padding: 8px 8px 0
}

.prd-specs--single .tab {
    display: inline-block;
    border: 1px solid var(--card-border);
    background: #fff;
    color: var(--tab-red);
    font-weight: 800;
    padding: 10px 16px;
    border-radius: 12px 12px 0 0;
    box-shadow: 0 0 0 4px rgba(58, 120, 255, .06) inset;
}

.prd-specs--single .tabs-divider {
    border: none;
    border-top: 1px solid var(--card-border);
    margin: 8px 12px 0;
}

/* tablo görünümü */
.specs-table {
    width: 100%
}

.specs-row {
    display: grid;
    grid-template-columns:1fr 1fr 1fr;
    gap: 0;
    padding: 16px 18px;
    border-bottom: 1px solid #f1f3f6;
}

.specs-row:last-child {
    border-bottom: none
}

.specs-row--head {
    color: var(--tab-red);
    font-weight: 800;
    border-bottom: 1px solid #eef1f6
}

.specs-row .cell {
    align-self: center;
    color: var(--ink)
}

.specs-row .cell--value {
    color: #606a78;
    font-weight: 600;
    font-size: 1.05rem;
    line-height: 1.5
}

/* mobil uyum */
@media (max-width: 720px) {
    .specs-row {
        grid-template-columns:1fr;
        gap: 6px
    }

    .specs-row--head {
        display: none
    }

    .specs-row .cell:first-child {
        color: var(--muted);
        font-weight: 600
    }
}

.prd-specs.prd-specs--single h2 {
    font-size: 2.2rem;
    margin-bottom: 0px;
    color: #333;
}

.scrolled .set-bg {
    display: none;
}

.scrolled .mobile-divider {
    border-bottom: 1px solid rgb(255 255 255 / 0%);
}


/* ================== LOADER ================== */
.warkas-loader {
    position: fixed;
    inset: 0;
    background: #feba29;
    display: grid;
    place-items: center;
    z-index: 9999;
    overflow: hidden;
}

.warkas-loader svg {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.warkas-loader #svg {
    fill: #4d4d4f;
}

.warkas-loader__text {
    position: relative;
    display: flex;
    gap: 10px;
    font-weight: 800;
    font-size: 42px;
    color: #fff;
    letter-spacing: 0.1em;
}

.warkas-loader__text span {
    opacity: 0;
    transform: translateY(20px);
    animation: warkasPop 0.9s ease forwards;
}

.warkas-loader__text span:nth-child(1) {
    animation-delay: 0.05s;
}

.warkas-loader__text span:nth-child(2) {
    animation-delay: 0.15s;
}

.warkas-loader__text span:nth-child(3) {
    animation-delay: 0.25s;
}

.warkas-loader__text span:nth-child(4) {
    animation-delay: 0.35s;
}

.warkas-loader__text span:nth-child(5) {
    animation-delay: 0.45s;
}

.warkas-loader__text span:nth-child(6) {
    animation-delay: 0.55s;
}

@keyframes warkasPop {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.warkas-loader.is-done {
    animation: warkasFade 0.6s ease forwards 0.2s;
}

@keyframes warkasFade {
    to {
        opacity: 0;
        visibility: hidden;
    }
}


.scroll-contact {
    position: fixed;
    right: 60px;
    top: 30%;
    overflow: visible;
    display: flex;
    background-color: #fdb929;
    border-radius: 10px;
    flex-direction: column;
    padding: 0 0;
    gap: 0;
    font-size: 32px;
    z-index: 9999;
}

.scroll-contact img {
    cursor: pointer;
    position: relative;
    z-index: 2;
    width: 28px;
}

.scroll-contact a {
    position: relative;
    padding-top: 4px;
    margin: 0;
    height: 54px;
    border-bottom: 1px solid #fff6;
    width: 100%;
    display: block;
    padding: 0 10px 0 12px;
    display: flex;
    align-items: center;
    justify-content: center
}

.scroll-contact span {
    display: inline-block;
    position: relative;
    padding: 0 10px 5px 12px;
    border-bottom: 1px solid #fff6
}

.scroll-contact span:last-child {
    border-bottom: none
}

.scroll-contact a:hover img {
    color: #e62522
}

.scroll-contact img:hover {
    color: #e62522
}

.scroll-contact span ul li {
    list-style: none;
}

.scroll-contact span ul li a {
    padding: 14px 10px 0 12px;
    color: white;
}

.scroll-contact d {
    position: absolute;
    z-index: 1;
    width: 0;
    left: 0;
    display: flex;
    transition: all .5s;
    height: 100%;
    top: 0;
    align-items: center;
    justify-content: start;
    font-size: 14px;
    background-color: #fdb929;
    text-transform: uppercase;
    font-weight: 600;
    transform: translateX(-100%);
    overflow: hidden;
    white-space: nowrap;
    color: #fff;
    border-top-left-radius: 10px;
    border-bottom-left-radius: 10px;
}

.client-logo-1-image img {
    filter: grayscale(100%);
    /* Logoyu siyah-beyaz yapar */
    transition: filter 0.3s ease;
    /* GeÃ§iÅŸ animasyonu ekler */
}

.client-logo-1-image img:hover {
    filter: grayscale(0%);
    /* Ãœzerine gelindiÄŸinde renkli hale getirir */
}

.scroll-contact a:hover d {
    left: 12px;
    width: initial;
    padding: 0 55px 0 15px;
    background-color: #fdb929;
    border-top-left-radius: 10px;
    border-bottom-left-radius: 10px;
}

.scroll-contact span:hover d {
    left: 10px;
    width: initial;
    padding: 0 55px 0 15px;
    white-space: nowrap;
    opacity: 1;
    font-weight: 600;
    color: #fff;
    background-color: #fdb929;
    border-top-left-radius: 10px;
    border-bottom-left-radius: 10px;
}

.scroll-contact span.page-top:hover d {
    left: 10px;
    width: initial;
    padding: 0 55px 0 15px;
    white-space: nowrap;
    opacity: 1;
    font-weight: 600;
    color: #fff;
    background-color: #fdb929;
    border-top-left-radius: 10px;
    border-bottom-left-radius: 10px;
}

.invert-image {
    -webkit-filter: invert(100%);
    filter: invert(100%);
}


li.lang {
    margin: -30px;
}

.lang .lang-span::before {
    content: "";
    background: #feba29;
    width: 2px;
    height: 50%;
    right: 72px;
    top: 5px;
    position: absolute;
}

span.lang-tr {
    margin-left: 7px;
}

/* sadece mobilde göster */
@media (min-width: 768px) {
    .m-header {
        display: none;
    }
}

.m-header {
    position: fixed;
    inset: 0 auto auto 0;
    right: 0;
    height: var(--m-bar-h);
    background: var(--m-primary);
    color: var(--m-text-on-primary);
    z-index: 110;
}

/* üst bar */
.m-bar {
    height: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 var(--m-pad-x);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.m-logo img {
    height: 40px;
    width: auto;
    display: block;
}

.m-burger, .m-close {
    width: 40px;
    height: 40px;
    display: grid;
    place-items: center;
    border: 1px solid var(--m-border-on-primary);
    border-radius: 10px;
    background: transparent;
    color: var(--m-text-on-primary);
    cursor: pointer;
}

.m-close {
    border-color: var(--m-border);
    color: var(--m-text);
}

.m-icon {
    width: 24px;
    height: 24px;
}

/* backdrop */
.m-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, .5);
    opacity: 0;
    pointer-events: none;
    transition: opacity 300ms ease;
}

/* drawer */
.m-drawer {
    position: fixed;
    top: 0;
    right: 0;
    height: 100dvh;
    width: var(--m-drawer-w);
    transform: translateX(100%);
    background: var(--m-surface);
    color: var(--m-text);
    box-shadow: var(--m-shadow);
    transition: transform 300ms ease;
    display: flex;
    flex-direction: column;
    outline: none;
}

.m-drawer-head {
    height: var(--m-bar-h);
    padding: 0 var(--m-pad-x);
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid var(--m-border);
}

.m-drawer-title {
    font-weight: 600;
    letter-spacing: .2px;
}

.m-drawer-body {
    padding: 10px 0 0;
    overflow-y: auto;
}

.m-drawer-foot {
    padding: 8px var(--m-pad-x) 24px;
    border-top: 1px solid var(--m-border);
    font-size: 12px;
    color: rgba(0, 0, 0, .5);
}

/* listeler */
.m-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.m-list > li {
    border-top: 1px solid var(--m-border);
}

.m-list > li:first-child {
    border-top: none;
}

.m-link {
    display: block;
    padding: 16px var(--m-pad-x);
    font-size: 17px;
    font-weight: 500;
    color: var(--m-text);
    text-decoration: none;
}

.m-link:hover {
    background: rgba(0, 0, 0, .05);
}

/* accordion */
.m-acc {
}

.m-acc-btn {
    width: 100%;
    padding: 16px var(--m-pad-x);
    background: transparent;
    border: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 17px;
    font-weight: 600;
    cursor: pointer;
}

.m-acc-btn:hover {
    background: rgba(0, 0, 0, .05);
}

.m-acc-icon {
    width: 16px;
    height: 16px;
    transition: transform var(--m-acc-speed) ease;
}

.m-acc-btn[aria-expanded="true"] .m-acc-icon {
    transform: rotate(180deg);
}

.m-acc-panel {
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--m-acc-speed) ease;
    background: #fff;
}

.m-sub-list {
    list-style: none;
    margin: 0;
    padding: 6px 0 12px;
}

.m-sub-link {
    display: block;
    padding: 12px calc(var(--m-pad-x) - 4px) 12px calc(var(--m-pad-x) + 8px + 12px);
    /* left indent */
    font-size: 16px;
    color: var(--m-text-dim);
    text-decoration: none;
}

.m-sub-link:hover {
    background: rgba(0, 0, 0, .05);
    color: var(--m-text);
}

.m-lang-prefix {
    color: rgba(0, 0, 0, .5);
    margin-right: 6px;
}

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

/* Açık durumlar (JS bu class'ları ekler/çıkarır) */
.m-backdrop.is-open {
    opacity: 1;
    pointer-events: auto;
}

.m-drawer.is-open {
    transform: translateX(0);
}

@media (max-width: 740px) {
    .wk-duo {
        max-width: 1920px;
        margin: 0 auto;
        padding: 120px 15px 0 !important;
    }

    .kc-decor {
        position: absolute;
        left: 0;
        bottom: 0;
        height: 52% !important;
        pointer-events: none;
        z-index: 0;
    }

    .blognews-section {
        position: relative;
        padding-top: 100px;
        margin: 26px -8px;
        overflow: hidden;
    }

    .footer-ust {
        margin: 0 10px;
    }

    .footer-ust h4 {
        -webkit-box-sizing: content-box;
        -moz-box-sizing: content-box;
        box-sizing: content-box;
        padding: 0 40px;
        font-size: 2.5rem;
        text-align: left;
        font-family: "League Spartan", sans-serif;
        font-weight: 400;
        letter-spacing: 0px;
        line-height: 1.3;
        color: white;
    }

    .wks-footer__container {
        margin: 0 9px;
    }

    .pbmit-footer-text-area {
        position: relative;
        top: 35px;
        margin: 2px 8vw;
    }

    .pbmit-footer-text-inner {
        text-align: center;
        font-size: 14px;
        padding: 20px 6px;
        border-radius: 30px 30px 0 0;
        background-color: white;
    }

    .scroll-contact {
        position: fixed;
        right: 8px;
    }

    .wks-footer__input {
        flex: 1;
        height: 64px;
        border-radius: 38px;
        border: none;
        outline: none;
        padding: 22px 22px;
        font-size: 16px;
        color: #0f172a;
        background: #ecf3ff;
    }

    .slideshow {
        width: 100%;
        height: 33vh !important;
        position: relative;
        overflow: hidden;
    }

    .slide__img {
        position: absolute;
        background-size: contain !important;
        background-position: 50% 50% !important;
    }

    .frame {
        display: none !important;
    }

    .page-header .container {
        position: relative;
        z-index: 1;
        padding-left: 17px;
    }

    .page-header {
        padding-top: 144px;
        padding-bottom: 192px;
    }

}


/* <= 992px: orta ekranlar */
@media (max-width: 992px) {
    .product-container {
        margin: 24px;
        padding: 3rem;
        border-radius: 22px;
    }

    .product-display {
        grid-template-columns: 1fr; /* yan yana değil üst üste */
    }

    .product-border {
        display: none;
    }

    .thumbnail-grid {
        grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
    }
}

/* <= 768px: tablet/telefon */
@media (max-width: 768px) {
    .product-container {
        margin: 16px;
        padding: 2rem;
        border-radius: 18px;
    }

    .product-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }

    .product-btn-area {
        justify-content: flex-start;
    }

    .thumbnail img {
        height: 84px;
    }

    .product-title h1 {
        color: #4d4d4f;
        font-size: 1.5rem;
        margin-bottom: 10px;

        font-weight: 600;
    }

    .custom-btn {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        gap: 7px;
        padding: 16px 22px;
        border: none;
        border-radius: 999px;
        font-size: 10px;
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: 1px;
        cursor: pointer;
        color: #fff;
        background: linear-gradient(to right, #feba29, #cea03e);
        text-decoration: none;
        transition: transform 0.25s ease, box-shadow 0.25s ease;
    }

    .prd-specs--single .specs-card {
        border: 1px solid var(--card-border);
        border-radius: 18px;
        margin: 52px 11px;
        background: #fff;
        padding: 12px 12px 16px;
    }
}

/* <= 480px: küçük telefonlar */
@media (max-width: 480px) {
    .product-container {
        margin: 12px;
        padding: 1.25rem;
        border-radius: 14px;
    }

    .product-btn-area a {
        width: 100%; /* CTA'lar tam genişlik */
        justify-content: center;
        padding: 14px 16px;
    }

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

    .thumbnail img {
        height: 76px;
    }
}