/* ---------------------------------------------------
   HOME — NEWS SECTION
   (Styles moved to news-section.css for shared use)
--------------------------------------------------- */


/* ---------------------------------------------------
   HOME — CERTIFICATED SECTION
   (Styles moved to certificates.css for shared use)
--------------------------------------------------- */


/* ---------------------------------------------------
   HOME — SUSTAINABILITY SECTION (DESKTOP ONLY)
--------------------------------------------------- */

.home-sustainability {
    position: relative;
    overflow: hidden;
    padding: 90px 0 30px;
    color: #fff;
    min-height: calc(100vh - var(--header-height));
    max-height: calc(100vh - var(--header-height));
    box-sizing: border-box;
}

.home-sustainability .container {
    height: 100%;
    position: absolute;
    top: 0px; gap: 30px;
    padding: 90px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.home-sustainability .bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: calc(100% + 300px);
    z-index: 0;
    overflow: hidden;
}

.sustainability-bg-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    object-fit: cover;
    z-index: -1;
}


/* -----------------------------------------------
   TOP PART: Title + Text
----------------------------------------------- */

.home-sustainability-top {
    display: flex;
    justify-content: flex-end;
    align-items: flex-end;
    flex-direction: column;
    position: relative;
    z-index: 1;
    gap: 30px;
}

.sustainability-title {
    font-size: 72px;
    font-weight: 300;
    line-height: 1.0;
    color: #ffffff;
}

.sustainability-text {
    width: 40%; max-width: 640px;
}

.sustainability-text p {
    font-size: 17px;
    line-height: 1.55; text-align: right;
    color: rgba(255, 255, 255, 0.85);
}


/* -----------------------------------------------
   BOTTOM PART: 3 CARDS + CTA BUTTON
----------------------------------------------- */

.home-sustainability-bottom {
    display: flex;
    justify-content: end;
    align-items: flex-end;
    position: relative;
    flex-direction: column;
    gap: 30px;
    z-index: 1;
}


/* Cards container */

.sustainability-cards {
    display: flex;
    gap: 30px; max-width: 640px;
}


/* Single Card */

.sustainability-card {
    position: relative;
    width: 230px;
    padding: 30px 25px 25px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.18);
    text-align: center;
    transition: 0.25s ease;
    overflow: hidden;
    /* gradient taşmaması için */
}


/* Gradient border için pseudo element */

.sustainability-card::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 12px;
    padding: 2px;
    /* border kalınlığı */
    background: linear-gradient(90deg, #FCE75A, #F9D835, #F7C801);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.25s ease;
}


/* Hover sırasında gradient border aktif */

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


/* Hover sırasında arka plan biraz güçlensin */

.sustainability-card:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0);
}


/* Card Logo */

.sustainability-card-logo {
    width: 100%;
    height: 140px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.sustainability-card-logo img {
    height: 80px;
    display: block;
    object-fit: contain;
}


/* Card Title */

.sustainability-card-title {
    font-size: 16px;
    color: #fff;
    line-height: 1.4;
}


/* -----------------------------------------------
   CTA BUTTON (RIGHT SIDE)
----------------------------------------------- */

.sustainability-cta {
    display: flex;
    align-items: center;
}

.sustainability-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 30px;
    background: #F4D324;
    /* Sarı */
    color: #000;
    border-radius: 4px;
    font-size: 16px;
    position: relative;
    transition: 0.2s ease;
}

.sustainability-cta-btn span {
    position: relative;
}

.sustainability-cta-btn::before {
    position: absolute;
    top: 0;
    left: 0;
    width: 0%;
    content: '';
    height: 100%;
    transition: .3s all linear;
    background: #000;
}

.sustainability-cta-btn:hover::before {
    width: 100%;
}

.sustainability-cta-btn:hover span {
    color: #fff;
}

.sustainability-cta-arrow {
    font-size: 20px;
    font-weight: 400;
}


/* ---------------------------------------------------
   HOME — GLOBAL MAP SECTION (DESKTOP ONLY)
--------------------------------------------------- */

.home-global-map {
    position: relative;
    background: #000;
    padding: 0;
    min-height: calc(100vh - var(--header-height));
    height: auto;
    overflow: hidden;
    display: flex;
    align-items: flex-end;
}


/* Video Background */

.global-map-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}


/* Text Overlay */

.global-map-text {
    position: relative;
    z-index: 2;
    padding-bottom: 60px;
    color: #F8F8F8;
    font-family: Outfit;
    font-size: 72px;
    font-style: normal;
    font-weight: 200;
    line-height: 80px;
}


/* Noktaların dolaşacağı katman */

.global-map-dots {
    position: absolute;
    inset: 0;
    pointer-events: none;
}


