/* ============================================================
   EDİRNE KUTLU SPOR KULÜBÜ — ANASAYFA
   Tüm içerik admin panelinden beslenir
   ============================================================ */

/* ---------- Ortak yapı taşları ---------- */
.h-section {
    padding: clamp(4rem, 8vw, 7.5rem) 0;
    position: relative;
}

.h-wrap {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.h-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: .6rem;
    font-family: 'Oswald', sans-serif;
    font-size: .78rem;
    font-weight: 500;
    letter-spacing: .28em;
    text-transform: uppercase;
    color: var(--k-red);
    margin-bottom: 1rem;
}

.h-eyebrow::before {
    content: '';
    width: 28px;
    height: 2px;
    background: var(--k-red);
}

.h-title {
    font-family: 'Oswald', sans-serif;
    font-size: clamp(1.9rem, 4.4vw, 3.1rem);
    font-weight: 700;
    line-height: 1.18;
    letter-spacing: -.005em;
    text-transform: uppercase;
    color: var(--k-ink);
    margin: 0 0 1rem;
}

.h-title em {
    font-style: normal;
    color: var(--k-red);
}

.h-lead {
    font-size: 1.0625rem;
    line-height: 1.75;
    color: var(--k-gray);
    max-width: 62ch;
    margin: 0;
}

.h-head {
    margin-bottom: clamp(2.5rem, 4vw, 3.75rem);
}

.h-head--center {
    text-align: center;
}

.h-head--center .h-lead {
    margin-inline: auto;
}

/* Butonlar */
.h-btn {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: .6rem;
    padding: .95rem 1.9rem;
    border-radius: 999px;
    font-family: 'Oswald', sans-serif;
    font-size: .875rem;
    font-weight: 600;
    letter-spacing: .09em;
    text-transform: uppercase;
    text-decoration: none;
    overflow: hidden;
    transition: transform .3s var(--k-ease), box-shadow .3s var(--k-ease), background .3s var(--k-ease), color .3s var(--k-ease);
}

.h-btn--primary {
    background: linear-gradient(135deg, var(--k-red) 0%, var(--k-red-dark) 100%);
    color: #fff;
    box-shadow: 0 10px 26px rgba(227, 6, 19, .32);
}

.h-btn--primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -120%;
    width: 55%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, .35), transparent);
    transform: skewX(-22deg);
    transition: left .7s var(--k-ease);
}

.h-btn--primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 16px 38px rgba(227, 6, 19, .45);
    color: #fff;
}

.h-btn--primary:hover::before { left: 140%; }

.h-btn--ghost {
    background: transparent;
    color: #fff;
    border: 1.5px solid rgba(255, 255, 255, .38);
}

.h-btn--ghost:hover {
    background: #fff;
    color: var(--k-ink);
    transform: translateY(-3px);
}

.h-btn--dark {
    background: var(--k-ink);
    color: #fff;
}

.h-btn--dark:hover {
    background: var(--k-red);
    color: #fff;
    transform: translateY(-3px);
}

/* Bölüm arka planları */
.h-section--tint {
    background: linear-gradient(180deg, #FAFAFA 0%, #F4F5F7 100%);
}

.h-section--dark {
    background: var(--k-black);
    color: #fff;
}

.h-section--dark .h-title { color: #fff; }
.h-section--dark .h-lead { color: rgba(255, 255, 255, .68); }

/* ============================================================
   1) HERO
   ============================================================ */
.hero {
    position: relative;
    height: calc(100vh - var(--k-topbar-h) - var(--k-nav-h));
    min-height: 560px;
    max-height: 940px;
    overflow: hidden;
    background: var(--k-black);
}

.hero__slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    visibility: hidden;
    transition: opacity 1s var(--k-ease), visibility 1s;
}

.hero__slide.is-active {
    opacity: 1;
    visibility: visible;
}

.hero__bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    transform: scale(1.08);
    transition: transform 8s linear;
}

.hero__slide.is-active .hero__bg {
    transform: scale(1);
}

