/* ═══════════════════════════════════════════════
   Fibertech Kompozit — Main Stylesheet
   styles/main.css  |  Açık Tema (Tam Açık)
═══════════════════════════════════════════════ */

:root {
    /* ── Kurumsal Renkler ── */
    --teal: #1a7a8a;
    --teal-dark: #135f6c;
    --teal-light: #2a9db0;
    --teal-xlt: rgba(26, 122, 138, .10);

    /* ── Turuncu (logo rengi — değişmedi) ── */
    --orange: #cc9451;
    --orange-dark: #b37f42;
    --orange-dim: rgba(204, 148, 81, .12);

    /* ── Açık Tema Arka Planlar ── */
    --bg-page: #f2efe9;
    /* Ana sayfa zemini — sıcak krem */
    --bg-section: #e8e4dc;
    /* Alternatif section — biraz daha koyu krem */
    --bg-card: #faf8f4;
    /* Kart zemini — neredeyse beyaz */
    --bg-white: #ffffff;
    /* Tam beyaz (form, tablolar) */

    /* ── Koyu Bölümler → Açık Versiyonlar ── */
    --dark: #dedad2;
    /* Eskiden koyu, şimdi açık krem-gri */
    --darker: #d4cfc6;
    /* Eskiden daha koyu, şimdi biraz daha koyu krem */

    /* ── Metin ── */
    --text-dark: #1e2330;
    /* Başlıklar */
    --text-body: #3d4354;
    /* Gövde metni */
    --text-muted: #6a7080;
    /* İkincil metin */
    --text-light: #a0a5b1;
    /* Çok soluk metin */

    /* ── Kenarlıklar ── */
    --border: #ccc8c0;
    /* Ana kenarlık — sıcak gri */
    --border-lt: #dedad4;
    /* Hafif kenarlık */

    /* ── Durum Renkleri ── */
    --success: #16a34a;
    --danger: #dc2626;

    --nav-h: 72px;
}

*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Barlow', sans-serif;
    color: var(--text-body);
    background: var(--bg-page);
    overflow-x: hidden;
}

/* ══════════════════════════════════════
   NAVBAR — açık tema
══════════════════════════════════════ */
nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    height: var(--nav-h);
    background: rgba(232, 228, 220, .97);
    backdrop-filter: blur(14px);
    border-bottom: 2px solid rgba(204, 148, 81, .35);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 5%;
    transition: box-shadow .3s;
}

nav.scrolled {
    box-shadow: 0 6px 40px rgba(0, 0, 0, .12);
}

.nav-logo {
    text-decoration: none;
    display: flex;
    align-items: center;
}

.nav-logo img {
    height: 120px;
    filter: brightness(1.0);
    transition: opacity .2s;
}

.nav-logo:hover img {
    opacity: .8;
}

.nav-links {
    display: flex;
    gap: 2.8rem;
    list-style: none;
}

.nav-links a {
    color: var(--text-body);
    text-decoration: none;
    font-size: 0.88rem;
    font-weight: 600;
    letter-spacing: .06em;
    text-transform: uppercase;
    transition: color .2s;
    position: relative;
    padding-bottom: 4px;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--orange);
    transition: width .25s;
}

.nav-links a:hover {
    color: var(--teal-dark);
}

.nav-links a:hover::after {
    width: 100%;
}

.nav-cta {
    background: var(--orange) !important;
    color: #fff !important;
    padding: .5rem 1.4rem !important;
    border-radius: 4px;
    font-weight: 700 !important;
    font-size: 1rem !important;
    transition: background .2s, transform .15s !important;
}

.nav-cta::after {
    display: none !important;
}

.nav-cta:hover {
    background: var(--orange-dark) !important;
    transform: translateY(-1px);
    color: #fff !important;
}

.nav-hamburger {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    background: none;
    border: none;
    padding: 4px;
}

.nav-hamburger span {
    display: block;
    width: 28px;
    height: 2px;
    background: var(--text-dark);
    border-radius: 2px;
    transition: all .3s;
}

/* ══════════════════════════════════════
   HERO SLIDER — Yeni Renk Düzeni
══════════════════════════════════════ */
.hero {
    position: relative;
    height: 100vh;
    min-height: 620px;
    overflow: hidden;
    margin-top: var(--nav-h);
}

.slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity .9s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slide.active {
    opacity: 1;
    z-index: 1;
}

