/* ---------------------------------------------------
   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 */

.home-values {
    padding: 90px 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-values .container {
    display: grid;
    grid-template-columns: 52% 48%;
    align-items: flex-start;
    gap: 60px;
}


/* SOL BLOK */

.values-left .title-line {
    font-size: 13px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: #999;
    margin-bottom: 20px;
}

.values-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 40px;
}

.values-title {
    font-size: 40px;
    line-height: 1.25;
    font-weight: 400;
    color: #222;
    margin-bottom: 0;
}


/* Görsel sliderın biraz altında ve geniş, slider altında kalsın */

.values-image {
    margin-top: 40px;
    width: 50vw;
    position: relative;
    z-index: 1;
    /* altta */
}

.values-image img {
    width: 110%;
    max-width: none;
    display: block;
    max-height: 55vh;
}


/* SAĞ BLOK */

.values-right {
    position: relative;
    margin-top: 60px;
    margin-right: -30px;
    z-index: 2;
}

.values-slider {
    position: relative;
    z-index: 2;
    margin-top: -120px;
    margin-right: -30px;
}


/* Counter ve Navigation */

.home-values .values-controls {
    display: flex;
    align-items: end;
    gap: 20px;
    margin-bottom: 30px;
    justify-content: right;
    padding-right: 90px;
}

.home-values .values-counter {
    font-size: 40px;
    font-weight: 300;
    color: #222;
    display: flex;
    align-items: baseline;
    gap: 8px;
}

.home-values .values-counter-current {
    font-weight: 400;
}

.home-values .values-counter-sep {
    font-size: 24px;
    color: #999;
}

.home-values .values-counter-total {
    font-size: 24px;
    color: #999;
}

.home-values .values-nav-buttons {
    display: flex;
    gap: 12px;
}

/* Swiper temel ayar */

.home-values #valuesSwiper {
    position: relative;
    padding: 0;
    padding-top: 0;
    width: 100%;
    overflow: hidden;
}

.home-values #valuesCardSwiper {
    overflow: hidden;
    padding: 20px 0;
    padding-top: 0;
    width: 100%;
    position: relative;
}

.home-values #valuesSwiper .swiper-wrapper {
    align-items: stretch;
}

.home-values #valuesSwiper .swiper-slide {
    height: auto;
}


/* CARD STİLLERİ */