/* Tek nokta */

.global-map-dot {
    position: absolute;
    border-radius: 50%;
    background: #F4D324;
    /* sarı */
    box-shadow: 0 0 10px rgba(244, 211, 36, 0.8);
}


/* Shine / pulse efekti için halo */

.global-map-dot::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    border: 1px solid rgba(244, 211, 36, 0.7);
    box-shadow: 0 0 14px rgba(244, 211, 36, 0.9);
    animation: mapDotShine 2.5s ease-out infinite;
}


/* Pulse animasyonu */

@keyframes mapDotShine {
    0% {
        opacity: 0;
        transform: scale(1);
    }

    20% {
        opacity: 1;
    }

    100% {
        opacity: 0;
        transform: scale(2.3);
    }
}


/* Video Wrapper */

.global-map-media {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.global-map-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}


/* Overlay Text */

.global-map-overlay {
    position: absolute;
    bottom: 80px;
    left: 40px;
    z-index: 10;
}


/* ---------------------------------------------------
   HOME — NUMBERS SECTION (DESKTOP ONLY)
--------------------------------------------------- */

.home-numbers {
    background: #f8f8f8;
    padding: 35px 0;
    min-height: calc(100vh - var(--header-height));
    display: flex;
    align-items: center;
    box-sizing: border-box;
}


/* Container içinde solda başlık, sağda kartlar */

.home-numbers .container {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 240px;
}


/* -----------------------------------------------
   LEFT SIDE (TITLE + IMAGE)
----------------------------------------------- */

.numbers-kicker {
    font-size: 14px;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    color: #6a6a6a;
    margin-bottom: 20px;
}

.numbers-title {
    font-size: 54px;
    line-height: 1.2;
    font-weight: 400;
    color: #333;
    margin-bottom: 50px;
}

.numbers-visual img {
    width: 520px;
    height: auto;
    display: block;
}


/* -----------------------------------------------
   RIGHT SIDE (GRID OF 4 CARDS)
----------------------------------------------- */

.home-numbers-right {
    flex: 1;
}


/* 1600px ve üzeri ekranlar için */

@media (min-width: 1600px) {
    .home-numbers .container {
        gap: 180px;
    }

    .home-numbers-left {
        flex: 3;
    }

    .home-numbers-right {
        flex: 2;
    }
}

.numbers-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(2, auto);
    gap: 40px;
}


/* -----------------------------------------------
   SINGLE CARD
----------------------------------------------- */

.numbers-card {
    background: #fff;
    border-radius: 12px;
    padding: 32px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
    text-align: left;
    position: relative;
    /* Kare yapmak için */
    aspect-ratio: 1 / 1;
}


/* ICON */

.numbers-card-icon img {
    width: 60px;
    height: auto;
    margin-bottom: 25px;
}


/* VALUE (Animated later via JS) */

.numbers-card-value {
    font-family: Outfit;
    font-size: 72px;
    font-style: normal;
    font-weight: 300;
    line-height: 48px;
    /* 66.667% */
    margin-bottom: 20px;
}


/* LABEL */

.numbers-card-label {
    color: var(--Foundation-mr-Grauscale-Color-Darker, #3F3F3F);
    font-family: Outfit;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
    /* 133.333% */
}

.numbers-card-wrapper {
    position: absolute;
    bottom: 32px;
    left: 32px;
}


/* ---------------------------------------------------
   HOME — ABOUT SECTION (DESKTOP ONLY)
--------------------------------------------------- */

.home-about {
    padding: 35px 0;
    background: #f8f8f8;
    min-height: calc(100vh - var(--header-height));
    display: flex;
    align-items: center;
    box-sizing: border-box;
}

.home-about-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.home-about-image {
    flex: 1;
    position: relative;
    overflow: hidden;
    max-height: calc(100vh - (2 * var(--header-height)));
}

.home-about-circle {
    position: absolute;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.6);
    pointer-events: none;
    opacity: 0;
    transform: translate(-50%, -50%);
    transition: opacity 0.3s ease;
}

.home-about-circle.visible {
    opacity: 1;
}

.home-about-circle.fade-out {
    opacity: 0;
    transition: opacity 2s ease;
}

.home-about-content {
    flex: 1;
}


/* -----------------------------------------------
   SOL ALAN: IMAGE
----------------------------------------------- */

.home-about-image img {
    width: 100%;
    height: auto;
    border-radius: 4px;
    display: block;
    max-height: calc(100vh - (2 * var(--header-height)));
    object-fit: cover;
}

.home-about-box {
    padding: 60px;
    background: #fff;
}


/* -----------------------------------------------
   SAĞ ALAN: CONTENT
----------------------------------------------- */

.home-about-content {
    width: 44%;
}