.slide-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-color: #120a02;
    /* Koyu zemin rengi sıcak tona uyarlandı */
    animation: kenBurns 12s ease-in-out infinite alternate;
}

@keyframes kenBurns {
    from {
        transform: scale(1.00);
    }

    to {
        transform: scale(1.06);
    }
}

.slide:not(.active) .slide-bg {
    animation: none;
}

.slide:nth-child(1) .slide-bg {
    background-color: #120a02;
}

.slide:nth-child(2) .slide-bg {
    background-color: #1a120b;
}

.slide:nth-child(3) .slide-bg {
    background-color: #0d0906;
}

.slide-bg::before {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 1;
    opacity: .12;
    background-image:
        repeating-linear-gradient(0deg, transparent, transparent 59px, rgba(255, 255, 255, .05) 60px),
        repeating-linear-gradient(90deg, transparent, transparent 59px, rgba(255, 255, 255, .05) 60px);
}

.slide-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 2;
    background: linear-gradient(to bottom, rgba(0, 0, 0, .45) 0%, rgba(0, 0, 0, .22) 40%, rgba(0, 0, 0, .55) 100%);
}

.slide-content {
    position: relative;
    z-index: 3;
    text-align: center;
    padding: 0 5%;
    max-width: 850px;
    width: 100%;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.slide.active .slide-content {
    animation: fadeUp .9s ease both;
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(36px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.slide-tag {
    display: inline-block;
    background: var(--orange);
    color: #fff;
    font-size: .75rem;
    font-weight: 700;
    letter-spacing: .16em;
    text-transform: uppercase;
    padding: .4rem 1.1rem;
    border-radius: 3px;
    margin-bottom: 1.6rem;
}

.slide-title {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: clamp(3rem, 6vw, 5.5rem);
    font-weight: 900;
    line-height: 1.0;
    color: #fff;
    text-transform: uppercase;
    margin-bottom: 1.4rem;
    text-shadow: 0 2px 24px rgba(0, 0, 0, .5);
}

/* Eski --teal-light rengi yerine ana logodaki turuncu renginiz atandı */
.slide-title span {
    color: var(--orange);
}

.slide:nth-child(2) .slide-title span {
    color: #ffb07a;
}

.slide:nth-child(3) .slide-title span {
    color: #e6b475;
    /* Eski mavi/turkuaz ton sıcak turuncu-krem tonuyla güncellendi */
}

.slide-desc {
    font-size: 1.35rem;
    line-height: 1.75;
    color: #fff;
    margin-bottom: 2.5rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    text-shadow: 0 1px 8px rgba(0, 0, 0, .4);
}

.slide-btns {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
}

.slide-btn {
    display: inline-flex;
    align-items: center;
    gap: .6rem;
    background: var(--orange);
    color: #fff;
    padding: 1rem 2.2rem;
    border-radius: 4px;
    font-weight: 700;
    font-size: 1rem;
    text-decoration: none;
    letter-spacing: .03em;
    transition: background .2s, transform .2s, box-shadow .2s;
    box-shadow: 0 4px 24px rgba(204, 148, 81, .4);
}

.slide-btn:hover {
    background: var(--orange-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 32px rgba(204, 148, 81, .5);
}

.slide-btn.outline {
    background: transparent;
    border: 2px solid rgba(255, 255, 255, .6);
    box-shadow: none;
    backdrop-filter: blur(4px);
}

.slide-btn.outline:hover {
    background: rgba(255, 255, 255, .12);
    border-color: #fff;
    transform: translateY(-2px);
}

.slide-btn svg {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
}

.slide-progress {
    position: absolute;
    bottom: 0;
    left: 0;
    height: 3px;
    z-index: 10;
    background: var(--orange);
    width: 0%;
    transition: width 5.5s linear;
}

.slide-progress.run {
    width: 100%;
}

.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    width: 56px;
    height: 56px;
    background: rgba(255, 255, 255, .1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, .2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background .2s, transform .3s;
}

.slider-arrow:hover {
    background: var(--orange);
    transform: translateY(-50%) scale(1.1);
}

.slider-arrow svg {
    width: 22px;
    height: 22px;
    color: #fff;
}

.arrow-prev {
    left: 2.5%;
}

.arrow-next {
    right: 2.5%;
}

.slider-dots {
    position: absolute;
    bottom: 2.2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    display: flex;
    gap: .7rem;
}

.dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .3);
    cursor: pointer;
    transition: all .35s;
    border: 1px solid rgba(255, 255, 255, .3);
}

.dot.active {
    background: var(--orange);
    width: 32px;
    border-radius: 4px;
    border-color: var(--orange);
}

.slide-counter {
    position: absolute;
    bottom: 2.2rem;
    right: 4%;
    z-index: 10;
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    color: rgba(255, 255, 255, .4);
}

.slide-counter span {
    color: #fff;
    font-size: 1.5rem;
}

/* ══════════════════════════════════════
   STATS BAR — açık tema
══════════════════════════════════════ */
.stats-bar {
    background: #ddd8ce;
    padding: 2.8rem 5%;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    border-top: 3px solid var(--orange);
    border-bottom: 1px solid var(--border);
}

.stat-item {
    text-align: center;
    padding: 1rem;
    border-right: 1px solid var(--border);
}

.stat-item:last-child {
    border-right: none;
}

.stat-num {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 3rem;
    font-weight: 900;
    color: var(--orange);
    line-height: 1;
}

.stat-label {
    color: var(--text-muted);
    font-size: .8rem;
    margin-top: .5rem;
    letter-spacing: .07em;
    text-transform: uppercase;
}

/* ══════════════════════════════════════
   SECTION COMMON
══════════════════════════════════════ */
section {
    padding: 6rem 5%;
}

.section-label {
    display: inline-block;
    font-size: .72rem;
    font-weight: 700;
    letter-spacing: .22em;
    text-transform: uppercase;
    color: var(--orange);
    margin-bottom: .9rem;
}

.section-label::before {
    content: '— ';
}

.section-title {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: clamp(2rem, 3.5vw, 3rem);
    font-weight: 900;
    text-transform: uppercase;
    line-height: 1.1;
    color: var(--text-dark);
    margin-bottom: 1.2rem;
}

.section-title span {
    color: #6a5f5f;
}

.section-subtitle {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--text-muted);
    max-width: 560px;
}



/* ══════════════════════════════════════
    HAKKIMIZDA — Güncellenmiş & Büyütülmüş
══════════════════════════════════════ */

#hakkimizda .section-title span,
#iletisim .section-title span {
    color: var(--orange);
    /* --teal yerine kurumsal turuncu atandı */
}