.hero__bg video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Okunabilirlik katmanı */
.hero__scrim {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(8, 8, 10, .88) 0%, rgba(8, 8, 10, .62) 45%, rgba(8, 8, 10, .25) 100%),
        linear-gradient(0deg, rgba(8, 8, 10, .75) 0%, transparent 55%);
}

/* Kırmızı köşe aksanı — kenarı belli olmasın diye tam genişlik + radial */
.hero__accent {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 70% 90% at 88% 18%, rgba(227, 6, 19, .34) 0%, rgba(227, 6, 19, .12) 38%, transparent 68%);
    pointer-events: none;
}

.hero__inner {
    position: relative;
    z-index: 3;
    height: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1.5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.hero__content {
    max-width: 760px;
}

.hero__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: .7rem;
    padding: .5rem 1.1rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, .08);
    border: 1px solid rgba(255, 255, 255, .18);
    -webkit-backdrop-filter: blur(8px);
    backdrop-filter: blur(8px);
    font-family: 'Oswald', sans-serif;
    font-size: .72rem;
    font-weight: 500;
    letter-spacing: .24em;
    text-transform: uppercase;
    color: #fff;
    margin-bottom: 1.6rem;
}

.hero__eyebrow i { color: var(--k-red-light); }

.hero__title {
    font-family: 'Oswald', sans-serif;
    font-size: clamp(2.4rem, 6.4vw, 5rem);
    font-weight: 700;
    /* Türkçe büyük harflerin (Ş, Ç, Ğ) alt/üst uzantıları kırpılmasın */
    line-height: 1.14;
    letter-spacing: -.01em;
    text-transform: uppercase;
    color: #fff;
    margin: 0 0 1.4rem;
    text-shadow: 0 6px 30px rgba(0, 0, 0, .45);
}

.hero__desc {
    font-size: clamp(1rem, 1.6vw, 1.2rem);
    line-height: 1.7;
    color: rgba(255, 255, 255, .82);
    max-width: 58ch;
    margin: 0 0 2.4rem;
}

.hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: .9rem;
}

/* Giriş animasyonu */
.hero__slide.is-active .hero__eyebrow,
.hero__slide.is-active .hero__title,
.hero__slide.is-active .hero__desc,
.hero__slide.is-active .hero__actions {
    animation: heroUp .9s var(--k-ease) both;
}

.hero__slide.is-active .hero__title { animation-delay: .12s; }
.hero__slide.is-active .hero__desc { animation-delay: .22s; }
.hero__slide.is-active .hero__actions { animation-delay: .32s; }

