:root {
    /* Root Color Palette */
    --primary-blue: #204C93;
    --primary-white: #FFFFFF;
    --primary-red: #E41E26;
    --light-blue: #E3F2FD;
    --light-gray: #F8F9FA;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html,
body {
    font-family: Arial, sans-serif;
    --heading-font: 'Plus Jakarta Sans', Arial, sans-serif;
    overflow-x: hidden;
    max-width: 100vw;
    /* Safari/iOS için zoom önleme */
    -webkit-text-size-adjust: 100%;
    text-size-adjust: 100%;
}

/* Scroll animasyonları */
@keyframes slideInLeft {
    from {
        transform: translateX(-100%);
        opacity: 0;
    }

    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes slideInRight {
    from {
        transform: translateX(100%);
        opacity: 0;
    }

    to {
        transform: translateX(0);
        opacity: 1;
    }
}

.advantage-item {
    transform: translateX(-100%);
    transition: all 0.8s ease-out;
}

.advantage-item-team {
    transform: translateX(-100%);
    transition: all 0.8s ease-out;
}

.pex-difference-item {
    transform: translateX(-100%);
    transition: all 0.8s ease-out;
}

.advantage-item.slide-in-left {
    opacity: 1;
    transform: translateX(0);
    animation: slideInLeft 0.8s ease-out;
}

.advantage-item-team.slide-in-left {
    opacity: 1;
    transform: translateX(0);
    animation: slideInLeft 0.8s ease-out;
}

.pex-difference-item.slide-in-left {
    opacity: 1;
    transform: translateX(0);
    animation: slideInLeft 0.8s ease-out;
}

.advantage-item.slide-in-right {
    opacity: 1;
    transform: translateX(0);
    animation: slideInRight 0.8s ease-out;
}

.advantage-item-team.slide-in-right {
    opacity: 1;
    transform: translateX(0);
    animation: slideInRight 0.8s ease-out;
}

.pex-difference-item.slide-in-right {
    opacity: 1;
    transform: translateX(0);
    animation: slideInRight 0.8s ease-out;
}

/* Sağdan kayarak gelen özel content */
.slide-from-right-content {
    opacity: 0;
    transform: translateX(100%);
    transition: all 0.8s ease-out;
    background: rgba(32, 76, 147, 1);
    border-radius: 15px;
    padding: 20px 25px;
}

.slide-from-right-content.slide-in-right {
    opacity: 1;
    transform: translateX(0);
    animation: slideInRight 0.8s ease-out;
    transition: all 0.3s ease-out;
}

.slide-from-right-content.slide-in-right:hover {
    transform: translateX(0) translateY(-10px);
    box-shadow: 0 15px 40px rgba(32, 76, 147, 0.3);
}

/* h3 altında beyaz çizgi */
.h3-with-line::after {
    content: '';
    display: block;
    width: 60%;
    height: 3px;
    background: var(--primary-red);
    margin-top: 15px;
}

/* Line items - soldan kayarak gelen */
.line-slide-item {
    opacity: 0;
    transform: translateX(-100%);
}

.line-slide-item.slide-in {
    opacity: 1;
    transform: translateX(0);
    animation: slideInLeft 0.4s ease-out;
}

/* Arka plan görseli - Parallax scroll efekti */
.background-image {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    will-change: transform;
    transform: translateZ(0);
    opacity: 0.7;
    z-index: -2;
    transition: transform 0.1s ease-out;
}

/* Safari/iOS için background image düzeltmeleri */
@media only screen and (max-width: 1024px) {
    .background-image {
        position: absolute;
        height: 100%;
        min-height: 100vh;
        background-attachment: scroll;
    }

    html,
    body {
        -webkit-overflow-scrolling: touch;
    }
}

/* Scroll efekti için JavaScript ile kontrol edilecek */
.parallax-container {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.content {
    text-align: center;
    z-index: 20;
    max-width: 800px;
    padding: 40px 20px;
}

/* Parallax Fixed Backgrounds for Sections */
.why-choose-pex-section,
.career-plan-section,
.pex-difference-section {
    position: relative;
    background-attachment: fixed !important;
    background-size: cover !important;
    background-position: center !important;
    background-repeat: no-repeat !important;
}

/* Safari/iOS için mobil düzeltmeler - scroll'u bozmadan zoom sorununu çöz */
@supports (-webkit-touch-callout: none) {
    @media only screen and (max-width: 1024px) {

        .why-choose-pex-section,
        .career-plan-section,
        .pex-difference-section,
        .bg-img1 {
            background-attachment: scroll !important;
            background-size: 100% auto !important;
            min-height: 100vh;
        }
    }
}


.why-choose-pex-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.9);
    z-index: 0;
    pointer-events: none;
    /* Fare olaylarını engellememesi için */
}

.career-plan-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(32, 76, 147, 0.9) 0%, rgba(228, 30, 38, 0.9) 100%);
    z-index: 0;
}

/* Ensure section content is above parallax overlay */
.why-choose-pex-section .container,
.career-plan-section .container,
.pex-difference-section .container {
    position: relative;
    z-index: 1;
}

.content h1 {
    font-size: 3.5rem;
    font-weight: bold;
    color: var(--primary-blue);
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
    line-height: 1.2;
}

.content h2 {
    font-size: 1.8rem;
    color: var(--primary-blue);
    margin-bottom: 30px;
    font-weight: 300;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
}

.content p {
    font-size: 1.2rem;
    color: #555;
    line-height: 1.6;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
}

.hero .content h1,
.hero .content h2,
.hero .content p {
    color: var(--primary-white);
}

/* Responsive yazı boyutları */
@media (max-width: 768px) {
    .content h1 {
        font-size: 2.5rem;
    }

    .content h2 {
        font-size: 1.4rem;
    }

    .content p {
        font-size: 1rem;
    }
}

/* Map section heavy blur overlay - removed */
.company-map-section {
    position: relative;
}

/* Responsive height adjustments for company-map-section */
@media (max-width: 768px) {
    .company-map-section {
        min-height: 70vh !important;
    }
}

@media (max-width: 480px) {
    .company-map-section {
        min-height: 60vh !important;
    }
}

@media (max-width: 480px) {
    .content h1 {
        font-size: 2rem;
    }

    .content h2 {
        font-size: 1.2rem;
    }

    .content p {
        font-size: 0.9rem;
    }
}

/* Features Section CSS from 2.html */
.features {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    grid-template-areas:
        ". lt ."
        "rt c lb"
        ". rb .";
    row-gap: min(5vw, 5px);
    column-gap: clamp(2px, 1vw, 2px);
    align-items: center;
    justify-items: center;
    margin-top: 2rem;
    position: relative;
}

.feature {
    --delay: 0ms;
    --speed: 16s;
    --a: 0turn;
    width: clamp(160px, 20vw, 200px);
    height: clamp(160px, 20vw, 200px);
    border-radius: 50%;
    border: 8px solid transparent;
    position: relative;
    background:
        linear-gradient(var(--primary-white), var(--primary-white)) padding-box,
        linear-gradient(80deg, #E41E26 0%, var(--primary-blue) 100%) border-box;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 4px;
    box-shadow: 0 8px 40px rgba(2, 6, 23, .08);
    transform: translateY(0) scale(1);
    opacity: 1;
    z-index: 1;
    transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}


.feature::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    border-radius: 50%;
    background: #2563eb;
    z-index: -1;
    opacity: 0;
    transition: opacity 400ms ease;
}


.feature b {
    color: var(--primary-blue);
    font-weight: 700;
}

.feature p {
    margin: 0;
    color: #0f172a;
    font-size: clamp(15px, 1.2vw, 18px);
    font-weight: 600;
}

/* Enhanced feature content */
.feature .inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1px;
}

.feature .icon-wrap {
    width: 48px;
    height: 48px;
    border-radius: 16px;
    display: grid;
    place-items: center;
    background: transparent;
    box-shadow: none;
    backdrop-filter: none;
}


.feature .icon-wrap svg {
    width: 40px;
    height: 40px;
    stroke: var(--primary-blue);
    animation: iconPulse 2s ease-in-out infinite;
}