#hakkimizda {
    background: var(--bg-page);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
    padding: 100px 5%;
    /* Bölüm boşluğu artırıldı */
}

.about-visual {
    position: relative;
}

.about-illustration {
    width: 100%;
    aspect-ratio: 4/3;
    border-radius: 10px;
    overflow: hidden;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 20px 60px rgba(0, 0, 0, .12);
    border: 1px solid var(--border);
}

.about-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.about-illustration::after {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 2;
    background: linear-gradient(to bottom, rgba(0, 0, 0, .15) 0%, rgba(0, 0, 0, .35) 100%);
}

/* Resim üzerindeki küçük istatistik kutuları */
.about-float-stat {
    position: absolute;
    z-index: 3;
    background: var(--orange);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, .25);
    border-radius: 8px;
    padding: .9rem 1.4rem;
    /* Biraz büyütüldü */
    text-align: center;
    color: #fff;
}

.about-float-stat:nth-child(1) {
    top: 1.5rem;
    left: 1.5rem;
}

.about-float-stat:nth-child(3) {
    bottom: 1.5rem;
    left: 1.5rem;
    right: auto;
}

.afs-num {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 2rem;
    /* 1.8'den 2'ye çıkarıldı */
    font-weight: 900;
    color: #fff;
    line-height: 1;
}

.afs-label {
    font-size: .75rem;
    /* .68'den .75'e çıkarıldı */
    letter-spacing: .08em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, .95);
    margin-top: .3rem;
}

/* Sağ taraftaki dairesel "20+ Yıl" rozeti */
.about-badge {
    position: absolute;
    bottom: -1.8rem;
    right: -1.8rem;
    z-index: 4;
    background: var(--orange);
    color: #fff;
    width: 140px;
    /* 130'dan 140'a çıkarıldı */
    height: 140px;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 32px rgba(204, 148, 81, .4);
    border: 4px solid var(--bg-page);
}

.about-badge-num {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 3rem;
    /* 2.6'dan 3'e çıkarıldı */
    font-weight: 900;
    line-height: 1;
}