@keyframes heroUp {
    from { opacity: 0; transform: translateY(26px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Kontroller */
.hero__nav {
    position: absolute;
    z-index: 5;
    right: max(1.5rem, calc((100vw - 1280px) / 2 + 1.5rem));
    bottom: 3.25rem;
    display: flex;
    align-items: center;
    gap: .6rem;
}

.hero__arrow {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    border: 1px solid rgba(255, 255, 255, .25);
    background: rgba(255, 255, 255, .07);
    -webkit-backdrop-filter: blur(8px);
    backdrop-filter: blur(8px);
    color: #fff;
    display: grid;
    place-items: center;
    cursor: pointer;
    font-size: .95rem;
    transition: all .28s var(--k-ease);
}

.hero__arrow:hover {
    background: var(--k-red);
    border-color: var(--k-red);
    transform: translateY(-3px);
}

.hero__dots {
    position: absolute;
    z-index: 5;
    left: max(1.5rem, calc((100vw - 1280px) / 2 + 1.5rem));
    bottom: 3.5rem;
    display: flex;
    align-items: center;
    gap: .6rem;
}

.hero__dot {
    width: 34px;
    height: 4px;
    border-radius: 3px;
    border: none;
    padding: 0;
    background: rgba(255, 255, 255, .3);
    cursor: pointer;
    overflow: hidden;
    position: relative;
    transition: width .35s var(--k-ease), background .3s var(--k-ease);
}

.hero__dot.is-active {
    width: 62px;
    background: rgba(255, 255, 255, .3);
}

.hero__dot.is-active::after {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--k-red);
    transform-origin: left;
    animation: heroDot 7s linear forwards;
}

@keyframes heroDot {
    from { transform: scaleX(0); }
    to { transform: scaleX(1); }
}

/* Aşağı kaydır ipucu */
.hero__scroll {
    position: absolute;
    z-index: 5;
    left: 50%;
    bottom: 1.5rem;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: .5rem;
    color: rgba(255, 255, 255, .55);
    font-size: .68rem;
    letter-spacing: .24em;
    text-transform: uppercase;
    text-decoration: none;
    font-family: 'Oswald', sans-serif;
    transition: color .3s var(--k-ease);
}

.hero__scroll:hover { color: #fff; }

.hero__scroll span {
    width: 1px;
    height: 34px;
    background: linear-gradient(180deg, rgba(255, 255, 255, .5), transparent);
    animation: scrollCue 2s ease-in-out infinite;
}

@keyframes scrollCue {
    0%, 100% { opacity: .3; transform: scaleY(.6); }
    50% { opacity: 1; transform: scaleY(1); }
}

/* ============================================================
   2) KAYAN DEĞER ŞERİDİ
   ============================================================ */
.beltbar {
    background: var(--k-ink);
    color: #fff;
    padding: 1.1rem 0;
    overflow: hidden;
    position: relative;
    border-top: 3px solid var(--k-red);
}

.beltbar__track {
    display: flex;
    width: max-content;
    animation: beltScroll 34s linear infinite;
}

.beltbar:hover .beltbar__track {
    animation-play-state: paused;
}

.beltbar__group {
    display: flex;
    align-items: center;
    gap: 3rem;
    padding-right: 3rem;
}

.beltbar__item {
    display: inline-flex;
    align-items: center;
    gap: .9rem;
    font-family: 'Oswald', sans-serif;
    font-size: 1.05rem;
    font-weight: 500;
    letter-spacing: .18em;
    text-transform: uppercase;
    white-space: nowrap;
}

.beltbar__item i {
    color: var(--k-red);
    font-size: .8rem;
}

@keyframes beltScroll {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}

/* ============================================================
   3) SAYAÇLAR
   ============================================================ */
.stats {
    background: #fff;
    padding: clamp(3rem, 5vw, 4.5rem) 0;
    border-bottom: 1px solid var(--k-line);
}

.stats__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.25rem;
}

.stat {
    text-align: center;
    padding: 1.75rem 1rem;
    border-radius: 18px;
    background: linear-gradient(180deg, #fff 0%, #FAFAFA 100%);
    border: 1px solid var(--k-line);
    transition: transform .35s var(--k-ease), box-shadow .35s var(--k-ease), border-color .35s var(--k-ease);
}

.stat:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 40px rgba(13, 13, 13, .1);
    border-color: rgba(227, 6, 19, .25);
}

.stat__icon {
    width: 52px;
    height: 52px;
    margin: 0 auto .9rem;
    border-radius: 15px;
    display: grid;
    place-items: center;
    background: rgba(227, 6, 19, .08);
    color: var(--k-red);
    font-size: 1.15rem;
}

.stat__value {
    font-family: 'Oswald', sans-serif;
    font-size: clamp(2rem, 3.6vw, 2.9rem);
    font-weight: 700;
    line-height: 1;
    color: var(--k-ink);
}

.stat__value sup {
    font-size: .45em;
    color: var(--k-red);
    top: -.7em;
}

.stat__label {
    margin-top: .6rem;
    font-size: .82rem;
    font-weight: 500;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--k-gray);
}

/* ============================================================
   4) HAKKIMIZDA
   ============================================================ */
.about__grid {
    display: grid;
    grid-template-columns: 1fr 1.05fr;
    gap: clamp(2.5rem, 5vw, 4.5rem);
    align-items: center;
}

.about__media {
    position: relative;
}

.about__photo {
    width: 100%;
    aspect-ratio: 4 / 5;
    object-fit: cover;
    border-radius: 22px;
    display: block;
    box-shadow: 0 30px 70px rgba(13, 13, 13, .18);
}

/* Yerleşik ikinci fotoğraf (antrenör) */
.about__photo--sub {
    position: absolute;
    right: -1.5rem;
    bottom: -1.5rem;
    width: 46%;
    aspect-ratio: 1;
    border-radius: 18px;
    border: 6px solid #fff;
    box-shadow: 0 22px 50px rgba(13, 13, 13, .22);
}

/* Kuruluş yılı rozeti */
.about__badge {
    position: absolute;
    top: -1.25rem;
    left: -1.25rem;
    background: linear-gradient(135deg, var(--k-red) 0%, var(--k-red-dark) 100%);
    color: #fff;
    border-radius: 18px;
    padding: 1.1rem 1.4rem;
    text-align: center;
    box-shadow: 0 16px 40px rgba(227, 6, 19, .38);
    z-index: 2;
}

.about__badge strong {
    display: block;
    font-family: 'Oswald', sans-serif;
    font-size: 1.9rem;
    font-weight: 700;
    line-height: 1;
}

.about__badge span {
    display: block;
    margin-top: .25rem;
    font-size: .64rem;
    letter-spacing: .18em;
    text-transform: uppercase;
    opacity: .9;
}

.about__text {
    font-size: 1.0625rem;
    line-height: 1.85;
    color: var(--k-gray);
    margin-bottom: 2rem;
    white-space: pre-line;
}

.about__mv {
    display: grid;
    gap: 1rem;
    margin-bottom: 2rem;
}

.mv-card {
    display: flex;
    gap: 1.1rem;
    padding: 1.35rem;
    border-radius: 16px;
    background: #fff;
    border: 1px solid var(--k-line);
    border-left: 3px solid var(--k-red);
    transition: transform .3s var(--k-ease), box-shadow .3s var(--k-ease);
}

.mv-card:hover {
    transform: translateX(6px);
    box-shadow: 0 14px 34px rgba(13, 13, 13, .09);
}

.mv-card__icon {
    width: 44px;
    height: 44px;
    flex-shrink: 0;
    border-radius: 13px;
    display: grid;
    place-items: center;
    background: rgba(227, 6, 19, .08);
    color: var(--k-red);
}

.mv-card h3 {
    font-family: 'Oswald', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: var(--k-ink);
    margin: 0 0 .4rem;
}

.mv-card p {
    font-size: .95rem;
    line-height: 1.7;
    color: var(--k-gray);
    margin: 0;
}

.about__signature {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--k-line);
    margin-bottom: 2rem;
}