.feature .title {
    font-family: var(--heading-font);
    color: var(--primary-blue);
    font-weight: 800;
    letter-spacing: -0.01em;
    font-size: clamp(18px, 2vw, 22px);
}

.feature .subtitle {
    color: #475569;
    font-weight: 600;
    font-size: clamp(11px, 0.9vw, 13px);
}

.lt {
    grid-area: lt;
    --speed: 16s;
    --delay: 100ms;
}

.lb {
    grid-area: lb;
    --speed: 18s;
    --delay: 300ms;
}

.rt {
    grid-area: rt;
    --speed: 14s;
    --delay: 200ms;
}

.rb {
    grid-area: rb;
    --speed: 12s;
    --delay: 400ms;
}

.center {
    grid-area: c;
    width: clamp(160px, 22vw, 200px);
    height: clamp(160px, 22vw, 200px);
    border-radius: 16px;
    display: grid;
    place-items: center;
    background: transparent;
    border: none;
    box-shadow: none;
    position: absolute;
    inset: 0;
    margin: auto;
    transform: none;
    opacity: 1;
    animation: none;
    transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
    pointer-events: auto;
    z-index: 0;
}

.center::before {
    display: none;
}

.center:hover {
    transform: translateY(-20px) scale(1.08) rotate(3deg);
    transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.feature:hover {
    transform: translateY(-20px) scale(1.08) rotate(3deg);
    transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}


.center svg {
    width: 64%;
    height: 64%;
    position: relative;
    z-index: 1;
    animation: iconPulse 2s ease-in-out infinite;
}

.center svg [stroke] {
    stroke: var(--primary-blue);
}

.center svg [fill] {
    fill: var(--primary-blue);
}

/* Animations */
@keyframes iconPulse {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(0.95);
    }
}


@keyframes float {

    0%,
    100% {
        transform: translateY(0)
    }

    50% {
        transform: translateY(-8px)
    }
}

@keyframes rotateBackground {
    to {
        --rotate: 360deg;
    }
}

/* Section specific styles */
#why-choose-pex {
    padding: 4rem 0;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

#why-choose-pex .content {
    max-width: 800px;
    margin: 0 auto;
}

/* All sections vertical centering */
.ttm-row {
    min-height: 100vh;
    display: flex;
    align-items: center;
}

/* Income Models Section */
#income-models {
    padding: 4rem 0;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

#income-models .content {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* Company Overview Section */
#company-overview {
    padding: 4rem 0;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

#company-overview .content {
    max-width: 900px;
    margin: 0 auto;
}

/* Hero Intro Section */
#hero-intro {
    padding: 4rem 0;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

#hero-intro .content {
    max-width: 1000px;
    margin: 0 auto;
}

/* Main Hero Section */
#main-hero {
    padding: 4rem 0;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

#main-hero .content {
    max-width: 1000px;
    margin: 0 auto;
}

/* Hero Intro Section */
#hero-intro {
    padding: 4rem 0;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

#hero-intro .content {
    max-width: 1000px;
    margin: 0 auto;
}

/* Fix section overlapping issues */
.parallax-container {
    position: relative;
    z-index: 1;
}

/* Ensure proper spacing between sections */
section {
    margin-bottom: 0;
}

/* Responsive padding for features container */
.features-container-padding {
    padding: 15px;
}

@media (max-width: 1024px) {
    .features-container-padding {
        padding: 12px;
    }
}

@media (max-width: 768px) {
    .features-container-padding {
        padding: 10px;
    }
}

@media (max-width: 600px) {
    .features-container-padding {
        padding: 8px;
    }
}

@media (max-width: 480px) {
    .features-container-padding {
        padding: 5px;
    }
}

/* Tablet devices - earlier breakpoint for better fit */
@media (max-width: 1024px) {
    .features {
        grid-template-columns: 1fr 1fr;
        grid-template-areas:
            "lt rt"
            "lb rb";
        row-gap: 40px;
        column-gap: 40px;
        margin-top: 2rem;
    }

    .center {
        display: none;
    }

    .feature {
        width: clamp(120px, 18vw, 160px);
        height: clamp(120px, 18vw, 160px);
        padding: 12px;
        border: 6px solid transparent;
    }

    .feature .icon-wrap {
        width: 36px;
        height: 36px;
    }

    .feature .icon-wrap svg {
        width: 28px;
        height: 28px;
    }

    .feature .title {
        font-size: clamp(14px, 1.8vw, 18px);
    }

    .feature .subtitle {
        font-size: clamp(10px, 1.2vw, 12px);
    }

    .feature .inner {
        gap: 6px;
    }


    /* Tablet responsive heights */
    .ttm-row {
        min-height: 80vh;
    }

    #main-hero {
        padding: 3rem 0;
        min-height: 60vh;
    }

    #hero-intro {
        padding: 3rem 0;
        min-height: 60vh;
    }

    #why-choose-pex {
        padding: 3rem 0;
    }

    #income-models {
        padding: 3rem 0;
    }

    #company-overview {
        padding: 3rem 0;
    }
}

/* Mobile landscape / Small tablets */
@media (max-width: 768px) {
    .features {
        grid-template-columns: 1fr 1fr;
        grid-template-areas:
            "lt rt"
            "lb rb";
        row-gap: 35px;
        column-gap: 35px;
        margin-top: 1.5rem;
    }

    .feature {
        width: clamp(110px, 40vw, 145px);
        height: clamp(110px, 40vw, 145px);
        padding: 10px;
        border: 5px solid transparent;
    }

    .feature .icon-wrap {
        width: 32px;
        height: 32px;
    }

    .feature .icon-wrap svg {
        width: 26px;
        height: 26px;
    }

    .feature .title {
        font-size: clamp(13px, 2.5vw, 16px);
    }

    .feature .subtitle {
        font-size: clamp(9px, 1.8vw, 11px);
    }

    .feature .inner {
        gap: 5px;
    }


    #why-choose-pex {
        padding: 2.5rem 0;
    }
}

/* Medium mobile devices - single column for better readability */
@media (max-width: 600px) {
    .features {
        grid-template-columns: 1fr;
        grid-template-areas:
            "lt"
            "rt"
            "lb"
            "rb";
        row-gap: 30px;
        margin-top: 1.5rem;
    }

    .feature {
        width: clamp(150px, 70vw, 190px);
        height: clamp(150px, 70vw, 190px);
        padding: 15px;
        border: 6px solid transparent;
        margin: 0 auto;
    }

    .feature .icon-wrap {
        width: 38px;
        height: 38px;
    }

    .feature .icon-wrap svg {
        width: 32px;
        height: 32px;
    }

    .feature .title {
        font-size: clamp(16px, 3.5vw, 20px);
    }

    .feature .subtitle {
        font-size: clamp(11px, 2.2vw, 13px);
    }

    .feature .inner {
        gap: 8px;
    }
}

/* Small mobile devices */
@media (max-width: 480px) {
    .features {
        grid-template-columns: 1fr;
        grid-template-areas:
            "lt"
            "rt"
            "lb"
            "rb";
        row-gap: 25px;
        margin-top: 1.2rem;
    }

    .center {
        display: none;
    }

    .feature {
        width: clamp(140px, 75vw, 180px);
        height: clamp(140px, 75vw, 180px);
        padding: 16px;
        border: 5px solid transparent;
        margin: 0 auto;
    }

    .feature .icon-wrap {
        width: 36px;
        height: 36px;
    }

    .feature .icon-wrap svg {
        width: 30px;
        height: 30px;
    }

    .feature .title {
        font-size: clamp(16px, 4vw, 20px);
    }

    .feature .subtitle {
        font-size: clamp(11px, 2.5vw, 13px);
    }

    .feature .inner {
        gap: 8px;
    }


    /* Mobile responsive heights */
    .ttm-row {
        min-height: 70vh;
    }

    #main-hero {
        padding: 2rem 0;
        min-height: auto;
    }

    #hero-intro {
        padding: 2rem 0;
        min-height: auto;
    }

    #why-choose-pex {
        padding: 2rem 0;
        min-height: 80vh;
    }

    #income-models {
        padding: 2rem 0;
        min-height: 80vh;
    }

    #company-overview {
        padding: 2rem 0;
        min-height: 80vh;
    }
}