.about-badge-text {
    font-size: .8rem;
    /* .65'den .8'e çıkarıldı */
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
}

/* METİN ALANI GÜNCELLEMELERİ */
.about-text .section-title {
    font-size: 3rem;
    /* Başlık büyütüldü */
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.about-text .section-subtitle {
    font-size: 1.15rem;
    /* .95 civarından 1.15'e çıkarıldı */
    max-width: 100%;
    margin-bottom: 2.5rem;
    line-height: 1.7;
    color: var(--text-body);
}

.about-checks {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1.1rem;
    /* Aralarındaki boşluk artırıldı */
    margin-bottom: 2.8rem;
}

.about-checks li {
    display: flex;
    align-items: center;
    /* Check ikonlarını metinle daha iyi ortaladık */
    gap: 1rem;
    font-size: 1.1rem;
    /* .97'den 1.1'e çıkarıldı */
    font-weight: 500;
    line-height: 1.4;
    color: #453d3d;
}

.about-checks li::before {
    content: '✓';
    flex-shrink: 0;
    width: 28px;
    /* 24'ten 28'e çıkarıldı */
    height: 28px;
    border-radius: 50%;
    background: #000;
    /* Maddelerdeki check arka planı turuncu yapıldı */
    color: #fff;
    font-size: .85rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Buton Düzenlemesi */
.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: .7rem;
    background: var(--orange);
    /* Ana buton rengi turuncu yapıldı */
    color: #fff;
    padding: 1.1rem 2.4rem;
    /* Buton et kalınlığı artırıldı */
    border-radius: 6px;
    font-size: 1.05rem;
    font-weight: 600;
    text-decoration: none;
    letter-spacing: .02em;
    transition: all .3s ease;
}

.btn-primary:hover {
    background: var(--orange-dark);
    /* Hover rengi koyu turuncu yapıldı */
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(204, 148, 81, 0.2);
    /* Gölge efekti turuncuya uyarlandı */
}



/* ══════════════════════════════════════
    PRODUCTS — Açık Tema
══════════════════════════════════════ */
#urunler {
    background: var(--bg-section);
    position: relative;
    overflow: hidden;
    padding: 7rem 5%;
}

#urunler::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 260px;
    height: 3px;
    background: linear-gradient(90deg, var(--orange), transparent);
}

.products-header {
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
    z-index: 1;
}

.products-header .section-label {
    color: var(--text-muted);
    letter-spacing: .28em;
}

.products-header .section-title {
    color: var(--text-dark);
}

.products-header .section-subtitle {
    max-width: 560px;
    margin: 0 auto;
    color: var(--text-muted);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    position: relative;
    z-index: 1;
}

.product-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 12px;
    overflow: hidden;
    transition: transform .3s cubic-bezier(.22, .68, 0, 1.2), box-shadow .3s, border-color .3s;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    position: relative;
}

/* [GÜNCELLEME] Kartın en üstündeki çizgi mavi yerine kurumsal turuncu yapıldı */
.product-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--orange);
    opacity: 0;
    transition: opacity .3s;
}

/* [GÜNCELLEME] Kartın dışındaki parlama/gölge ve çerçeve efektleri turuncuya uyarlandı */
.product-card:hover {
    transform: translateY(-7px) scale(1.012);
    box-shadow: 0 24px 56px rgba(0, 0, 0, .09), 0 0 0 1px rgba(204, 148, 81, .18);
    border-color: rgba(204, 148, 81, .28);
}

.product-card:hover::before {
    opacity: 1;
}

.product-img {
    height: 220px;
    position: relative;
    overflow: hidden;
    background: var(--bg-section);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.product-img::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(30, 35, 48, .18) 0%, transparent 55%);
    z-index: 1;
    transition: opacity .3s;
}

.product-img-actual {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    inset: 0;
    transition: transform .5s cubic-bezier(.22, .68, 0, 1.1);
}

.product-card:hover .product-img-actual {
    transform: scale(1.07);
}

.product-img-placeholder {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: .5rem;
    color: var(--border);
}

.product-img-placeholder svg {
    width: 44px;
    height: 44px;
}

.product-img-placeholder span {
    font-size: .68rem;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: var(--text-light);
    font-weight: 600;
}

.product-method {
    position: absolute;
    top: .9rem;
    left: .9rem;
    z-index: 3;
    background: var(--orange);
    color: #fff;
    font-size: .68rem;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
    padding: .35rem .9rem;
    border-radius: 4px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, .12);
}