/* Kicker */

.about-kicker {
    font-size: 14px;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #6a6a6a;
    margin-bottom: 16px;
    display: block;
}


/* Title */

.about-title {
    font-size: 52px;
    font-weight: 400;
    line-height: 1.2;
    color: #222;
    margin-bottom: 30px;
}


/* Paragraph */

.about-text {
    font-size: 17px;
    line-height: 1.55;
    color: #666;
    margin-bottom: 40px;
}


/* -----------------------------------------------
   CTA BUTTON
----------------------------------------------- */

.about-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: #000;
    color: #fff;
    padding: 16px 30px;
    border-radius: 4px;
    font-size: 15px;
    transition: 0.2s ease;
}

.about-btn:hover {
    opacity: 0.85;
}

.about-btn-arrow {
    font-size: 18px;
}


/* ---------------------------------------------------
   HOME — VALUES SECTION (DESKTOP ONLY)
--------------------------------------------------- */


/* SECTION LAYOUT — paylaşılan stiller policies-section.css (global) içindedir */

.home-values {
    padding: 60px 0 45px;
    background: #f7f7f7 url('../images/bg-value-pattern.png') center center / cover no-repeat;
    min-height: calc(100vh - var(--header-height));
    box-sizing: border-box;
}


/* ---------------------------------------------------
   HOME PROMO SLIDER (DESKTOP ONLY)
--------------------------------------------------- */

.home-promo {
    /* Üst sarı, alt açık gri/beyaz */
    background: linear-gradient(to bottom, #FCE300 0%, #FCE300 50%, #F5F5F5 50%, #F5F5F5 100%);
    padding: 0 90px 60px;
    font-family: "Outfit", sans-serif;
    min-height: calc(100vh - var(--header-height));
    box-sizing: border-box;
}

.page-institutional .home-promo {
    min-height: auto; height: min(620px, calc(90vh - var(--header-height)));
}

.page-institutional  .home-promo-card{
    min-height: auto; height: min(620px, calc(90vh - var(--header-height)));
}

.home-promo .container {
    max-width: 100%;
    padding: 0;
}

.home-promo-shell {
    position: relative;
}


/* 80vh’lik beyaz kart */

.home-promo-card {
    background: #ffffff;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.18);
    height: calc(100vh - calc(var(--header-height) + 60px));
    max-height: 720px;
    padding: 40px;
    display: flex;
    flex-direction: column;
}


/* Sol 01 / 05 counter */

.home-promo-counter {
    position: absolute;
    left: -30px;
    top: 50%;
    transform: translate(-40px, -50%);
    text-align: left;
    color: #111;
    font-size: 16px;
    letter-spacing: 0.15em;
    z-index: 10;
}

.home-promo-counter-current {
    display: block;
    font-size: 20px;
    font-weight: 500;
}

.home-promo-counter-sep,
.home-promo-counter-total {
    font-size: 14px;
    color: #444;
}


/* Sağdaki duration placeholder */

.home-promo-duration {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translate(40px, -50%);
    z-index: 10;
}

.promo-duration-circle {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 2px solid #111;
    display: none;
}


/* ---------------------- Ana Slider ---------------------- */

.home-promo-main {
    flex: 1;
}

.home-promo-main {
    width: 100%;
}

.promo-slide {
    display: flex;
    height: 100%;
    gap: 60px;
}


/* Sol görsel alanı */

.promo-slide-media {
    flex: 0 0 52%;
    overflow: hidden;
    background: #fff;
}

.promo-slide-media img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}


/* Video variant */

.promo-slide-media--video {
    position: relative;
    cursor: pointer;
    transition: all 0.9s cubic-bezier(0.4, 0, 0.2, 1);
}

.promo-slide-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: all 0.9s cubic-bezier(0.4, 0, 0.2, 1);
}


/* Expand Button - follows cursor */

.promo-slide-expand-btn {
    position: absolute;
    width: 48px;
    height: 48px;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease, transform 0.1s ease;
    cursor: pointer;
    z-index: 5;
    transform: translate(-50%, -50%);
}

.promo-slide-media--video:hover .promo-slide-expand-btn {
    opacity: 1;
}

.promo-slide-expand-btn:hover {
    background: rgba(0, 0, 0, 0.8);
}


/* Close Button */

.promo-slide-close-btn {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 48px;
    height: 48px;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 28px;
    line-height: 1;
    cursor: pointer;
    z-index: 6;
    opacity: 0;
    pointer-events: none;
    transition: all 0.3s ease;
}

.promo-slide-close-btn:hover {
    background: rgba(0, 0, 0, 0.8);
    transform: rotate(90deg);
}


/* Expanded state */