/* Custom list item boxes */
.content ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.content li {
    background: linear-gradient(135deg, var(--primary-white) 0%, var(--light-gray) 100%);
    border: 2px solid var(--light-blue);
    border-radius: 16px;
    padding: 24px;
    margin: 16px 0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.content li::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, var(--primary-blue) 0%, var(--light-blue) 100%);
    border-radius: 0 2px 2px 0;
}

.content li:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(32, 76, 147, 0.15);
    border-color: var(--primary-blue);
}

.content li strong {
    color: var(--primary-blue);
    font-size: 1.1em;
    display: block;
    margin-bottom: 8px;
}

.content li {
    color: #374151;
    font-size: 1rem;
    line-height: 1.6;
}

/* Responsive adjustments for boxes */
@media (max-width: 768px) {
    .content li {
        padding: 20px;
        margin: 12px 0;
    }
}

@media (max-width: 480px) {
    .content li {
        padding: 16px;
        margin: 10px 0;
    }
}

/* Additional responsive fixes for very small screens */
@media (max-width: 360px) {
    #main-hero {
        padding: 1.5rem 0;
    }

    #hero-intro {
        padding: 1.5rem 0;
    }

    #why-choose-pex {
        padding: 1.5rem 0;
        min-height: 70vh;
    }

    #income-models {
        padding: 1.5rem 0;
        min-height: 70vh;
    }

    #company-overview {
        padding: 1.5rem 0;
        min-height: 70vh;
    }
}

/* ===== TÜRKİYE HARİTASI CSS STİLLERİ ===== */
/* SVG Türkiye Haritası CSS - dnomak.com */
.svg-turkiye-haritasi {
    max-width: 1140px;
    margin: 0 auto;
    text-align: center;
}

/* Ensure section content is above background layer (without blur) */
.company-map-section,
.earn-section,
.pex-difference-section {
    position: relative;
}

.company-map-section .ttm-bg-layer,
.earn-section .ttm-bg-layer,
.pex-difference-section .ttm-bg-layer {
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
}

/* Blur only the background image, keep content sharp (preserve parallax) */
.company-map-section::before,
.earn-section::before,
.pex-difference-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background-color: rgba(255, 255, 255, 0.001);
    /* enable backdrop-filter compositing */
    -webkit-backdrop-filter: blur(6px);
    backdrop-filter: blur(6px);
    z-index: 0;
}

/* Hover sorununu kökten çözmek için tüm overlay'lere pointer-events: none ekle */
.why-choose-pex-section::before,
.career-plan-section::before,
.pex-difference-section::before,
.pex-difference-section::after {
    pointer-events: none;
}

/* Enhanced styling for Pex Difference section */
.pex-difference-section::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(32, 76, 147, 0.05) 0%, rgba(220, 53, 69, 0.05) 100%);
    z-index: 0;
    pointer-events: none;
}

.company-map-section .container,
.company-map-section .row,
.company-map-section .col-lg-12,
.company-map-section .svg-turkiye-haritasi,
.company-map-section .il-isimleri {
    position: relative;
    z-index: 1;
    /* Above blurred background */
}

/* Ensure Earn section content is above blurred background */
.earn-section .container,
.earn-section .row,
.earn-section .col-lg-12,
.earn-section .col-lg-6,
.earn-section .col-lg-5,
.earn-section .col-lg-7 {
    position: relative;
    z-index: 1;
}

/* Earn Section Background Chart Animation */
@keyframes chartGrowUp {
    0% {
        clip-path: inset(100% 0 0 0);
        opacity: 0;
    }

    100% {
        clip-path: inset(0 0 0 0);
        opacity: 1;
    }
}

@keyframes chartPulse {

    0%,
    100% {
        opacity: 0.9;
    }

    50% {
        opacity: 1;
    }
}

/* Earn Section Background Chart */
.earn-section::after {
    content: "";
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='100%25' height='100%25' viewBox='0 0 1320 800' preserveAspectRatio='none'%3E%3Cdefs%3E%3ClinearGradient id='barGrad1' x1='0%25' y1='100%25' x2='0%25' y2='0%25'%3E%3Cstop offset='0%25' style='stop-color:%23204C93;stop-opacity:0.25'/%3E%3Cstop offset='100%25' style='stop-color:%23204C93;stop-opacity:0.05'/%3E%3C/linearGradient%3E%3ClinearGradient id='barGrad2' x1='0%25' y1='100%25' x2='0%25' y2='0%25'%3E%3Cstop offset='0%25' style='stop-color:%23204C93;stop-opacity:0.22'/%3E%3Cstop offset='100%25' style='stop-color:%23204C93;stop-opacity:0.04'/%3E%3C/linearGradient%3E%3ClinearGradient id='barGrad3' x1='0%25' y1='100%25' x2='0%25' y2='0%25'%3E%3Cstop offset='0%25' style='stop-color:%23204C93;stop-opacity:0.20'/%3E%3Cstop offset='100%25' style='stop-color:%23204C93;stop-opacity:0.03'/%3E%3C/linearGradient%3E%3ClinearGradient id='barGrad4' x1='0%25' y1='100%25' x2='0%25' y2='0%25'%3E%3Cstop offset='0%25' style='stop-color:%23204C93;stop-opacity:0.18'/%3E%3Cstop offset='100%25' style='stop-color:%23204C93;stop-opacity:0.03'/%3E%3C/linearGradient%3E%3ClinearGradient id='barGrad5' x1='0%25' y1='100%25' x2='0%25' y2='0%25'%3E%3Cstop offset='0%25' style='stop-color:%23204C93;stop-opacity:0.16'/%3E%3Cstop offset='100%25' style='stop-color:%23204C93;stop-opacity:0.02'/%3E%3C/linearGradient%3E%3ClinearGradient id='barGrad6' x1='0%25' y1='100%25' x2='0%25' y2='0%25'%3E%3Cstop offset='0%25' style='stop-color:%23204C93;stop-opacity:0.14'/%3E%3Cstop offset='100%25' style='stop-color:%23204C93;stop-opacity:0.02'/%3E%3C/linearGradient%3E%3ClinearGradient id='barGrad7' x1='0%25' y1='100%25' x2='0%25' y2='0%25'%3E%3Cstop offset='0%25' style='stop-color:%23204C93;stop-opacity:0.12'/%3E%3Cstop offset='100%25' style='stop-color:%23204C93;stop-opacity:0.02'/%3E%3C/linearGradient%3E%3ClinearGradient id='barGrad8' x1='0%25' y1='100%25' x2='0%25' y2='0%25'%3E%3Cstop offset='0%25' style='stop-color:%23204C93;stop-opacity:0.10'/%3E%3Cstop offset='100%25' style='stop-color:%23204C93;stop-opacity:0.01'/%3E%3C/linearGradient%3E%3ClinearGradient id='barGrad9' x1='0%25' y1='100%25' x2='0%25' y2='0%25'%3E%3Cstop offset='0%25' style='stop-color:%23204C93;stop-opacity:0.08'/%3E%3Cstop offset='100%25' style='stop-color:%23204C93;stop-opacity:0.01'/%3E%3C/linearGradient%3E%3ClinearGradient id='barGrad10' x1='0%25' y1='100%25' x2='0%25' y2='0%25'%3E%3Cstop offset='0%25' style='stop-color:%23204C93;stop-opacity:0.06'/%3E%3Cstop offset='100%25' style='stop-color:%23204C93;stop-opacity:0.01'/%3E%3C/linearGradient%3E%3C/defs%3E%3Cg%3E%3Crect x='20' y='680' width='110' height='120' fill='url(%23barGrad10)' rx='8'/%3E%3Crect x='160' y='650' width='110' height='150' fill='url(%23barGrad9)' rx='8'/%3E%3Crect x='300' y='610' width='110' height='190' fill='url(%23barGrad8)' rx='8'/%3E%3Crect x='440' y='560' width='110' height='240' fill='url(%23barGrad7)' rx='8'/%3E%3Crect x='580' y='500' width='110' height='300' fill='url(%23barGrad6)' rx='8'/%3E%3Crect x='720' y='430' width='110' height='370' fill='url(%23barGrad5)' rx='8'/%3E%3Crect x='860' y='350' width='110' height='450' fill='url(%23barGrad4)' rx='8'/%3E%3Crect x='1000' y='260' width='110' height='540' fill='url(%23barGrad3)' rx='8'/%3E%3Crect x='1140' y='160' width='110' height='640' fill='url(%23barGrad2)' rx='8'/%3E%3Crect x='1280' y='50' width='110' height='750' fill='url(%23barGrad1)' rx='8'/%3E%3C/g%3E%3Cg opacity='0.15'%3E%3Cpolyline points='75,650 150,680 215,610 290,640 355,560 430,590 495,500 570,530 635,430 710,460 775,350 850,380 915,250 990,280 1055,140 1130,170 1195,20 1250,50' stroke='%23204C93' stroke-width='5' fill='none' stroke-linecap='round' stroke-linejoin='round' stroke-dasharray='12,8'/%3E%3Cpolygon points='1245,35 1265,50 1250,65' fill='%23204C93' opacity='0.2'/%3E%3C/g%3E%3C/svg%3E");
    background-size: 100% 100%;
    background-position: center bottom;
    background-repeat: no-repeat;
    z-index: 0;
    pointer-events: none;
    opacity: 0;
    animation: chartGrowUp 1.5s ease-out 0.3s forwards, chartPulse 3s ease-in-out 2s infinite;
}