.product-body {
    padding: 1.6rem 1.8rem 2rem;
    display: flex;
    flex-direction: column;
    flex: 1;
    position: relative;
}

.product-body::before {
    content: '';
    position: absolute;
    left: 0;
    top: 1.4rem;
    bottom: 1.4rem;
    width: 3px;
    background: linear-gradient(to bottom, #6a5f5f, transparent);
    border-radius: 2px;
    opacity: .35;
    transition: opacity .3s;
}

.product-card:hover .product-body::before {
    opacity: .8;
}

.product-name {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 1.5rem;
    font-weight: 900;
    text-transform: uppercase;
    color: var(--orange-dark);
    margin-bottom: .7rem;
    letter-spacing: .02em;
    line-height: 1.05;
}

.product-use {
    font-size: .85rem;
    color: #6a5f5f;
    font-weight: 700;
    letter-spacing: .05em;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: .5rem;
    margin-bottom: 1rem;
}

.product-use::before {
    content: '';
    width: 16px;
    height: 2px;
    background: var(--orange);
    flex-shrink: 0;
}

.product-desc {
    font-size: .98rem;
    color: #000;
    line-height: 1.65;
    flex: 1;
    font-weight: 700;
}

/* ══════════════════════════════════════
    REFERENCES — Final Açık Tema & Galeri
══════════════════════════════════════ */

#referanslar {
    background: #f2efe9;
    padding: 80px 0;
}

#referanslar .section-title {
    color: var(--text-dark);
}

#referanslar .section-subtitle {
    color: var(--text-muted);
    text-align: center;
    /* Metni merkeze hizalar */
    margin-left: auto;
    /* Yatayda ortalamak için */
    margin-right: auto;
    /* Yatayda ortalamak için */
    max-width: 700px;
    /* Metnin çok uzayıp okunabilirliği bozmasını engeller */
}

.ref-header {
    text-align: center;
    margin-bottom: 2.5rem;
}

.ref-header .section-label {
    color: var(--text-muted);
    letter-spacing: .22em;
}

.ref-header .section-label::before {
    content: '— ';
}

.ref-table-wrap {
    overflow-x: auto;
    border-radius: 12px;
    border: 1px solid var(--border);
    box-shadow: 0 4px 25px rgba(0, 0, 0, 0.05);
    margin: 0 5%;
}

table {
    width: 100%;
    border-collapse: collapse;
}

thead {
    background: var(--teal-xlt);
}

thead th {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: .78rem;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--teal-dark);
    padding: 1.2rem 1.4rem;
    text-align: left;
}

tbody tr {
    border-bottom: 1px solid var(--border-lt);
    transition: background .15s;
    background: var(--bg-white);
}

tbody tr:nth-child(even) {
    background: var(--bg-card);
}

tbody tr:hover {
    background: rgba(26, 122, 138, 0.05);
}

tbody td {
    padding: 1rem 1.4rem;
    font-size: .95rem;
    color: var(--text-body);
    vertical-align: middle;
}

/* Proje İsimleri */
tbody td:nth-child(2) {
    color: var(--text-dark);
    font-weight: 600;
}

.td-year {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--orange) !important;
}

/* ── Görsel Önizleme (Thumbnail) ── */
.ref-img-trigger {
    width: 60px;
    height: 45px;
    background: var(--bg-page);
    border: 1px solid var(--border);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
    position: relative;
}

.ref-thumb {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.9);
    transition: 0.4s ease;
}

.ref-img-trigger:hover {
    border-color: var(--teal);
    transform: scale(1.08);
    box-shadow: 0 5px 15px rgba(26, 122, 138, 0.2);
}

.ref-img-trigger:hover .ref-thumb {
    filter: brightness(1.1);
}

/* ── Lightbox Modal (Galeri Açılışı) ── */
.gallery-modal {
    display: none;
    /* JS ile kontrol edilir */
    position: fixed;
    z-index: 999999;
    /* En üst katmanda kalması için */
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(15, 18, 25, 0.97);
    /* Daha derin koyuluk */
    backdrop-filter: blur(12px);
}

.modal-content {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    width: 100%;
}

.modal-content img {
    max-width: 85%;
    max-height: 80vh;
    border-radius: 8px;
    border: 2px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 0 60px rgba(0, 0, 0, 0.7);
    object-fit: contain;
    user-select: none;
}