.home-values .values-card {
    background: #fff;
    padding: 30px 26px 26px;
    box-shadow: -27px 26px 11px 0 rgba(153, 153, 153, 0.00), -17px 17px 10px 0 rgba(153, 153, 153, 0.01), -10px 9px 8px 0 rgba(153, 153, 153, 0.05), -4px 4px 6px 0 rgba(153, 153, 153, 0.09), -1px 1px 3px 0 rgba(153, 153, 153, 0.10);
    height: 100%;
    min-height: 380px;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.home-values .swiper-slide-active .values-card,
.home-values .swiper-slide-next .values-card {
    /*transform: translateY(-4px);*/
}

.home-values .values-card:hover {
    box-shadow: -27px 26px 11px 0 rgba(153, 153, 153, 0.02), -17px 17px 10px 0 rgba(153, 153, 153, 0.05), -10px 9px 8px 0 rgba(153, 153, 153, 0.09), -4px 4px 6px 0 rgba(153, 153, 153, 0.12), -1px 1px 3px 0 rgba(153, 153, 153, 0.15);
}

.home-values .values-card-number {
    font-size: 48px;
    font-weight: 300;
    color: #E0E0E0;
    line-height: 1;
    margin-bottom: 20px;
}

.home-values .values-card-title {
    font-size: 22px;
    line-height: 1.35;
    color: #222;
    margin-bottom: 16px;
    font-weight: 400;
}

.home-values .values-card-text {
    font-size: 14px;
    line-height: 1.4;
    color: #666;
    margin-bottom: 24px;
    flex: 1;
}

.home-values .values-card-btn {
    margin-top: auto;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: #222;
    text-decoration: none;
    transition: color 0.2s ease;
}

.home-values .values-card-btn .icon-box {
    width: 32px;
    height: 32px;
    border-radius: 6px;
    border: 1px solid #222;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
}

.home-values .values-card-btn:hover {
    color: #666;
}


/* Navigation Arrows */

.home-values .values-nav-btn {
    width: 40px;
    height: 40px;
    border-radius: 0;
    border: 0;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
    background: #E6E6E6;
}

.home-values .values-nav-btn:hover {
    background: #d0d0d0;
}

.home-values .values-nav-prev svg {
    filter: grayscale(1) brightness(0.7);
}

.home-values .values-nav-next {
    background: #FCE300;
}

.home-values .values-nav-next:hover {
    background: #e5cc00;
}

.home-values .values-nav-next svg {
    filter: brightness(0);
}

.home-values .values-nav-btn svg {
    width: 18px;
    height: 18px;
}


/* ---------------------------------------------------
   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: space-between;
    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;
}

.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;
}


/* -----------------------------------------------
   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;
}

.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: 96px;
    font-weight: 250;
    color: #3F3F3F;
    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: 45px; }
    .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: 14px; line-height: 1.5; }
    .values-image{ margin-top: 30px;}
    .numbers-title,.about-title,.values-title{ font-size: 32px; }
}
@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,.values-title{ font-size: 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;
    }
}
@media (max-width: 1280px) {
    .home-values .values-card-title{ font-size: 18px; }
    .sustainability-card{ width: 200px; }
    .sustainability-card-logo{ height: 140px; }
    .values-image{ margin-top: 20px;}
    .about-text{ font-size: 15px; line-height: 1.4; }
    .numbers-title,.about-title,.values-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 16px; 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;
    }

    .home-values .values-card {
        padding: 26px 22px 22px;
        min-height: 280px;
    }

    .home-values .values-card-title {
        font-size: 20px;
        margin-bottom: 14px;
    }

    .home-values .values-card-text {
        font-size: 13px;
        line-height: 1.5;
        margin-bottom: 20px;
    }

    .values-card-btn {
        font-size: 13px;
    }

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

@media (max-width: 1024px) {
    .values-card {
        padding: 24px 20px 20px;
        min-height: 340px;
    }

    .values-card-title {
        font-size: 18px;
        margin-bottom: 12px;
    }

    .values-card-text {
        font-size: 12px;
        line-height: 1.5;
        margin-bottom: 18px;
    }

    .values-card-btn {
        font-size: 12px;
        gap: 8px;
    }

    .values-card-btn .icon-box {
        width: 28px;
        height: 28px;
        font-size: 13px;
    }

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

@media (max-width: 768px) {

    /* Home Promo */
    .home-promo {
        padding: 40px 20px 60px;
    }

    .home-promo-card {
        height: auto;
        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;
    }

    /* Values section */
    .values-card {
        padding: 20px 18px 18px;
        min-height: 320px;
    }

    .values-card-title {
        font-size: 16px;
        margin-bottom: 10px;
        line-height: 1.3;
    }

    .values-card-text {
        font-size: 11px;
        line-height: 1.45;
        margin-bottom: 16px;
    }

    .values-card-btn {
        font-size: 11px;
        gap: 6px;
    }

    .values-card-btn .icon-box {
        width: 26px;
        height: 26px;
        font-size: 12px;
    }

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

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

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

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

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

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

    /* 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-values {
        padding: 50px 0;
    }

    .values-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }

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

    .values-left {
        padding-right: 0;
    }

    .values-right {
        margin-top: 40px;
        margin-right: 0;
    }

    .values-slider {
        margin-right: 0;
    }

    /* 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 */
    .home-products-slider-wrapper {
        height: auto;
    }

    .home-products-slider {
        position: relative;
        top: auto;
        height: auto;
        min-height: 60vh;
        padding-bottom: 20px;
    }

    .products-slider {
        height: auto;
        min-height: 50vh;
    }

    .products-slide__content {
        position: relative;
        width: 100%;
        padding: 0 0 20px 0;
    }

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

}

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

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

    /* Values section */
    .values-card {
        padding: 18px 16px 16px;
        min-height: 300px;
    }

    .values-card-title {
        font-size: 14px;
        margin-bottom: 8px;
        line-height: 1.25;
    }

    .values-card-text {
        font-size: 10px;
        line-height: 1.4;
        margin-bottom: 14px;
    }

    .values-card-btn {
        font-size: 10px;
        gap: 5px;
    }

    .values-card-btn .icon-box {
        width: 24px;
        height: 24px;
        font-size: 11px;
    }

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

    .values-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;
        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);
    }
}