.promo-slide.expanded {
    position: relative;
    z-index: 1000;
}

.promo-slide.expanded .promo-slide-media--video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    flex: none;
    z-index: 1000;
}

.promo-slide.expanded .promo-slide-video {
    object-fit: cover;
}

.promo-slide.expanded .promo-slide-content {
    opacity: 0;
    pointer-events: none;
}

.promo-slide.expanded .promo-slide-expand-btn {
    opacity: 0;
    pointer-events: none;
}

.promo-slide.expanded .promo-slide-close-btn {
    opacity: 1;
    pointer-events: auto;
}


/* Hide thumbnails when video is expanded */

.home-promo-card.video-expanded .home-promo-thumbs-nav {
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}


/* Sağ içerik alanı */

.promo-slide-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin-top: -100px
}

.promo-slide-title {
    font-size: 40px;
    line-height: 1.3;
    font-weight: 500;
    color: #111;
    margin-bottom: 24px;
}

.promo-slide-text {
    font-size: 16px;
    line-height: 1.6;
    color: #666;
    max-width: 460px;
    margin-bottom: 32px;
}


/* CTA buton */

.promo-slide-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: #000;
    color: #fff;
    padding: 14px 32px;
    width: 200px;
    border-radius: 4px;
    position: relative;
    font-size: 15px;
    transition: 0.25s ease;
}

.promo-slide-btn::before {
    position: absolute;
    top: 0;
    left: 0;
    width: 0%;
    content: '';
    height: 100%;
    transition: .3s all linear;
    background: #F4D324;
}

.promo-slide-btn:hover::before {
    width: 100%;
}

.promo-slide-btn span {
    position: relative;
    z-index: 1;
}

.promo-slide-btn:hover span {
    color: black
}

.promo-slide-btn-arrow {
    font-size: 18px;
}


/* ---------------------- Thumbs & Arrows ---------------------- */

.home-promo-thumbs-nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: absolute;
    bottom: 40px;
    right: 40px;
    width: 41.5%;
    z-index: 10;
}


/* Thumbs Swiper */

.home-promo-thumbs {
    width: calc(100% - 90px);
    margin-left: -14px;
}

.home-promo-thumbs .swiper-wrapper {
    align-items: center;
}

.home-promo-thumbs .swiper-slide {
    width: 180px;
}


/* Tek tek thumb kartları */


/* Thumb kartın temel hali */

.promo-thumb {
    position: relative;
    overflow: hidden;
    width: 140px;
    background: rgba(0, 0, 0, 0.1);
    height: 90px;
    border-radius: 3px;
    opacity: 0.6;
    transition: opacity 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
}


/* Görsel tüm alanı kaplasın */

.promo-thumb img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: contain;
    object-position: center;
}


/* Başlık: defaultta görünmesin / overlay yok */

.promo-thumb-title {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 100%;
    box-sizing: border-box;
    padding: 8px 12px;
    font-size: 13px;
    color: #fff;
    background: rgba(0, 0, 0, 0);
    /* şeffaf */
    opacity: 0;
    transition: opacity 0.25s ease, background 0.25s ease;
}

.promo-thumb-title::after {
    content: '';
    position: absolute;
    bottom: 20px;
    left: 20px;
    height: 2px;
    background-color: #F9D835;
    width: calc(100% - 40px);
}

.home-promo-thumbs .swiper-slide {
    width: 140px !important;
    margin-right: 20px !important;
}


/* Aktif thumb */

.home-promo-thumbs .swiper-slide-thumb-active .promo-thumb {
    opacity: 1;
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.18);
    border: 1px solid #F4D324;
    transform: translateY(-2px);
}


/* Aktif thumb’ta siyah overlay bar */

.home-promo-thumbs .swiper-slide-thumb-active .promo-thumb-title {
    opacity: 1;
    background: rgba(0, 0, 0, 0.8);
}


/* Oklar */

.home-promo-arrows {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-direction: column;
    z-index: 10;
}

.home-promo-arrows button.home-promo-prev {
    left: -15px;
    top: 50%;
    transform: translateY(-50%);
}

.home-promo-arrows button.home-promo-next {
    right: -5px;
    top: 50%;
    transform: translateY(-50%);
}

.home-promo-arrows button {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-size: 18px;
    cursor: pointer;
    transition: 0.25s ease;
    position: absolute;
}

.home-promo-arrows button:hover {
    background: #000;
    color: #fff;
    border-color: #000;
}


/* Promo Circular Timer */

.promo-timer {
    width: 30px;
    height: 30px;
    margin-bottom: 4px;
    position: absolute;
    right: -65px;
    top: 50%;
    transform: translate(0px, -50%);
}