/* KAPATMA BUTONU - Kesin Çözüm Ayarları */
.close-gallery {
    position: absolute;
    top: 30px;
    right: 40px;
    color: #fff;
    font-size: 50px;
    font-weight: 300;
    cursor: pointer !important;
    z-index: 1000001;
    /* Modaldan bile üstte olmalı */
    line-height: 1;
    padding: 15px;
    transition: 0.3s ease;
    pointer-events: auto;
    /* Tıklanabilir olduğundan emin oluyoruz */
}

.close-gallery:hover {
    color: var(--orange);
    transform: rotate(90deg);
}

/* Navigasyon Okları */
.prev-img,
.next-img {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.05);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 18px 22px;
    cursor: pointer;
    font-size: 24px;
    border-radius: 50%;
    transition: 0.3s;
    z-index: 1000000;
    user-select: none;
}

.prev-img:hover,
.next-img:hover {
    background: var(--teal);
    border-color: var(--teal-light);
}

.prev-img {
    left: 5%;
}

.next-img {
    right: 5%;
}

.ref-row {
    cursor: pointer;
}

/* Alt Sayaç */
.image-counter {
    position: absolute;
    bottom: 35px;
    left: 50%;
    transform: translateX(-50%);
    color: #fff;
    font-family: 'Barlow Condensed', sans-serif;
    letter-spacing: 3px;
    font-size: 1.1rem;
    background: rgba(0, 0, 0, 0.3);
    padding: 5px 20px;
    border-radius: 30px;
    pointer-events: none;
}





/* ══════════════════════════════════════
    VISION — Güncellenmiş & Büyütülmüş
══════════════════════════════════════ */

#vizyon {
    background: #eae6dd;
    text-align: center;
    padding: 100px 5%;
    /* Bölüm boşluğu artırıldı */
}

#vizyon .section-label {
    color: var(--text-muted);
    font-size: 1rem;
    /* Etiket biraz büyütüldü */
    letter-spacing: .25em;
}

#vizyon .section-title {
    color: var(--text-dark);
    font-size: 3rem;
    /* Hakkımızda başlığıyla eşitlendi */
    line-height: 1.2;
    margin-top: 1rem;
}

#vizyon .section-title::after {
    content: '';
    display: block;
    width: 80px;
    /* Çizgi biraz uzatıldı */
    height: 4px;
    /* Çizgi kalınlaştırıldı */
    background: var(--orange);
    margin: 1.5rem auto 0;
}

.vision-text {
    font-size: 1.2rem;
    /* 1.05'ten 1.2'ye çıkarıldı */
    line-height: 1.9;
    color: #010101;
    max-width: 900px;
    /* Metin alanı genişletildi */
    margin: 2rem auto 4rem;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    /* Kartlar arası boşluk artırıldı */
    margin-top: 4rem;
}

.value-card {
    background: rgba(255, 255, 255, .75);
    border: 1px solid var(--border);
    border-radius: 12px;
    /* Köşeler biraz daha yumuşatıldı */
    padding: 3rem 2rem;
    /* İç boşluk (padding) artırıldı */
    text-align: left;
    transition: all 0.3s ease;
}

.value-card:hover {
    background: var(--bg-white);
    border-color: var(--orange);
    box-shadow: 0 15px 35px rgba(26, 122, 138, .15);
    transform: translateY(-5px);
    /* Hover efekti eklendi */
}

.value-icon {
    font-size: 2.8rem;
    /* 2'den 2.8'e çıkarıldı */
    margin-bottom: 1.5rem;
    display: block;
}

.value-title {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 1.4rem;
    /* 1.2'den 1.4'e çıkarıldı */
    font-weight: 800;
    color: var(--text-dark);
    text-transform: uppercase;
    margin-bottom: 0.8rem;
    letter-spacing: 0.05em;
}

.value-desc {
    font-size: 1rem;
    /* 0.87'den 1rem'e çıkarıldı */
    color: var(--text-muted);
    line-height: 1.7;
}

/* ══════════════════════════════════════
    CONTACT — Kurumsal Açık Tema
══════════════════════════════════════ */
#iletisim {
    background: #e8e2d5;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.contact-info .section-subtitle {
    max-width: 100%;
    margin-bottom: 2rem;
}