.about__signature img {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--k-red);
}

.about__signature strong {
    display: block;
    font-family: 'Oswald', sans-serif;
    font-size: 1.05rem;
    letter-spacing: .05em;
    text-transform: uppercase;
    color: var(--k-ink);
}

.about__signature span {
    font-size: .85rem;
    color: var(--k-gray);
}

/* ============================================================
   5) EĞİTİM KARTLARI
   ============================================================ */
.cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.75rem;
}

.card {
    position: relative;
    display: flex;
    flex-direction: column;
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid var(--k-line);
    text-decoration: none;
    transition: transform .4s var(--k-ease), box-shadow .4s var(--k-ease);
}

.card:hover {
    transform: translateY(-8px);
    box-shadow: 0 26px 60px rgba(13, 13, 13, .14);
}

.card__media {
    position: relative;
    /* Eğitim kartları kare görsel kullanır (patron isteği) */
    aspect-ratio: 1 / 1;
    overflow: hidden;
    background: linear-gradient(135deg, #1a1c20 0%, #0d0d0d 100%);
}

.card__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform .7s var(--k-ease);
}

.card:hover .card__media img {
    transform: scale(1.07);
}

/* Görsel yoksa logo filigranı */
.card__media--empty {
    display: grid;
    place-items: center;
    color: rgba(255, 255, 255, .16);
    font-size: 3rem;
}