.promo-timer:after {
    content: '';
    display: block;
    width: 4px;
    height: 4px;
    position: absolute;
    transform: translate(-50%, -50%);
    top: 50%;
    left: 50%;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 50%;
}

.promo-timer-svg {
    width: 100%;
    height: 100%;
    transform: rotate(-90deg);
}

.promo-timer-track {
    fill: none;
    stroke: rgba(0, 0, 0, 0.2);
    stroke-width: 2;
}

.promo-timer-progress {
    fill: none;
    stroke: #444;
    stroke-width: 2.5;
    stroke-linecap: round;
    stroke-dasharray: 125.66;
    stroke-dashoffset: 125.66;
    transition: stroke-dashoffset 0.3s ease;
}

.promo-timer-progress.animating {
    transition: none;
    animation: promoTimerFill 10s linear forwards;
}

@keyframes promoTimerFill {
    from {
        stroke-dashoffset: 125.66;
    }

    to {
        stroke-dashoffset: 0;
    }
}


/* ---------------------------------------------------
   HOME — PRODUCTS VERTICAL SLIDER (DESKTOP ONLY)
--------------------------------------------------- */

.home-products-slider-wrapper {
    height: calc(100vh + 100px);
    position: relative;
}

.home-products-slider {
    height: calc(100vh - var(--header-height));
    position: sticky;
    top: var(--header-height);
    display: flex;
    align-items: center;
    background: #fff;
    padding-bottom: 20px;
    z-index: 10;
}

.home-products-slider__inner {
    position: relative;
    height: 100%;
    display: flex;
    align-items: center;
}


/* Swiper container */

.products-slider {
    height: 70vh;
    width: 100%;
    overflow: hidden;
}


/* Her slide tam alanı kaplasın */

.products-slide {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
}


/* SOL YAZI ALANI */

.products-slide__content {
    position: absolute;
    left: 0px;
    top: 40px;
    width: 30%;
    height: calc(100% - 80px);
    display: flex;
    flex-direction: column;
    z-index: 33;
}

.products-slide__title {
    font-size: 34px;
    font-weight: 500;
    color: #333;
    margin-bottom: 20px;
}

.products-slide__text {
    font-size: 15px;
    line-height: 1.6;
    color: #666;
    max-width: 420px;
    margin-bottom: 32px;
}


/* CTA */

.products-slide__cta {
    margin-top: auto;
}

.products-slide__cta .btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 30px;
    background: #000;
    color: #fff;
    border-radius: 4px;
    font-size: 15px;
    transition: 0.25s ease;
    min-height: 50px;
}

.products-slide__cta .btn:hover {
    opacity: 0.85;
}


/* SAĞ GÖRSEL ALAN */

.products-slide__visual {
    flex: 0 0 52%;
    position: relative;
    display: flex;
    height: 100%;
    justify-content: center;
    align-items: center;
}


/* Sarı daire */

.products-slide__circle {
    position: absolute;
    width: 520px;
    height: 520px;
    border-radius: 50%;
    background: radial-gradient(circle at 30% 20%, #ffe76c, #f4d324);
    z-index: 1;
}


/* Ürün görseli */

.products-slide__image {
    position: relative;
    z-index: 2;
}

.products-slide__image img {
    max-width: 45vw;
    width: 100%;
    height: 55vh;
    object-fit: contain;
}


/* Pagination — sadece tablet/mobilde göster */
.products-slider__pagination {
    display: none;
}

/* -----------------------------------------------
   DİKEY COUNTER (SAĞ ÜST)
----------------------------------------------- */

.products-slider__counter {
    position: absolute;
    top: 40px;
    right: 40px;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    font-family: "Outfit", sans-serif;
}

.products-slider__counter-current {
    font-size: 18px;
    color: #333;
    margin-bottom: 12px;
}

.products-slider__counter-line {
    width: 1px;
    height: 80px;
    background: #aaa;
    margin-bottom: 12px;
}

.products-slider__counter-total {
    font-size: 14px;
    color: #b0b0b0;
}


/* -----------------------------------------------
   ALT SAĞ PREVIEW CARD
----------------------------------------------- */

.products-slider__preview {
    position: absolute;
    right: 40px;
    bottom: 40px; z-index: 99;
}

.products-slider__preview-card {
    display: flex;
    align-items: center;
    gap: 16px;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.15);
    padding: 14px 18px;
    cursor: pointer;
    border: none;
}

.products-slider__preview-info {
    margin-right: 8px;
}

.products-slider__preview-label {
    font-size: 13px;
    color: #555;
}

.products-slider__preview-image img {
    width: 70px;
    height: 70px;
    object-fit: contain;
}


/* Up / Down arrows */