.contact-items {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    background: var(--bg-card);
    padding: 1.2rem 1.5rem;
    border-radius: 8px;
    border: 1px solid var(--border);

    /* [GÜNCELLEME] Dikey çizgi rengi istediğin #6a5f5f tonu yapıldı */
    border-left: 4px solid #6a5f5f;

    transition: border-color .25s, background .25s, transform .2s, box-shadow .2s;
    cursor: default;
}

.contact-item:hover {
    /* [GÜNCELLEME] Kartın üzerine gelince dikey çizgi kurumsal turuncuya döner */
    border-left-color: var(--orange);
    border-color: var(--orange);
    /* Dış ince çerçeve de hafifçe turuncuya yaklaşır */
    background: #fff8f1;
    transform: translateX(4px);
    box-shadow: 0 4px 20px rgba(204, 148, 81, .12);
}

.contact-item:hover .ci-icon {
    background: rgba(204, 148, 81, .12);
    color: var(--orange);
}

.ci-icon {
    width: 42px;
    height: 42px;
    border-radius: 8px;
    flex-shrink: 0;
    background: var(--teal-xlt);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--teal);
    transition: background .25s, color .25s;
}

.ci-label {
    font-size: .72rem;
    font-weight: 600;
    letter-spacing: .06em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: .25rem;
}

.ci-value {
    font-size: .95rem;
    font-weight: 500;
    color: var(--text-dark);
}

.ci-value a {
    color: inherit;
    text-decoration: none;
}

.contact-form-wrap {
    background: var(--bg-white);
    padding: 2.5rem;
    border-radius: 8px;
    border: 1px solid var(--border);
    box-shadow: 0 4px 24px rgba(0, 0, 0, .06);
    margin-top: 1.45rem;
}

.form-title {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 1.7rem;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--text-dark);
    margin-bottom: 1.6rem;
    border-bottom: 2px solid var(--border-lt);
    padding-bottom: .8rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: .4rem;
    margin-bottom: 1rem;
}

.form-group label {
    font-size: .78rem;
    font-weight: 700;
    letter-spacing: .05em;
    text-transform: uppercase;
    color: var(--text-body);
}

.form-group input,
.form-group textarea {
    padding: .8rem 1rem;
    border: 1.5px solid var(--border);
    border-radius: 5px;
    font-family: 'Barlow', sans-serif;
    font-size: .95rem;
    color: var(--text-dark);
    background: var(--bg-page);
    transition: border-color .2s, box-shadow .2s;
    outline: none;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--teal);
    box-shadow: 0 0 0 3px rgba(26, 122, 138, .1);
    background: #fff;
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.btn-submit {
    width: 100%;
    padding: 1rem;
    background: #6a5f5f;
    color: #fff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 1.15rem;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    transition: background .2s, transform .15s;
}

.btn-submit:hover {
    background: var(--orange);
    transform: translateY(-1px);
}

/* Form gönderilirken buton kilitlendiğinde devreye giren stil */
.btn-submit:disabled {
    background: var(--text-muted);
    cursor: not-allowed;
    transform: none;
}

.form-success {
    display: none;
    text-align: center;
    padding: 2rem;
    background: #f0faf5;
    border: 2px solid #34c77b;
    border-radius: 8px;
    margin-top: 1rem;
}

.form-success.show {
    display: block;
    animation: fadeUp .4s ease;
}

.form-success .fs-icon {
    font-size: 2.5rem;
    margin-bottom: .8rem;
}

.form-success h3 {
    color: #1a6e3f;
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 1.4rem;
    margin-bottom: .5rem;
}

.form-success p {
    color: var(--text-muted);
    font-size: .9rem;
}

/* ══════════════════════════════════════
   FOOTER — açık tema
══════════════════════════════════════ */
footer {
    background: var(--darker);
    color: var(--text-muted);
    padding: 2rem 5% 1rem;
    border-top: 2px solid var(--border);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 2rem;
    margin-bottom: 1.5rem;
    padding-bottom: .5rem;
}

.footer-brand img {
    height: 180px;
    margin-bottom: .5rem;
    filter: brightness(.95);
}

.footer-brand p {
    font-size: .97rem;
    line-height: 1.75;
    max-width: 300px;
    color: #4a4540;
}

.footer-col {
    padding-top: 3.2rem;
}

.footer-col h4 {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: #1a1714;
    margin-bottom: 1.2rem;
}

.footer-col ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: .75rem;
}

.footer-col ul li a {
    color: #3a3530;
    text-decoration: none;
    font-size: 1rem;
    transition: color .2s;
}