/* Hide chart background on mobile and tablet */
@media (max-width: 1024px) {
    .earn-section::after {
        background-image: none !important;
        opacity: 0 !important;
    }
}

/* Ensure Pex Difference section content is above blurred background */
.pex-difference-section .container,
.pex-difference-section .row,
.pex-difference-section .col-lg-12,
.pex-difference-section .col-lg-6,
.pex-difference-section .col-lg-5,
.pex-difference-section .col-lg-7 {
    position: relative;
    z-index: 1;
}

/* Tooltip'u SVG'nin üzerinde göstermek için spesifik kural */
.company-map-section .il-isimleri {
    position: fixed;
    /* z-index: 9999; */
    /* Hover sorununu test etmek için geçici olarak devre dışı bırakıldı */
    pointer-events: none;
}

.svg-turkiye-haritasi svg {
    width: 100%;
    height: auto;
}

.il-isimleri {
    position: fixed;
    z-index: 2;
    pointer-events: none;
}

.il-isimleri div {
    font-family: 'Open Sans';
    display: inline-block;
    background: #1094F6;
    color: #fff;
    padding: 8px 16px;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    border-radius: 4px;
}

/* Diğer şehirlerin tooltip arka plan rengi site mavisi */
.il-isimleri div {
    background: #204C93;
    color: #fff;
}

/* Kırmızı şehirlerin tooltip'leri için özel stil */
.il-isimleri.kirmizi-tooltip div {
    background: #E41E26 !important;
    color: #fff !important;
}

#svg-turkiye-haritasi path {
    cursor: pointer;
    fill: white;
    stroke: #204C93;
    stroke-width: 0.7;
}

#svg-turkiye-haritasi path:hover {
    fill: #1094F6;
    stroke: #204C93;
    stroke-width: 0.7;
}

#guney-kibris {
    pointer-events: none;
}

/* Unified Headings */
h1,
h2,
h3 {
    font-family: var(--heading-font);
    letter-spacing: -0.02em;
    color: var(--primary-blue);
    margin: 0 0 12px 0;
    line-height: 1.2;
    font-weight: 800;
}

h1 {
    font-size: clamp(28px, 3.6vw, 44px);
}

h2 {
    font-size: clamp(22px, 2.6vw, 32px);
    font-weight: 700;
}

h3 {
    font-size: clamp(18px, 2.0vw, 26px);
    font-weight: 700;
}

/* Bootstrap responsive overrides */
.parallax-container .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.parallax-container .row {
    margin: 0;
}

.parallax-container .col-lg-6 {
    padding: 0 15px;
}

/* Mobile specific adjustments */
@media (max-width: 991.98px) {
    .parallax-container .col-lg-6 {
        margin-bottom: 2rem;
    }
}

@media (max-width: 767.98px) {
    .parallax-container .content {
        padding: 20px 15px;
    }

    .parallax-container h1 {
        font-size: 2rem;
    }

    .parallax-container h2 {
        font-size: 1.3rem;
    }
}

@media (max-width: 575.98px) {
    .parallax-container .content {
        padding: 15px 10px;
    }

    .parallax-container h1 {
        font-size: 1.8rem;
    }

    .parallax-container h2 {
        font-size: 1.1rem;
    }
}

/* Ana Buton Stili */
.ttm-btn {
    display: inline-block;
    vertical-align: middle;
    font-size: 16px;
    line-height: normal;
    padding: 11px 32px 11px 31px;
    background: transparent;
    border-width: 1px;
    border-style: solid;
    border-color: #eaeff5;
    position: relative;
    text-transform: uppercase;
    font-weight: 500;
    overflow: hidden;
    z-index: 1;
    transition: all 0.5s ease 0s;
}

/* Hover Efekti */
.ttm-btn:not(.btn-inline)::before {
    content: '';
    position: absolute;
    background-color: #343434;
    width: 0%;
    height: 100%;
    right: 0;
    left: auto;
    top: 0;
    -webkit-transition: .4s all ease-in-out;
    -o-transition: .4s all ease-in-out;
    transition: .4s all ease-in-out;
    z-index: -1;
}

.ttm-btn:not(.btn-inline):hover::before {
    right: auto;
    left: 0;
    width: 100%;
}

/* Buton Boyutu - Medium */
.ttm-btn.ttm-btn-size-md {
    font-size: 14px;
    padding: 14px 30px 14px 30px;
}

/* Buton Şekli - Kare */
.ttm-btn.ttm-btn-shape-square {
    border-radius: 0;
}

/* Buton Stili - Dolu */
.ttm-btn.ttm-btn-style-fill.ttm-btn-color-skincolor {
    background-color: var(--primary-blue);
    border-color: var(--primary-blue);
    color: var(--primary-white);
}

/* Hover Efekti */
.ttm-btn.ttm-btn-style-fill.ttm-btn-color-skincolor:hover {
    background-color: var(--primary-red);
    border-color: var(--primary-red);
    color: var(--primary-white);
}

/* Margin Sınıfları */
.margin_right20 {
    margin-right: 20px;
}

.margin_top15 {
    margin-top: 15px;
}

/* Career Plan Floating Items CSS */
.career-floating-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
    padding: 0 1rem;
}

.career-item {
    position: relative;
    animation: floatUp 0.8s ease-out forwards;
    opacity: 0;
    transform: translateY(30px);
}

.career-item:nth-child(1) {
    animation-delay: 0.1s;
}

.career-item:nth-child(2) {
    animation-delay: 0.2s;
}

.career-item:nth-child(3) {
    animation-delay: 0.3s;
}

.career-item:nth-child(4) {
    animation-delay: 0.4s;
}

.career-item:nth-child(5) {
    animation-delay: 0.5s;
}

.career-item:nth-child(6) {
    animation-delay: 0.6s;
}

.career-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(248, 250, 252, 0.95) 100%);
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.career-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    border-radius: 20px 20px 0 0;
}

.career-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 20px 60px rgba(32, 76, 147, 0.2);
    border-color: var(--primary-blue);
}

.career-header h3 {
    color: var(--primary-blue);
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.career-content {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.career-stat {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    padding: 1rem;
    background: rgba(32, 76, 147, 0.05);
    border-radius: 12px;
    border-left: 4px solid var(--primary-blue);
    transition: all 0.3s ease;
}

.stat-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.5rem;
}

.career-stat:hover {
    background: rgba(32, 76, 147, 0.1);
    transform: translateX(5px);
}

.stat-label {
    color: #64748b;
    font-weight: 500;
    font-size: 0.9rem;
}

.stat-value {
    color: var(--primary-blue);
    font-weight: 700;
    font-size: 1.1rem;
}

/* Progress Bar Styles */
.progress-container {
    width: 100%;
    height: 12px;
    background: rgba(32, 76, 147, 0.1);
    border-radius: 10px;
    overflow: hidden;
    position: relative;
    display: flex;
    align-items: center;
}

.progress-bar {
    height: 100%;
    background: var(--primary-blue);
    border-radius: 10px;
    transition: width 1.5s ease-in-out;
    position: relative;
    overflow: hidden;
}

.commission-bar {
    background: var(--primary-red);
}

.progress-text {
    position: absolute;
    right: 8px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--primary-blue);
    font-weight: 700;
    font-size: 0.8rem;
    z-index: 2;
    text-shadow: 0 0 3px rgba(255, 255, 255, 0.8);
}