.products-slider__preview-arrows {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.products-slider__preview-arrow {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    border: 1px solid #aaa;
    font-size: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.products-slider__preview-arrow--down {
    color: #000;
    border: 0;
}

.products-slider__preview-arrow {
    border: 0
}


/* Section görünümü */

.home-tech-wrapper {
    height: 200vh;
    position: relative;
}

.home-tech {
    padding: 0;
    background: #f7f7f7;
    position: sticky;
    top: 0;
    height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}


/* Yellow gradient circle on right */

.home-tech::after {
    content: '';
    position: absolute;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: linear-gradient(225deg, #FCE300 0%, #F7F7F7 100%);
    top: 50%;
    right: -200px;
    transform: translateY(-50%);
    z-index: 0;
}

.home-tech .container {
    position: relative;
    z-index: 1;
}


/* Scroll-driven word activation text */

.tech-scroll-text {
    font-family: 'Outfit', sans-serif;
    font-size: 90px;
    font-weight: 250;
    color: #3F3F3F; letter-spacing: 1px;
    line-height: 1.15;
    max-width: 900px;
}

.tech-word {
    display: inline;
    opacity: 0.1;
    transform: translateY(6px);
    transition: none;
    will-change: opacity, transform;
}

.tech-word.active {
    opacity: 1;
    transform: translateY(0);
}


/* Başlık base stil */

.tech-headline {
    font-size: 92px;
    line-height: 1.2;
    font-weight: 200;
    color: #222;
    max-width: 100%;
}


/* JS her harfi <span> içine alacak, animasyon bunlara uygulanacak */

.tech-headline span {
    display: inline-block;
    opacity: 0.08;
    /* hafif görünen harfler */
    transform: translateY(18px);
    transition: opacity 0.45s ease, transform 0.45s ease;
}


/* Boşluklar kaymasın diye */

.tech-headline span.is-space {
    width: 0.35em;
}


/* Section görünür olduktan sonra container'a .is-visible sınıfı eklenecek */

.tech-headline.is-visible span {
    opacity: 1;
    transform: translateY(0);
}


/* ---------------------------------------------------
   RESPONSIVE
--------------------------------------------------- */

@media (min-width: 1600px) {
    .numbers-visual img{ width: 700px; }
}
@media (max-width: 1600px) {
    .numbers-visual img{ max-width: 500px;}
    .numbers-title{ margin-bottom: 30px; }
    .sustainability-card-logo{ height: 100px;}
    .sustainability-card-logo img{ height: 70px; }
    .home-sustainability .container{ padding-top: 60px; padding-bottom: 60px;}
    .tech-scroll-text {
        font-size: 76px;
    }
    .home-numbers-right{ max-width: 520px;}
    .home-values{ padding: 25px 0px; }
    .home-promo-counter{ left: -1%; }
    .promo-timer{ right: -55px; }
    .about-box{ padding: 40px; }
    .sustainability-title{ font-size: 52px; margin-bottom: 5px; line-height: 1.2; }
    .sustainability-text p{ font-size: 16px; line-height: 1.4; }
}
@media (max-width: 1400px) {
    .home-promo-thumbs-nav{ width: 43%; }
    .numbers-card{ padding: 22px; }
    .numbers-card-label{ font-size: 1rem; }
    .numbers-card-icon img{ width: 50px; }
    .numbers-card-wrapper{ bottom: 22px; left: 22px;}
    .numbers-card-value{ font-size: 52px; margin-bottom: 5px; line-height: 1.2; }
    .numbers-title,.about-title{ font-size: 40px; }
}
@media (max-width: 1280px) {
    .about-btn,.sustainability-cta-btn{ padding: 10px 20px; }
    .sustainability-card-title{ font-size: 12px;}
    .sustainability-card{
        padding:15px;
    }
    .home-sustainability .container{
        padding-top: 30px; padding-bottom: 30px;
    }
    .home-sustainability-top{gap: 10px;}
    .sustainability-title{ font-size: 37px; }
    .sustainability-card-logo img{ height: 50px;}
    .sustainability-text p{ font-size: 11px; line-height: 1.4; }
}
@media (max-height: 580px) and  (max-width: 1300px) {
    .home-promo-thumbs{ margin-left: 40px; }
}
@media (max-height: 560px) and (max-width: 1400px) {
    .home-sustainability{ padding: 60px 0 30px; }
    .home-numbers-right{ max-width: 400px; }
    .numbers-title{ margin-bottom: 30px;}
    .home-about-box{ padding: 30px; }
}
@media (max-width: 1200px) and (min-height: 800px) {
    .home-values,.home-sustainability{
        min-height: auto;
    }
}
.only-mobile-flex{ display: none !important; }
.home-headline{ display: none;}
@media (max-width: 1280px) {
    .sustainability-card{ width: 150px; }
    .sustainability-card-logo{ height: 140px; }
    .about-text{ font-size: 15px; line-height: 1.4; }
    .numbers-title,.about-title{ font-size: 32px; }
    .numbers-visual img{ width: 420px; }
    .home-numbers .container{ gap: 200px; }
    .numbers-card-value{ font-size: 42px; margin-bottom: 0px; }
    .home-promo-counter{ left: -5px; }
    .promo-timer{ right: -45px; }
    .promo-slide-btn{ padding: 10px 20px; font-size: 13px;  width: fit-content; }
    .promo-slide-text{ line-height: 1.4; font-size: 14px; }
    .promo-slide-title{ font-size: 30px; }
    .tech-scroll-text {
        font-size: 64px;
    }
}

@media (max-width: 768px) {
    .page-news .home-news{ padding-top: 0px; }
    .home-promo-arrows{ display: none;}
    .page-institutional  .home-promo-card,.page-institutional .home-promo{ height: auto;}
    .home-headline{ display: flex; overflow: hidden; height: 500px; position: relative; justify-content: normal; align-items: center; }
    .home-headline .about-headline-text{ font-size: 32px; font-weight: 200; position: relative; z-index: 3; }
    .home-headline:after{
        content: '';
        position: absolute;
        width: 400px;
        height: 400px;
        border-radius: 50%;
        background: linear-gradient(225deg, #FCE300 0%, #F7F7F7 100%);
        top: 50%;
        right: -200px;
        transform: translateY(-50%);
        z-index: 0;
    }
    .home-news-all{ justify-content: center; }
    .only-mobile-flex{ display: flex !important; }
    .numbers-visual img{ width: 100%; }
    .promo-slide-content{ min-height: 300px; }
    .home-promo{ min-height: auto; padding-top: 10px !important; }
    .home-promo-card{ height: auto;}
    .promo-slide-media{ height: 250px; }
    .promo-slide-content{ margin-top: 0px; justify-content: flex-start; }
    .home-promo-thumbs-nav{ display: none;}
    .home-sustainability .container{ justify-content: space-around; }
    .sustainability-card-logo{ height: 80px; }
    .home-sustainability .container{ padding: 30px; }
    .sustainability-cards,.sustainability-text{ width: 100%; gap: 10px; }
    .home-sustainability{ min-height: 600px;}
    .home-promo-thumbs-nav{ width: calc(100% - 30px); right: 15px; }
}


/* =============================================
   DOKUNMATIK CİHAZLAR (tablet, mobil)
   JS tarafından <html class="is-touch"> eklenir
   Sticky/wheel devre dışı, yatay swipe aktif
============================================= */
.is-touch .home-products-slider-wrapper {
    height: auto;
}

.is-touch .home-products-slider {
    position: relative;
    top: auto;
    height: auto;
    padding: 40px 0 50px;
}

.is-touch .home-products-slider__inner {
    height: auto;
    flex-direction: column;
    gap: 24px;
}

/* Swiper container — horizontal mod için sabit yükseklik şart */
.is-touch .products-slider {
    height: 65vh;
    min-height: unset;
    width: 100%;
}

/* Slide içi layout — yan yana, tablet oranları */
.is-touch .products-slide {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 20px;
    padding: 0 8px;
    height: 100%;
}

.is-touch .products-slide__content {
    position: relative;
    left: auto;
    top: auto;
    width: 40%;
    height: auto;
    padding: 20px 0;
}

.is-touch .products-slide__title {
    font-size: 28px;
}

.is-touch .products-slide__text {
    font-size: 14px;
    margin-bottom: 24px;
    max-width: 100%;
}

.is-touch .products-slide__visual {
    flex: 0 0 55%;
}

.is-touch .products-slide__image img {
    max-width: 52vw;
    height: 50vh;
    object-fit: contain;
}

/* Counter → touch modda gizle */
.is-touch .products-slider__counter {
    display: none;
}

/* Preview card → touch modda göster, okları ←→ yap */
.is-touch .products-slider__preview{
    right: auto; left: 40px; bottom: 0px;
}
.is-touch .products-slider__preview-arrows {
    flex-direction: row;
    gap: 8px;
}

.is-touch .products-slider__preview-arrow--up,
.is-touch .products-slider__preview-arrow--down {
    font-size: 0; /* orijinal ↑↓ karakterleri gizle */
}

.is-touch .products-slider__preview-arrow--up::before {
    content: '←';
    font-size: 14px;
}

.is-touch .products-slider__preview-arrow--down::before {
    content: '→';
    font-size: 14px;
}

/* Mobilde (<768px) dikey stack */
@media (max-width: 768px) {
    .is-touch .products-slider {
        height: auto;
    }

    .is-touch .products-slide {
        display: flex;
        flex-direction: column-reverse;
        gap: 16px;
        height: auto;
    }

    .is-touch .products-slide__content {
        width: 100%;
        padding: 0;
    }

    .is-touch .products-slide__visual {
        flex: none;
        width: 100%; height: auto;
    }

    .is-touch .products-slide__image img {
        max-width: 100%;
        width: 100%;
        height: 200px;
        margin-bottom: 30px;
    }

    .is-touch .products-slide__title {
        font-size: 24px;
    }
}

@media (max-width: 768px) {
    .home-tech-wrapper{ display: none;}
    .products-slider .swiper-wrapper{ height: auto;}
    .products-slider__preview-info{ flex: 1; text-align: left;}
    .products-slider__preview-card{ width: 100%; }
    .products-slider__preview{ width: calc(100% - 40px); z-index: 33; left: 20px !important; }
    .home-products-slider__inner{ padding-bottom: 120px;}
    .is-touch .products-slide{ height: auto; gap: 0px; }
    .global-map-text{ font-size: 42px;  line-height: 1.4; }
    .home-global-map{ min-height: 50vh;}
    .promo-timer,.home-promo-counter{ display: none;}
    .home-about-content{ width: 100%; }
    .home-about-box{ padding: 20px; }
    .home-numbers .container{
        flex-wrap: wrap; gap: 50px;
    }
    /* Home Promo */
    .home-promo {
        padding: 40px 20px 60px;
    }
    .promo-slide-media img{
        height: 250px; object-fit: contain;
    }
    .home-promo-card {
        min-height: 500px;
        max-height: none;
        padding: 24px;
    }

    .promo-slide {
        flex-direction: column;
        gap: 24px;
    }

    .promo-slide-media {
        flex: 0 0 auto;
        width: 100%;
    }

    .promo-slide-title {
        font-size: 28px;
        line-height: 36px;
    }

    .promo-slide-text {
        font-size: 14px;
    }

    /* Sustainability section */
    .home-sustainability {
        padding: 60px 0 30px;
    }

    .home-sustainability-top {
        flex-direction: column;
        gap: 20px;
    }

    .home-sustainability-title {
        font-size: 28px;
        line-height: 36px;
    }

    /* Numbers section */
    .home-numbers {
        padding: 50px 0;
    }

    .home-numbers-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    /* Values section — home'a özel padding, geri kalanı policies-section.css'de */
    .home-values {
        padding: 50px 0; padding-bottom: 20px;
    }

    /* Tech section */
    .home-tech-wrapper {
        height: 170vh;
    }

    .tech-scroll-text {
        font-size: 36px;
    }

    /* About section */
    .home-about {
        padding: 50px 0;
    }

    .home-about-wrapper {
        flex-direction: column;
        gap: 30px;
    }

    /* Products slider mobil stilleri .is-touch bloğunda yönetilir */

}

@media (max-width: 480px) {
    .home-promo-card {
        min-height: 400px;
        padding: 20px;
    }

    .promo-slide-title {
        font-size: 24px;
        line-height: 32px;
    }

    .home-sustainability-title {
        font-size: 24px;
        line-height: 32px;
    }

    .home-tech-wrapper {
        height: 150vh;
    }

    .tech-scroll-text {
        font-size: 28px;
    }

    .home-products-slider-wrapper {
        height: auto;
    }

    .home-products-slider {
        position: relative;
        top: auto; padding-top: 20px !important;
        min-height: 50vh;
    }

    .products-slider {
        min-height: 40vh;
    }

    .products-slide__title {
        font-size: 20px;
    }

    /* Values slider controls */
    .values-slider-controls {
        gap: 8px;
    }

    .values-slider-pagination .values-current {
        font-size: 20px;
    }

    .values-slider-pagination .values-separator,
    .values-slider-pagination .values-total {
        font-size: 10px;
    }

    .values-prev,
    .values-next {
        width: 36px;
        height: 36px;
    }

    .values-prev img,
    .values-next img {
        width: 14px;
        height: 14px;
    }

    #valuesSwiper .swiper-slide {
        width: calc((100% - 32px) / 2.5);
    }
}

@media screen and (max-width: 400px){
    .numbers-card-value{ text-align: center; }
    .numbers-card-label{ font-size: 14px; text-align: center;}
    .numbers-grid{ gap: 15px; }
    .numbers-card{ aspect-ratio: 1/1.1; padding: 10px; }
    .numbers-card-icon img{ margin: 0px auto; margin-top: 10px;}
    .numbers-card-wrapper{ left: 10px; width: calc(100% - 20px); bottom: 10px; }
    .mobile-menu-toggle{ justify-content: space-around; }
}