.card__tag {
    position: absolute;
    top: 1rem;
    left: 1rem;
    padding: .38rem .85rem;
    border-radius: 999px;
    background: var(--k-red);
    color: #fff;
    font-family: 'Oswald', sans-serif;
    font-size: .68rem;
    font-weight: 600;
    letter-spacing: .12em;
    text-transform: uppercase;
    z-index: 2;
}

.card__body {
    padding: 1.6rem;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.card__title {
    font-family: 'Oswald', sans-serif;
    font-size: 1.2rem;
    font-weight: 600;
    line-height: 1.3;
    letter-spacing: .01em;
    color: var(--k-ink);
    margin: 0 0 .7rem;
    transition: color .3s var(--k-ease);
}

.card:hover .card__title { color: var(--k-red); }

.card__text {
    font-size: .95rem;
    line-height: 1.7;
    color: var(--k-gray);
    margin: 0 0 1.25rem;
    flex: 1;
}

.card__more {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    font-family: 'Oswald', sans-serif;
    font-size: .78rem;
    font-weight: 600;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--k-red);
}

.card__more i {
    transition: transform .3s var(--k-ease);
}

.card:hover .card__more i {
    transform: translateX(5px);
}

/* ============================================================
   6) HABERLER
   ============================================================ */
.news {
    display: grid;
    grid-template-columns: 1.35fr 1fr;
    gap: 1.75rem;
}

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

/* Öne çıkan haber */
.news-hero {
    position: relative;
    display: block;
    border-radius: 22px;
    overflow: hidden;
    min-height: 420px;
    text-decoration: none;
    background: var(--k-ink);
}

.news-hero img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .8s var(--k-ease);
}

.news-hero:hover img { transform: scale(1.06); }

.news-hero__scrim {
    position: absolute;
    inset: 0;
    background: linear-gradient(0deg, rgba(8, 8, 10, .92) 8%, rgba(8, 8, 10, .35) 55%, transparent 100%);
}

.news-hero__body {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 2rem;
    z-index: 2;
}

.news-hero__date,
.news-item__date {
    display: inline-flex;
    align-items: center;
    gap: .45rem;
    font-family: 'Oswald', sans-serif;
    font-size: .72rem;
    font-weight: 500;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: var(--k-red-light);
    margin-bottom: .7rem;
}

.news-hero__title {
    font-family: 'Oswald', sans-serif;
    font-size: clamp(1.35rem, 2.4vw, 1.9rem);
    font-weight: 600;
    line-height: 1.22;
    color: #fff;
    margin: 0;
}

/* Yan haber satırı */
.news-item {
    display: flex;
    gap: 1.1rem;
    padding: 1rem;
    border-radius: 16px;
    background: #fff;
    border: 1px solid var(--k-line);
    text-decoration: none;
    transition: all .32s var(--k-ease);
}

.news-item:hover {
    border-color: rgba(227, 6, 19, .3);
    box-shadow: 0 14px 34px rgba(13, 13, 13, .09);
    transform: translateX(5px);
}

.news-item__thumb {
    width: 104px;
    height: 84px;
    flex-shrink: 0;
    border-radius: 12px;
    object-fit: cover;
    background: linear-gradient(135deg, #1a1c20, #0d0d0d);
}

.news-item__thumb--empty {
    display: grid;
    place-items: center;
    color: rgba(255, 255, 255, .22);
    font-size: 1.4rem;
}

.news-item__date { margin-bottom: .35rem; }

.news-item__title {
    font-family: 'Oswald', sans-serif;
    font-size: 1rem;
    font-weight: 500;
    line-height: 1.35;
    color: var(--k-ink);
    margin: 0;
    transition: color .3s var(--k-ease);
}

.news-item:hover .news-item__title { color: var(--k-red); }

/* ============================================================
   7) GALERİ
   ============================================================ */
.gallery {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 200px;
    gap: 1rem;
}

.gallery__item {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    cursor: pointer;
    background: var(--k-ink);
    border: none;
    padding: 0;
    display: block;
}

/* İlk kare büyük */
.gallery__item:nth-child(1) {
    grid-column: span 2;
    grid-row: span 2;
}

.gallery__item:nth-child(6) {
    grid-column: span 2;
}

.gallery__item img,
.gallery__item video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform .7s var(--k-ease);
}