.progress-bar::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    animation: shimmer 2s infinite;
}

@keyframes shimmer {
    0% {
        transform: translateX(-100%);
    }

    100% {
        transform: translateX(100%);
    }
}

/* Career Info Cards */
.career-info-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
    margin-top: 4rem;
    padding: 0 1rem;
}

.info-card {
    background: linear-gradient(135deg, rgba(32, 76, 147, 0.1) 0%, rgba(227, 242, 253, 0.1) 100%);
    border: 2px solid rgba(32, 76, 147, 0.2);
    border-radius: 20px;
    padding: 2.5rem;
    text-align: center;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.info-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-blue), var(--light-blue));
    border-radius: 20px 20px 0 0;
}

.info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(32, 76, 147, 0.15);
    border-color: var(--primary-blue);
}

.info-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: block;
}

.info-card h4 {
    color: var(--primary-blue);
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.info-card p {
    color: #475569;
    line-height: 1.6;
    font-size: 1rem;
}

/* Animations */
@keyframes floatUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

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

/* Responsive Design */
@media (max-width: 768px) {
    .career-floating-container {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin: 2rem 0;
    }

    .career-card {
        padding: 1.5rem;
    }

    .career-header h3 {
        font-size: 1.2rem;
    }

    .career-info-cards {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-top: 3rem;
    }

    .info-card {
        padding: 2rem;
    }

    .info-card h4 {
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    .career-floating-container {
        gap: 1rem;
    }

    .career-card {
        padding: 1.2rem;
    }

    .career-header h3 {
        font-size: 1rem;
    }

    .career-stat {
        padding: 0.6rem 0.8rem;
    }

    .stat-label {
        font-size: 0.8rem;
    }

    .stat-value {
        font-size: 1rem;
    }

    .info-card {
        padding: 1.5rem;
    }

    .info-icon {
        font-size: 2.5rem;
    }
}

/* Belirtilen şehirlerin kırmızı renkte görünmesi için stiller */
#kastamonu path,
#sakarya path,
#kocaeli path,
#istanbul path,
#istanbul-asya path,
#istanbul-avrupa path,
#izmir path,
#manisa path,
#bursa path,
#bilecik path,
#denizli path,
#usak path,
#mersin path,
#diyarbakir path,
#bitlis path,
#kirsehir path,
#bayburt path {
    fill: #E41E26 !important;
    stroke: #204C93 !important;
    stroke-width: 0.7;
}

/* Bu şehirlerin hover efektlerini kaldır */
#kastamonu:hover path,
#sakarya:hover path,
#kocaeli:hover path,
#istanbul:hover path,
#istanbul-asya:hover path,
#istanbul-avrupa:hover path,
#izmir:hover path,
#manisa:hover path,
#bursa:hover path,
#bilecik:hover path,
#denizli:hover path,
#usak:hover path,
#mersin:hover path,
#diyarbakir:hover path,
#bitlis:hover path,
#kirsehir:hover path,
#bayburt:hover path {
    fill: #E41E26 !important;
    stroke: #204C93 !important;
    stroke-width: 0.7;
}

/* Geri kalan tüm şehirlerin beyaz renkte görünmesi */
#turkiye g:not(#kastamonu):not(#sakarya):not(#kocaeli):not(#istanbul):not(#istanbul-asya):not(#istanbul-avrupa):not(#izmir):not(#manisa):not(#bursa):not(#bilecik):not(#denizli):not(#usak):not(#mersin):not(#diyarbakir):not(#bitlis):not(#kirsehir):not(#bayburt) path {
    fill: #FFFFFF !important;
    stroke: #204C93 !important;
    stroke-width: 0.7;
}

/* Geri kalan şehirlerin hover efektlerini de beyaz tut */
#turkiye g:not(#kastamonu):not(#sakarya):not(#kocaeli):not(#istanbul):not(#istanbul-asya):not(#istanbul-avrupa):not(#izmir):not(#manisa):not(#bursa):not(#bilecik):not(#denizli):not(#usak):not(#mersin):not(#diyarbakir):not(#bitlis):not(#kirsehir):not(#bayburt):hover path {
    fill: #FFFFFF !important;
    stroke: #204C93 !important;
    stroke-width: 0.7;
}

/* Kuzey Kıbrıs'ı beyaz renkte göster */
#kuzey-kibris path {
    fill: #FFFFFF !important;
    stroke: #204C93 !important;
    stroke-width: 0.7;
}

/* Kuzey Kıbrıs hover efektini de beyaz tut */
#kuzey-kibris:hover path {
    fill: #FFFFFF !important;
    stroke: #204C93 !important;
    stroke-width: 0.7;
}

/* Güney Kıbrıs'ı da beyaz renkte göster */
#guney-kibris path {
    fill: #FFFFFF !important;
    stroke: #204C93 !important;
    stroke-width: 0.7;
}

/* Güney Kıbrıs hover efektini de beyaz tut */
#guney-kibris:hover path {
    fill: #FFFFFF !important;
    stroke: #204C93 !important;
    stroke-width: 0.7;
}

/* Hiyerarşi Diyagramı Stilleri */
.hierarchy-diagram {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 500px;
    padding: 30px 15px;
    border-radius: 15px;
    margin: 15px 0;
    position: relative;
}

/* Badge Tasarımı 
        .brand_badge {
            position: absolute;
            background: linear-gradient(135deg, var(--primary-red), #c71820);
            color: white;
            padding: 0 30px;
            border-radius: 30px;
            font-weight: bold;
            font-size: 14px;
            box-shadow: 0 4px 15px rgba(228, 30, 38, 0.3);
            z-index: 10;
            display: flex;
            align-items: center;
            top: 50px;
        }

        .brand_badge::before {
            content: '';
            width: 60px;
            height: 50px;
            background-image: url('image/beyaz-2.webp');
            background-size: contain;
            background-repeat: no-repeat;
            background-position: center;
        }
*/
.percentage-lines {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 35px;
    padding-right: 20px;
}

.line-item {
    display: flex;
    align-items: center;
    gap: 15px;
    position: relative;
}

.line-dot {
    width: 18px;
    height: 18px;
    background: var(--primary-red);
    border-radius: 50%;
    flex-shrink: 0;
}

.line-label {
    font-weight: bold;
    color: #204C93;
    font-size: 20px;
    min-width: 80px;
    position: relative;
    padding-bottom: 10px;
}

.line-label::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    height: 3px;
    background: var(--primary-red);
}

/* Her line için farklı uzunluk - 1.Line en kısa, 7.Line en uzun */
.line-item:nth-child(1) .line-label::after {
    width: 60px;
}

.line-item:nth-child(2) .line-label::after {
    width: 80px;
}

.line-item:nth-child(3) .line-label::after {
    width: 100px;
}

.line-item:nth-child(4) .line-label::after {
    width: 120px;
}

.line-item:nth-child(5) .line-label::after {
    width: 140px;
}

.line-item:nth-child(6) .line-label::after {
    width: 160px;
}

.line-item:nth-child(7) .line-label::after {
    width: 180px;
}

.gradient-line {
    width: 82%;
    height: 4px;
    background: linear-gradient(135deg, var(--primary-red), var(--primary-blue));
    margin: 0;
    border-radius: 2px;
    margin-bottom: 0px;
}

.gradient-line-map {
    width: 45%;
    height: 4px;
    background: linear-gradient(135deg, var(--primary-red), var(--primary-blue));
    margin: 0 auto;
    border-radius: 2px;
    margin-bottom: 20px;
}

.percentage-oval {
    background: #204C93;
    color: white;
    padding: 12px 20px;
    border-radius: 25px;
    font-weight: bold;
    font-size: 18px;
    min-width: 70px;
    text-align: center;
}