.footer-col ul li a:hover {
    color: var(--orange);
}

.footer-bottom {
    border-top: 1px solid var(--border);
    padding-top: 1.2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
    font-size: .8rem;
}

.signature-wrapper {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.sig-text {
    font-size: .7rem;
    color: #000;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 600;
}

.sig-badge.logo-only {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: .6rem 1.8rem;
    background: #2c2c2c;
    border: 1px solid var(--border);
    border-radius: 12px;
    transition: all .5s cubic-bezier(.4, 0, .2, 1);
    overflow: hidden;
    min-width: 120px;
}

.sig-logo {
    width: 57px;
    height: 32px;
    background-image: url('../images/inowax_logo.png');
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    filter: brightness(.7) grayscale(.2);
    transition: all .5s ease;
    z-index: 2;
}

.sig-glow {
    position: absolute;
    top: 0;
    left: -150%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(204, 148, 81, .2), transparent);
    transition: .6s;
    z-index: 1;
}

.sig-badge.logo-only:hover {
    background: #483c32;
    border-color: var(--orange);
    transform: translateY(-5px);
    box-shadow: 15px 10px 25px 15px rgba(204, 148, 81, .18);
}

.sig-badge.logo-only:hover .sig-logo {
    filter: brightness(1) grayscale(0);
    transform: scale(1.05);
}

.sig-badge.logo-only:hover .sig-glow {
    left: 150%;
}

.copyright-text {
    flex: 2;
    text-align: center;
    color: var(--text-muted);
}

.footer-spacer {
    flex: 1;
}

/* ══════════════════════════════════════
   WHATSAPP
══════════════════════════════════════ */
.wa-btn {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 999;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: #25d366;
    box-shadow: 0 4px 20px rgba(37, 211, 102, .45);
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: transform .25s, box-shadow .25s;
    animation: pulsewa 2.5s infinite;
}

.wa-btn:hover {
    transform: scale(1.12);
    box-shadow: 0 8px 32px rgba(37, 211, 102, .65);
    animation: none;
}

.wa-btn svg {
    width: 32px;
    height: 32px;
}

@keyframes pulsewa {

    0%,
    100% {
        box-shadow: 0 4px 20px rgba(37, 211, 102, .45);
    }

    50% {
        box-shadow: 0 4px 32px rgba(37, 211, 102, .7), 0 0 0 10px rgba(37, 211, 102, .1);
    }
}

/* ══════════════════════════════════════
   MOBILE MENU — açık tema
══════════════════════════════════════ */
.mobile-menu {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 998;
    background: var(--bg-section);
    padding: calc(var(--nav-h) + 2rem) 5% 2rem;
    flex-direction: column;
    gap: 0;
}

.mobile-menu.open {
    display: flex;
}

.mobile-menu a {
    color: var(--text-dark);
    text-decoration: none;
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    text-transform: uppercase;
    transition: color .2s;
    border-bottom: 1px solid var(--border);
    padding: 1rem 0;
}

.mobile-menu a:hover {
    color: var(--orange);
}

/* ══════════════════════════════════════
   SCROLL REVEAL
══════════════════════════════════════ */
.reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity .65s ease, transform .65s ease;
}

.reveal.visible {
    opacity: 1;
    transform: none;
}

/* ══════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════ */
@media (max-width: 1200px) {
    .products-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 960px) {
    #hakkimizda {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    #iletisim {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .stats-bar {
        grid-template-columns: repeat(2, 1fr);
    }

    .values-grid {
        grid-template-columns: 1fr 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }

    .nav-links {
        display: none;
    }

    .nav-hamburger {
        display: flex;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .products-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .signature-wrapper {
        justify-content: center;
    }
}

@media (max-width: 600px) {
    :root {
        --nav-h: 64px;
    }

    #urunler {
        padding: 5rem 4%;
    }

    .values-grid {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }

    .about-badge {
        width: 100px;
        height: 100px;
        right: 0;
        bottom: -.8rem;
    }

    .about-badge-num {
        font-size: 2rem;
    }

    .slide-btns {
        flex-direction: column;
        align-items: center;
    }

    .products-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .product-img {
        height: 200px;
    }

    .slider-arrow {
        width: 44px;
        height: 44px;
    }

    .arrow-prev {
        left: 1%;
    }

    .arrow-next {
        right: 1%;
    }
}