.gallery__item:hover img,
.gallery__item:hover video {
    transform: scale(1.08);
}

.gallery__item img {
    object-fit: contain;
    object-position: center;
}

.gallery__item:hover img {
    transform: none;
}

.gallery__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(0deg, rgba(227, 6, 19, .82) 0%, rgba(8, 8, 10, .25) 100%);
    opacity: 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 1.1rem;
    color: #fff;
    transition: opacity .35s var(--k-ease);
    text-align: left;
}

.gallery__item:hover .gallery__overlay { opacity: 1; }

.gallery__overlay span {
    font-size: .85rem;
    line-height: 1.5;
    min-width: 0;
    white-space: normal;
    overflow-wrap: anywhere;
    max-height: 100%;
    overflow-y: auto;
}

.gallery__badge {
    position: absolute;
    top: .85rem;
    right: .85rem;
    width: 34px;
    height: 34px;
    border-radius: 10px;
    background: rgba(8, 8, 10, .6);
    -webkit-backdrop-filter: blur(6px);
    backdrop-filter: blur(6px);
    color: #fff;
    display: grid;
    place-items: center;
    font-size: .8rem;
    z-index: 2;
}

/* Lightbox */
.lightbox {
    position: fixed;
    inset: 0;
    z-index: 1200;
    background: rgba(8, 8, 10, .96);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    display: grid;
    place-items: center;
    padding: 3rem 1.5rem;
    opacity: 0;
    visibility: hidden;
    transition: opacity .35s var(--k-ease), visibility .35s;
}

.lightbox.is-open {
    opacity: 1;
    visibility: visible;
}

.lightbox__media {
    max-width: min(1100px, 92vw);
    max-height: 82vh;
    border-radius: 16px;
    box-shadow: 0 40px 90px rgba(0, 0, 0, .6);
    transform: scale(.94);
    transition: transform .4s var(--k-spring);
}

.lightbox.is-open .lightbox__media { transform: scale(1); }

.lightbox__caption {
    margin: 1.25rem auto 0;
    text-align: center;
    color: rgba(255, 255, 255, .7);
    font-size: .95rem;
    width: min(60ch, 85vw);
    max-width: 100%;
    min-width: 0;
    white-space: pre-wrap;
    overflow-wrap: anywhere;
    line-height: 1.5;
    max-height: 15vh;
    overflow-y: auto;
}

.lightbox__close {
    position: absolute;
    top: 1.75rem;
    right: 1.75rem;
    width: 48px;
    height: 48px;
    border-radius: 14px;
    border: 1px solid rgba(255, 255, 255, .2);
    background: transparent;
    color: #fff;
    display: grid;
    place-items: center;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all .28s var(--k-ease);
}

.lightbox__close:hover {
    background: var(--k-red);
    border-color: var(--k-red);
    transform: rotate(90deg);
}

/* Galeri ileri/geri okları — kapat butonuyla aynı dil */
.lightbox__nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 52px;
    height: 52px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, .2);
    background: rgba(0, 0, 0, .35);
    color: #fff;
    display: grid;
    place-items: center;
    font-size: 1.15rem;
    cursor: pointer;
    z-index: 2;
    transition: background .28s var(--k-ease), border-color .28s var(--k-ease), transform .28s var(--k-ease);
}

.lightbox__nav:hover {
    background: var(--k-red);
    border-color: var(--k-red);
}

.lightbox__nav--prev { left: 1.75rem; }
.lightbox__nav--next { right: 1.75rem; }

.lightbox__nav--prev:hover { transform: translateY(-50%) translateX(-3px); }
.lightbox__nav--next:hover { transform: translateY(-50%) translateX(3px); }

/* Kaçıncı görselde olduğunu gösteren sayaç */
.lightbox__counter {
    position: absolute;
    bottom: 1.6rem;
    left: 50%;
    transform: translateX(-50%);
    padding: .35rem .85rem;
    border-radius: 999px;
    background: rgba(0, 0, 0, .45);
    border: 1px solid rgba(255, 255, 255, .16);
    color: rgba(255, 255, 255, .85);
    font-size: .82rem;
    font-weight: 600;
    letter-spacing: .04em;
}