/* Merdiven efekti için her line-item'a farklı margin-left */
.line-item:nth-child(1) .percentage-oval {
    margin-left: 0px;
}

.line-item:nth-child(2) .percentage-oval {
    margin-left: 20px;
}

.line-item:nth-child(3) .percentage-oval {
    margin-left: 40px;
}

.line-item:nth-child(4) .percentage-oval {
    margin-left: 60px;
}

.line-item:nth-child(5) .percentage-oval {
    margin-left: 80px;
}

.line-item:nth-child(6) .percentage-oval {
    margin-left: 100px;
}

.line-item:nth-child(7) .percentage-oval {
    margin-left: 120px;
}

.central-figure {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.main-person-icon {
    display: flex;
    align-items: center;
    justify-content: center;
}

.main-person-icon svg {
    width: 50px;
    height: 50px;
}

/* Yeni class adları için aynı stiller */
.center-figure {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.leader-icon {
    display: flex;
    align-items: center;
    justify-content: center;
}

.leader-icon svg {
    width: 50px;
    height: 50px;
}

.hierarchy-figures {
    position: relative;
    min-height: 450px;
}

.figure-group {
    display: flex;
    align-items: center;
    gap: 5px;
    position: absolute;
    transition: all 0.5s ease-in-out;
}

.figure-group[data-line="1"] {
    top: 280px;
    left: 10px;
}

.figure-group[data-line="2"] {
    top: 150px;
    left: 50%;
    transform: translateX(-50%);
}

.figure-group[data-line="3"] {
    top: 20px;
    right: 0;
}

.main-figure {
    width: 100px;
    height: 100px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Yeni class adları için aynı stiller */
.team-figures {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 30px;
    padding-left: 20px;
    align-items: flex-start;
}

.team-group {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.team-group[data-line="1"] {
    margin-left: 0;
}

.team-group[data-line="2"] {
    margin-left: 200px;
}

.team-figure {
    width: 110px;
    height: 110px;
    position: relative;
}

.team-label {
    font-size: 18px;
    font-weight: bold;
    text-align: center;
    color: var(--primary-blue);
    border-radius: 26px;
    border: 2px solid var(--primary-blue);
    padding: 14px;
    color: var(--primary-blue);
}


.figure-number {
    color: white;
    font-weight: bold;
    font-size: 28px;
}

.sub-figures {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.sub-figure {
    width: 45px;
    height: 45px;
    border-radius: 50%;
}


/* Responsive tasarım */
@media (max-width: 1024px) {
    .hierarchy-diagram {
        min-height: 400px;
        padding: 20px 10px;
    }

    .team-figures {
        gap: 20px;
        padding-left: 10px;
    }

    .team-group[data-line="2"] {
        margin-left: 150px;
    }

    .team-figure {
        width: 90px;
        height: 90px;
    }

    .team-label {
        font-size: 16px;
        padding: 12px;
    }

    .advantages-list {
        width: 85%;
        padding: 20px;
    }

    .team-figures-title {
        font-size: clamp(28px, 3vw, 40px);
        margin-bottom: 15px;
    }

    .advantages-title {
        font-size: clamp(20px, 2.5vw, 30px);
    }

    .advantage-item p {
        font-size: 18px;
        padding: 10px 16px;
    }

    .advantage-item-team p {
        font-size: 18px;
        padding: 10px 16px;
    }

    .advantage-step-2 {
        margin-left: 15px;
    }

    .advantage-step-3 {
        margin-left: 30px;
    }

    .advantage-step-4 {
        margin-left: 45px;
    }

    .advantage-step-5 {
        margin-left: 60px;
    }

    .advantage-step-6 {
        margin-left: 75px;
    }

    .own-team-section .container {
        padding-left: 10px;
        padding-right: 10px;
    }

    .own-team-section {
        padding: 30px 0;
    }
}

@media (max-width: 768px) {
    .hierarchy-diagram {
        flex-direction: column;
        gap: 15px;
        min-height: auto;
        padding: 15px 5px;
    }

    .percentage-lines,
    .hierarchy-figures {
        flex: none;
        width: 100%;
    }

    .figure-group {
        justify-content: center;
    }

    /* Team figures responsive */
    .team-figures {
        flex: none;
        width: 100%;
        align-items: center;
        padding-left: 0;
        gap: 15px;
    }

    .team-group {
        justify-content: center;
        align-items: center;
    }

    .team-group[data-line="1"],
    .team-group[data-line="2"],
    .team-group[data-line="3"] {
        margin-left: 0 !important;
    }

    .team-figure {
        width: 80px;
        height: 80px;
    }

    .team-label {
        font-size: 14px;
        padding: 10px 12px;
        max-width: 200px;
    }

    .advantages-list {
        width: 100%;
        padding: 10px 5px;
        margin: 0;
    }

    .advantages-list-right-only {
        align-items: center;
    }

    .own-team .col-lg-7,
    .own-team .col-lg-5 {
        padding-left: 5px;
        padding-right: 5px;
    }

    .hierarchy-diagram {
        margin: 0;
    }

    .team-figures-title {
        font-size: clamp(32px, 6vw, 42px);
        margin-bottom: 8px;
        text-align: center;
    }

    .advantages-title {
        font-size: 26px;
        margin-bottom: 10px;
        text-align: center;
    }

    .gradient-line {
        width: 200px;
        margin: 0 0 10px;
    }

    .advantage-step-1,
    .advantage-step-2,
    .advantage-step-3,
    .advantage-step-4,
    .advantage-step-5,
    .advantage-step-6 {
        margin-left: 0px !important;
    }

    .advantage-item {
        margin-bottom: 8px;
    }

    .advantage-item-team {
        margin-bottom: 8px;
    }

    .advantage-item p {
        font-size: 15px;
        padding: 6px 10px;
    }

    .advantage-item-team p {
        font-size: 15px;
        padding: 4px 4px;
    }

    .advantage-item p::before {
        width: 22px;
        height: 22px;
        font-size: 13px;
        flex: 0 0 22px;
    }

    .advantage-item-team p::before {
        width: 22px;
        height: 22px;
        font-size: 13px;
        flex: 0 0 22px;
    }

    .own-team {
        flex-direction: column;
    }

    .own-team-section .container {
        padding-left: 25px;
        padding-right: 25px;
    }

    .own-team-section {
        padding: 20px 0;
    }

    /* Own Team Section Mobile Improvements */
    .own-team-section {
        overflow-x: hidden;
    }

    .own-team-section .container {
        max-width: 100%;
        padding-left: 30px;
        padding-right: 30px;
    }

    .own-team-section .row {
        margin-left: 0;
        margin-right: 0;
    }

    .own-team-section .col-lg-5,
    .own-team-section .col-lg-7 {
        padding-left: 15px;
        padding-right: 15px;
        margin-bottom: 20px;
    }

    .own-team-section .advantages-list {
        width: 100%;
        max-width: 100%;
        padding: 15px;
    }

    .own-team-section .advantage-item-team {
        width: 100%;
        margin-left: 0;
        margin-right: 0;
    }

    .own-team-section .advantage-item-team p {
        font-size: 14px;
        padding: 8px 6px;
        text-align: center;
        word-wrap: break-word;
    }
}

@media (max-width: 480px) {
    .hierarchy-diagram {
        padding: 5px 2px;
        gap: 10px;
    }

    .team-figures {
        gap: 8px;
    }

    .team-figure {
        width: 70px;
        height: 70px;
    }

    .team-label {
        font-size: 12px;
        padding: 8px 10px;
        max-width: 180px;
    }

    .advantages-list {
        padding: 8px 3px;
        margin: 0;
    }

    .own-team .col-lg-7,
    .own-team .col-lg-5 {
        padding-left: 3px;
        padding-right: 3px;
    }

    .hierarchy-diagram {
        margin: 0;
    }

    .team-figures-title {
        font-size: clamp(28px, 6vw, 36px);
        margin-bottom: 6px;
        text-align: center;
    }

    .advantages-title {
        font-size: 23px;
        margin-bottom: 8px;
        text-align: center;
    }

    .advantage-item {
        margin-bottom: 6px;
    }

    .advantage-item-team {
        margin-bottom: 6px;
    }

    .advantage-item p {
        font-size: 13px;
        padding: 5px 8px;
    }

    .advantage-item-team p {
        font-size: 13px;
        padding: 3px 3px;
    }

    .advantage-item p::before {
        width: 18px;
        height: 18px;
        font-size: 10px;
        flex: 0 0 18px;
    }

    .advantage-item-team p::before {
        width: 18px;
        height: 18px;
        font-size: 10px;
        flex: 0 0 18px;
    }

    .gradient-line {
        width: 150px;
        height: 2px;
        margin: 0 0 8px;
    }

    .own-team-section .container {
        padding-left: 20px;
        padding-right: 20px;
    }

    .own-team-section {
        padding: 15px 0;
    }

    /* Own Team Section Extra Small Mobile Improvements */
    .own-team-section {
        overflow-x: hidden;
    }

    .own-team-section .container {
        max-width: 100%;
        padding-left: 25px;
        padding-right: 25px;
    }

    .own-team-section .row {
        margin-left: 0;
        margin-right: 0;
    }

    .own-team-section .col-lg-5,
    .own-team-section .col-lg-7 {
        padding-left: 12px;
        padding-right: 12px;
        margin-bottom: 15px;
    }

    .own-team-section .advantages-list {
        width: 100%;
        max-width: 100%;
        padding: 12px;
    }

    .own-team-section .advantage-item-team {
        width: 100%;
        margin-left: 0;
        margin-right: 0;
    }

    .own-team-section .advantage-item-team p {
        font-size: 12px;
        padding: 6px 4px;
        text-align: center;
        word-wrap: break-word;
        line-height: 1.3;
    }

    .own-team-section .team-figures-title {
        font-size: clamp(24px, 5vw, 30px);
        margin-bottom: 5px;
    }

    .own-team-section .advantages-title {
        font-size: 22px;
        margin-bottom: 8px;
    }
}

/* Working Area Section Scroll Efekti - Tek Kod Bloğu */

/* Ana Background Image ve Fixed Attachment */
.bg-img1 {
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

/* Working Area Section Vertical Center */
.working-area-section {
    display: flex;
    align-items: center;
    min-height: 100vh;
    color: white;
}

.working-area-section h3,
.working-area-section h2,
.working-area-section p {
    color: black !important;
}

.working-area-section .ttm-btn {
    color: white !important;
    border: 2px solid white !important;
}

.working-area-section .ttm-btn:hover {
    background-color: white !important;
    color: #204C93 !important;
    border-color: white !important;
}

.working-area-section .container {
    display: flex;
    align-items: center;
    min-height: 100vh;
}

.working-area-section .row {
    display: flex;
    align-items: center;
    min-height: 100vh;
}

.working-area-section .col-lg-12 {
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Responsive Media Queries */
/* Tablet */
@media (max-width: 991px) {
    .working-area-section {
        min-height: 70vh;
        max-height: 80vh;
    }

    .working-area-section .container {
        min-height: 70vh;
        max-height: 80vh;
    }

    .working-area-section .row {
        min-height: 70vh;
        max-height: 80vh;
    }

    .working-area-section .col-lg-12 {
        min-height: 70vh;
        max-height: 80vh;
    }
}

/* Mobile */
@media (max-width: 767px) {
    .working-area-section {
        min-height: 65vh;
        max-height: 80vh;
    }

    .working-area-section .container {
        min-height: 65vh;
        max-height: 80vh;
    }

    .working-area-section .row {
        min-height: 65vh;
        max-height: 80vh;
    }

    .working-area-section .col-lg-12 {
        min-height: 65vh;
        max-height: 80vh;
    }

    .working-area-section .section-title h2.title {
        font-family: var(--heading-font);
        font-size: clamp(22px, 2.6vw, 32px);
        line-height: 1.25;
        font-weight: 700;
        letter-spacing: -0.01em;
    }

    .working-area-section .section-title .title-desc p {
        font-size: clamp(13px, 1.2vw, 16px);
        line-height: 1.6;
    }
}

/* Small Mobile */
@media (max-width: 575px) {
    .working-area-section {
        min-height: 55vh;
        max-height: 70vh;
    }

    .working-area-section .container {
        min-height: 55vh;
        max-height: 70vh;
    }

    .working-area-section .row {
        min-height: 55vh;
        max-height: 70vh;
    }

    .working-area-section .col-lg-12 {
        min-height: 55vh;
        max-height: 70vh;
    }

    .working-area-section .section-title h2.title {
        font-family: var(--heading-font);
        font-size: clamp(20px, 2.4vw, 28px);
        line-height: 1.25;
        font-weight: 700;
        letter-spacing: -0.01em;
    }

    .working-area-section .section-title .title-desc p {
        font-size: clamp(12px, 1.1vw, 15px);
        line-height: 1.6;
    }
}

/* Benefits List Staircase Styles */
.benefits-list {
    padding: 20px;
}

.benefits-title {
    font-family: var(--heading-font);
    color: white;
    font-weight: 800;
    letter-spacing: -0.01em;
    font-size: clamp(22px, 2.6vw, 32px);
    margin-bottom: 30px;
}

.benefit-item {
    margin-bottom: 15px;
    transition: all 0.3s ease;
}

.benefit-item p {
    color: white;
    font-size: 18px;
    margin: 0;
    padding: 10px 15px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    border-left: 4px solid #E41E26;
}

.benefit-item:hover {
    transform: translateX(10px);
}

.benefit-item:hover p {
    background: rgba(255, 255, 255, 0.2);
}

/* Staircase positioning */
.benefit-step-1 {
    margin-left: 0px;
}

.benefit-step-2 {
    margin-left: 20px;
}

.benefit-step-3 {
    margin-left: 40px;
}

.benefit-step-4 {
    margin-left: 60px;
}

.benefit-step-5 {
    margin-left: 80px;
}

.benefit-step-6 {
    margin-left: 100px;
}

/* Yeni class adları için aynı stiller */
.advantages-list {
    padding: 25px;
    width: 75%;
}

.advantages-list-right-only {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.team-figures-title {
    font-family: var(--heading-font);
    color: var(--primary-blue);
    font-weight: 800;
    letter-spacing: -0.01em;
    font-size: clamp(32px, 3.5vw, 48px);
    margin-bottom: 20px;
    text-align: left;
}

.advantages-title {
    font-family: var(--heading-font);
    color: var(--primary-blue);
    font-weight: 800;
    letter-spacing: -0.01em;
    font-size: clamp(24px, 2.8vw, 36px);
    margin-bottom: 30px;
}

.hero-title {
    font-size: clamp(28px, 4vw, 42px);
}


/* Pex Difference Item Styles - Separate from advantage-item */
.pex-difference-item {
    position: relative;
    overflow: hidden;
    margin-bottom: 18px;
}

.pex-difference-item.white-overlay {
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(255, 255, 255, 0.3) !important;
}

.pex-difference-item.white-overlay::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 0.85));
}

.pex-difference-item.white-overlay>* {
    position: relative;
    z-index: 1;
}

.pex-difference-item.slide-in-left:hover,
.pex-difference-item.slide-in-right:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 16px 48px rgba(32, 76, 147, 0.25);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.pex-difference-item .advantage-icon {
    background: linear-gradient(135deg, #007bff, #0056b3);
    color: white !important;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(0, 123, 255, 0.3);
    transition: all 0.3s ease;
}

.pex-difference-item:hover .advantage-icon {
    transform: rotate(360deg) scale(1.1);
    box-shadow: 0 6px 20px rgba(0, 123, 255, 0.5);
}

.pex-difference-item .brand-badge__logo {
    transition: all 0.3s ease;
    filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.1));
}

.pex-difference-item:hover .brand-badge__logo {
    transform: scale(1.1);
    filter: drop-shadow(0 4px 12px rgba(32, 76, 147, 0.3));
}

.advantage-item {
    margin-bottom: 18px;
    transition: all 0.3s ease;
    width: 100%;
}

.advantage-item-team {
    margin-bottom: 18px;
    transition: all 0.3s ease;
    width: 100%;
}

.advantage-item p {
    color: var(--primary-blue);
    font-size: 20px;
    margin: 0;
    padding: 12px 18px;
    background: transparent;
    border-radius: 8px;
    border: 2px solid var(--primary-blue);
    display: flex;
    align-items: center;
    gap: 10px;
    width: 100%;
    box-sizing: border-box;
}

.advantage-item-team p {
    color: var(--primary-blue);
    font-size: 20px;
    margin: 0;
    padding: 12px 18px;
    background: transparent;
    border-radius: 8px;
    border: 2px solid var(--primary-blue);
    display: flex;
    align-items: center;
    gap: 10px;
    width: 100%;
    box-sizing: border-box;
}

.advantage-item p::before {
    content: "✓";
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: var(--primary-blue);
    color: #ffffff;
    font-weight: bold;
    font-size: 16px;
    line-height: 1;
    flex: 0 0 28px;
}

.advantage-item-team p::before {
    content: "✓";
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: var(--primary-blue);
    color: #ffffff;
    font-weight: bold;
    font-size: 16px;
    line-height: 1;
    flex: 0 0 28px;
}

.advantage-item:hover {
    transform: translateX(10px);
}

.advantage-item-team:hover {
    transform: translateX(10px);
}


/* Staircase positioning */
.advantage-step-1 {
    margin-left: 0px;
}

.advantage-step-2 {
    margin-left: 20px;
}

.advantage-step-3 {
    margin-left: 40px;
}

.advantage-step-4 {
    margin-left: 60px;
}

.advantage-step-5 {
    margin-left: 80px;
}

.advantage-step-6 {
    margin-left: 100px;
}

/* Responsive adjustments */
@media (max-width: 768px) {

    .benefit-step-1,
    .benefit-step-2,
    .benefit-step-3,
    .benefit-step-4,
    .benefit-step-5,
    .benefit-step-6 {
        margin-left: 0px;
    }

    .benefits-title {
        font-size: 24px;
    }

    .benefit-item p {
        font-size: 16px;
    }

    /* Yeni class adları için responsive stiller */
    .advantage-step-1,
    .advantage-step-2,
    .advantage-step-3,
    .advantage-step-4,
    .advantage-step-5,
    .advantage-step-6 {
        margin-left: 0px;
    }

    .advantages-title {
        font-size: 26px;
    }

    .advantage-item p {
        font-size: 18px;
    }
}

/* Brand badge styling */
.brand-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    background: linear-gradient(135deg, #204C93 0%, #E41E26 100%);
    padding: 0 12px;
    border-radius: 999px;
    box-shadow: 0 4px 15px rgba(32, 76, 147, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.2);
    width: 100%;
    transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.8s ease;
}

.brand-badge:hover {
    transform: translateY(-20px) scale(1.08) rotate(3deg);
    box-shadow: 0 20px 40px rgba(37, 99, 235, 0.3), 0 8px 16px rgba(0, 0, 0, 0.1);
}

.brand-badge__logo {
    height: 56px;
    width: auto;
    display: block;
}

.brand-badge_logo {
    height: 60px;
    width: 90px;
    display: block;
}

/* Pex difference item içindeki logo stilleri */
.pex-difference-item .brand-badge__logo {
    height: 45px;
    width: auto;
    margin: 0 15px;
    opacity: 0.9;
}

.brand-badge__divider {
    width: 1px;
    height: 36px;
    background: rgba(255, 255, 255, 0.35);
}

.brand-badge__text {
    color: #fff;
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 0.6px;
    line-height: 1.2;
    text-transform: uppercase;
}

@media (max-width: 768px) {
    .brand-badge {
        padding: 0 10px;
        gap: 8px;
    }

    .brand-badge__logo {
        height: 40px;
    }

    .brand-badge__divider {
        height: 28px;
    }

    .brand-badge__text {
        font-size: 12px;
    }

    /* Mobilde pex-difference-item'lerin taşmamasını sağla */
    .pex-difference-item {
        max-width: 100% !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        flex-direction: row !important;
        flex-wrap: wrap !important;
        gap: 15px !important;
        justify-content: space-between !important;
    }

    /* Mobilde icon ve logo üst satırda yan yana */
    .pex-difference-item .advantage-icon {
        order: 1;
        margin: 0 !important;
        flex-shrink: 0;
    }

    .pex-difference-item .brand-badge_logo {
        order: 2;
        margin: 0 !important;
        height: 40px !important;
        width: auto !important;
        flex-shrink: 0;
    }

    /* Mobilde content alt satırda, tam genişlikte */
    .pex-difference-item .advantage-content {
        order: 3;
        width: 100% !important;
        flex-basis: 100% !important;
        text-align: left !important;
    }
}

.own-team-section {
    padding: 40px 0;
}

/* Working area logo için mobil düzenleme */
@media (max-width: 768px) {
    .working-area-section img[src="image/logo.webp"] {
        max-width: 90% !important;
        width: 100%;
    }
}

@media (max-width: 480px) {
    .working-area-section img[src="image/logo.webp"] {
        max-width: 95% !important;
    }
}

/* ===== EARN SECTION MOBILE RESPONSIVE STYLES ===== */

/* Tablet and smaller screens */
@media (max-width: 1024px) {
    .earn-section {
        padding: 40px 0;
    }

    .hierarchy-diagram {
        min-height: 400px;
        padding: 20px 10px;
    }

    .percentage-lines {
        padding-right: 15px;
        gap: 25px;
    }

    .hierarchy-figures {
        padding-left: 15px;
        gap: 25px;
    }

    .main-person-icon img {
        max-width: 250px;
    }
}

/* Mobile landscape and small tablets */
@media (max-width: 768px) {
    .earn-section {
        padding: 30px 0;
    }

    .earn-section .container {
        padding-left: 35px;
        padding-right: 35px;
    }

    .hierarchy-diagram {
        flex-direction: column;
        gap: 20px;
        min-height: auto;
        padding: 20px 10px;
    }

    .percentage-lines,
    .hierarchy-figures {
        flex: none;
        width: 100%;
        padding: 0;
    }

    .percentage-lines {
        order: 1;
        margin-bottom: 20px;
    }

    .central-figure {
        order: 2;
        margin: 20px 0;
    }

    .hierarchy-figures {
        order: 3;
    }

    .main-person-icon img {
        max-width: 200px;
    }

    .figure-group {
        justify-content: center;
        margin-bottom: 15px;
    }

    .main-figure {
        width: 80px;
        height: 80px;
    }

    .sub-figures {
        gap: 8px;
    }

    .sub-figure {
        width: 45px;
        height: 45px;
    }

    .slide-from-right-content h3 {
        font-size: 1.5rem !important;
        text-align: center;
        margin-bottom: 15px;
    }

    .slide-from-right-content p {
        font-size: 1rem !important;
        text-align: center;
        line-height: 1.5;
    }
}

/* Mobile portrait */
@media (max-width: 480px) {
    .earn-section {
        padding: 20px 0;
    }

    .earn-section .container {
        padding-left: 30px;
        padding-right: 30px;
    }

    .hierarchy-diagram {
        padding: 15px 5px;
        gap: 15px;
    }

    .percentage-lines {
        gap: 20px;
        margin-bottom: 15px;
    }

    .line-item {
        gap: 10px;
    }

    .line-dot {
        width: 14px;
        height: 14px;
    }
}

/* Mobil Uyumlu Parallax Arka Plan Düzeltmesi */
.parallax-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: -1;
}

.working-area-section {
    position: relative;
    isolation: isolate;
    min-height: 100vh;
}

/* Genel Parallax Sarmalayıcı Stilleri */
#home-top,
#home-bottom {
    position: relative;
}

/* Üst Bölüm Arka Planı */
.parallax-background-top {
    background-image: url('image/home_top.webp');
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: -1;
}

/* Alt Bölüm Arka Planı */
.parallax-background-bottom {
    background-image: url('image/home_bottom.webp');
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: -1;
    clip-path: inset(100% 0 0 0);
    transition: clip-path 0.3s ease-out;
}

/* Hover Problemi Çözümü: İçerik bölümlerini tıklanabilir hale getir */
#page-content {
    position: relative;
    z-index: 1;
}