@media (max-width: 640px) {
    .lightbox__nav {
        width: 44px;
        height: 44px;
        font-size: 1rem;
    }

    .lightbox__nav--prev { left: .6rem; }
    .lightbox__nav--next { right: .6rem; }
}

/* ============================================================
   8) BAŞARILAR
   ============================================================ */
.achievements {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.achievement {
    position: relative;
    padding: 2rem 1.75rem;
    border-radius: 20px;
    background: rgba(255, 255, 255, .04);
    border: 1px solid rgba(255, 255, 255, .1);
    transition: all .35s var(--k-ease);
    overflow: hidden;
}

.achievement::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--k-red-dark), var(--k-red-light));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .45s var(--k-ease);
}

.achievement:hover {
    background: rgba(255, 255, 255, .07);
    border-color: rgba(227, 6, 19, .4);
    transform: translateY(-6px);
}

.achievement:hover::before { transform: scaleX(1); }

.achievement__logo {
    width: 62px;
    height: 62px;
    border-radius: 16px;
    object-fit: contain;
    background: #fff;
    padding: .5rem;
    margin-bottom: 1.25rem;
}

.achievement__icon {
    width: 62px;
    height: 62px;
    border-radius: 16px;
    display: grid;
    place-items: center;
    background: rgba(227, 6, 19, .16);
    color: var(--k-red-light);
    font-size: 1.4rem;
    margin-bottom: 1.25rem;
}

.achievement h3 {
    font-family: 'Oswald', sans-serif;
    font-size: 1.15rem;
    font-weight: 600;
    letter-spacing: .04em;
    color: #fff;
    margin: 0 0 .6rem;
}

.achievement p {
    font-size: .95rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, .62);
    margin: 0;
}

/* ============================================================
   9) İLETİŞİM / KAYIT
   ============================================================ */
.contact {
    position: relative;
    background: var(--k-black);
    color: #fff;
    overflow: hidden;
}

.contact::before {
    content: '';
    position: absolute;
    top: -30%;
    right: -10%;
    width: 640px;
    height: 640px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(227, 6, 19, .22) 0%, transparent 68%);
    pointer-events: none;
}

.contact__grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(2.5rem, 5vw, 4.5rem);
    align-items: center;
}

.contact__title {
    font-family: 'Oswald', sans-serif;
    font-size: clamp(2rem, 4.6vw, 3.4rem);
    font-weight: 700;
    line-height: 1.16;
    text-transform: uppercase;
    color: #fff;
    margin: 0 0 1.25rem;
}

.contact__title em {
    font-style: normal;
    color: var(--k-red-light);
}

.contact__lead {
    font-size: 1.0625rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, .68);
    margin: 0 0 2.25rem;
    max-width: 52ch;
}

.contact__actions {
    display: flex;
    flex-wrap: wrap;
    gap: .9rem;
    margin-bottom: 2.5rem;
}

.contact__list {
    display: grid;
    gap: 1rem;
}

.contact-row {
    display: flex;
    align-items: center;
    gap: 1.1rem;
    padding: 1.15rem 1.35rem;
    border-radius: 16px;
    background: rgba(255, 255, 255, .04);
    border: 1px solid rgba(255, 255, 255, .1);
    color: #fff;
    text-decoration: none;
    transition: all .3s var(--k-ease);
}

.contact-row:hover {
    background: rgba(255, 255, 255, .08);
    border-color: rgba(227, 6, 19, .4);
    transform: translateX(6px);
    color: #fff;
}

.contact-row__icon {
    width: 48px;
    height: 48px;
    flex-shrink: 0;
    border-radius: 14px;
    display: grid;
    place-items: center;
    background: linear-gradient(135deg, var(--k-red) 0%, var(--k-red-dark) 100%);
    color: #fff;
    font-size: 1.05rem;
}

.contact-row strong {
    display: block;
    font-size: .72rem;
    letter-spacing: .16em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, .5);
    margin-bottom: .25rem;
}

.contact-row span {
    font-size: 1rem;
    color: #fff;
}

.contact__map {
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, .12);
    aspect-ratio: 4 / 3;
    background: rgba(255, 255, 255, .04);
}

.contact__map iframe {
    width: 100%;
    height: 100%;
    border: 0;
    display: block;
    filter: grayscale(.35) contrast(1.05);
}

/* ============================================================
   10) SCROLL ANİMASYONU
   ============================================================ */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity .8s var(--k-ease), transform .8s var(--k-ease);
}

.reveal.is-visible {
    opacity: 1;
    transform: none;
}

.reveal--d1 { transition-delay: .1s; }
.reveal--d2 { transition-delay: .2s; }
.reveal--d3 { transition-delay: .3s; }
.reveal--d4 { transition-delay: .4s; }

/* ============================================================
   11) RESPONSIVE
   ============================================================ */
@media (max-width: 991.98px) {
    .about__grid,
    .news,
    .contact__grid {
        grid-template-columns: 1fr;
    }

    .cards,
    .achievements {
        grid-template-columns: repeat(2, 1fr);
    }

    .stats__grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .gallery {
        grid-template-columns: repeat(2, 1fr);
        grid-auto-rows: 180px;
    }

    .gallery__item:nth-child(6) { grid-column: auto; }

    .about__photo--sub {
        width: 40%;
        right: -.75rem;
        bottom: -.75rem;
    }

    .hero__dots,
    .hero__nav {
        left: 1.5rem;
        right: 1.5rem;
    }

    .hero__nav {
        left: auto;
    }
}

@media (max-width: 767.98px) {
    .hero {
        height: auto;
        min-height: 78vh;
        padding: 5rem 0 7rem;
    }

    .hero__scrim {
        background: linear-gradient(0deg, rgba(8, 8, 10, .92) 0%, rgba(8, 8, 10, .6) 60%, rgba(8, 8, 10, .5) 100%);
    }

    .hero__scroll { display: none; }

    .cards,
    .achievements,
    .stats__grid {
        grid-template-columns: 1fr;
    }

    .gallery {
        grid-template-columns: repeat(2, 1fr);
        grid-auto-rows: 145px;
    }

    .gallery__item:nth-child(1) {
        grid-column: span 2;
        grid-row: span 1;
    }

    .news-hero { min-height: 320px; }

    .news-item__thumb {
        width: 82px;
        height: 70px;
    }

    .about__badge {
        top: -.75rem;
        left: -.5rem;
        padding: .85rem 1.1rem;
    }

    .about__badge strong { font-size: 1.5rem; }

    .h-btn {
        padding: .85rem 1.4rem;
        font-size: .8rem;
    }
}

@media (prefers-reduced-motion: reduce) {
    .reveal {
        opacity: 1;
        transform: none;
        transition: none;
    }

    .beltbar__track,
    .hero__dot.is-active::after,
    .hero__scroll span {
        animation: none;
    }

    .hero__bg { transform: none; }
}

/* Ana sayfadaki kısaltılmış "Hakkımızda" metninin devam bağlantısı */
.about__more {
    display: inline-flex;
    align-items: center;
    gap: .4rem;
    margin-left: .35rem;
    white-space: nowrap;
    font-weight: 700;
    color: var(--k-red);
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: border-color .25s var(--k-ease), gap .25s var(--k-ease);
}

.about__more:hover,
.about__more:focus-visible {
    border-bottom-color: var(--k-red);
    gap: .6rem;
}

.about__more i { font-size: .75em; }

/* Kartın/markanın tamamını saran <a> etiketleri Bootstrap'in varsayılan mavi
   bağlantı rengini alıyordu. İçlerideki yazıların kendi rengi olduğu için
   görünmüyordu ama rengi belirtilmemiş her yeni metin mavi çıkardı. */
.k-brand,
.k-drawer__brand,
.card,
.news-hero {
    color: inherit;
}
