/* GENEL AYARLAR */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #121212;
    color: #e0e0e0;
    line-height: 1.6;
}

/* MENÜ ÇUBUĞU */
/* NAVBAR VE LOGO AYARLARI */
header {
    background-color: rgba(26, 26, 26, 0.95); /* Hafif şeffaf elit görünüm */
    padding: 10px 5%;
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 2px solid #9e7e4a;
    backdrop-filter: blur(10px); /* Cam efekti */
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1300px;
    margin: 0 auto;
}
/* --- LOGO VE MARKA İSMİ GRUBU --- */
.logo-link {
    display: flex;
    align-items: center; /* Logo ve yazıyı tam ortalar */
    text-decoration: none; /* Link çizgisini kaldırır */
    gap: 15px; /* Logo ile isim arasındaki mesafe */
}

.logo img {
    height: 50px; /* Logoyu buradan büyütebilirsiniz */
    width: auto;
    mix-blend-mode: screen; /* Arka plan beyazlığını gizler */
    transition: transform 0.4s ease;
}

.logo-text {
    font-size: 1.8rem;
    font-weight: 800;
    color: #9e7e4a; /* Marka turuncusu */
    letter-spacing: 2px;
    text-transform: uppercase;
    font-family: 'Segoe UI', sans-serif;
    transition: 0.3s;
}

/* Hover (Üzerine Gelince) Efekti */
.logo-link:hover img {
    transform: scale(1.05);
}

.logo-link:hover .logo-text {
    color: #ffffff; /* Yazı beyaza döner */
}
.nav-links {
    list-style: none;
    display: flex;
    gap: 30px;
}

.nav-links a {
    text-decoration: none;
    color: #ffffff;
    font-weight: 600;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: #9e7e4a;
}
/* BÖLÜMLER VE YERLEŞİM */
.bolum {
    padding: 60px 10%;
    max-width: 2000px;
    margin: 0 auto;
    text-align: center;
}

.gri {
    background-color: #1a1a1a;
    max-width: 100%; /* Gri şerit tüm ekranı kaplasın */
}

h2 {
    color: #9e7e4a;
    margin-bottom: 20px;
    font-size: 2rem;
}

/* HAKKIMIZDA SAYFASINDAKİ GRİ KUTUCUKLAR */
.liste-izgara {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    margin-top: 30px;
}

.liste-izgara span {
    background: #252525;
    padding: 5px 5px;
    border-radius: 5px;
    border-left: 2px solid #9e7e4a;
    font-weight: bold;
    color: #fff;
    min-width: 20px;
    transition: 0.0s;
}

.liste-izgara span:hover {
    background: #333;
    transform: translateY(-3px);
}

/* ELİT ÜRÜN KARTLARI TASARIMI */
.urun-grid {
    display: grid;
    grid-template-columns: repeat(3, 2fr);
    gap: 5px; /* Kartlar arası boşluk arttırıldı */
    max-width: 1250px;
    margin: 20px auto;
    padding: 0 20px;
}

.urun-kart {
    background: linear-gradient(145deg, #1e1e1e, #141414); /* Hafif derinlikli geçiş */
    padding: 10px;
    border-radius: 5px;
    border: 1px solid rgba(230, 171, 119, 0.2); /* Çok ince turuncu çerçeve */
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    text-align: center;
    position: relative;
    cursor: pointer;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.urun-kart:hover {
    border-color: #9e7e4a;
    transform: translateY(-0px); /* Kartın tamamı yukarı yükselir */
    box-shadow: 0 30px 40px rgba(230, 126, 34, 0.15); /* Turuncu hafif parlama */
}

/* GÖRSEL ALANI VE ZOOM EFEKTİ */
.urun-resim-alan {
    background: #ffffff;
    height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 5px;
    overflow: hidden; /* Zoom yapınca dışarı taşmaması için */
    margin-bottom: 0px;
    padding: 0px;
}

.urun-resim-alan img {
    max-width: 120%;
    max-height: 120%;
    object-fit: contain;
    filter: drop-shadow(0 5px 15px rgba(0,0,0,0.1));
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1); /* Yumuşak zoom hızı */
}

/* Üzerine gelince (hover) veya tıklayınca (active) zoom efekti */
.urun-kart:hover .urun-resim-alan img,
.urun-kart:active .urun-resim-alan img {
    transform: scale(1.25); /* %25 zoom yapar */
}

/* YAZILARIN AŞAĞI KAYDIRILMASI VE ELİT TİPOGRAFİ */
.urun-kart h3 {
    color: #9e7e4a;
    font-size: 1.4rem;
    margin-top: 10px;
    margin-bottom: 15px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.urun-kart p {
    color: #b0b0b0;
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 10px;
}

/* ALT TEKNİK BİLGİ YAZISI (Mesafe Ayarı) */
.teknik-bilgi-zarif {
    margin-top: 100px; /* Görsellere çok yakın olmaması için mesafe artırıldı */
    margin-bottom: 50px;
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 40px;
    letter-spacing: 2px;
}

.teknik-bilgi-zarif p {
    color: #888;
    font-size: 0.9rem;
    text-transform: uppercase;
}

/* FOOTER */
footer {
    background: #000;
    padding: 40px 5%;
    border-top: 1px solid #333;
    text-align: center;
}

footer p {
    margin-bottom: 10px;
    font-size: 0.9rem;
    color: #888;
}

/* HAKKIMIZDA SAYFASI ELİT DOKUNUŞLAR */

/* İstatistik Kutuları */
.istatistik-grid {
    display: flex;
    justify-content: space-around;
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.istatistik-kutu h3 {
    font-size: 3rem;
    color: #9e7e4a;
    margin-bottom: 5px;
    font-weight: 800;
}

.istatistik-kutu p {
    color: #888;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.8rem;
}

/* Vizyon Bandı (Sayfanın Altındaki Vurgu) */
.vizyon-bandi {
    background: linear-gradient(rgba(0,0,0,0.8), rgba(0,0,0,0.8)), url('../../images/tesis-bg.jpg');
    background-size: cover;
    background-attachment: fixed; /* Kaydırma efekti */
    padding: 100px 10%;
    text-align: center;
    border-top: 2px solid #9e7e4a;
}

.vizyon-icerik h3 {
    color: #9e7e4a;
    font-size: 2.2rem;
    margin-bottom: 20px;
}

.vizyon-icerik p {
    max-width: 700px;
    margin: 0 auto;
    font-size: 1.1rem;
    color: #eee;
}

/* Sektör Kartları (Daha elit bir görünüm için) */
.sektor-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    max-width: 1100px;
    margin: 40px auto;
}

.sektor-kart {
    background: #1a1a1a;
    border: 1px solid #333;
    padding: 20px;
    border-radius: 8px;
    transition: 0.3s;
}

.sektor-kart:hover {
    border-color: #9e7e4a;
    background: #222;
    transform: translateY(-5px);
}
/* --- DROPDOWN LİSTE SİSTEMİ --- */

/* Ürünler Sekmesi */
.dropdown {
    position: relative;
    padding-bottom: 25px; /* Buton ve liste arasında görünmez köprü */
    margin-bottom: -25px;
}

/* Açılan Liste Kutusu */
.dropdown-content {
    display: none;
    position: absolute;
    top: 100%; /* Butonun tam altı */
    left: 0;
    background-color: #1a1a1a;
    min-width: 260px;
    list-style: none; /* Noktaları kaldır */
    padding: 10px 0;
    margin: 0;
    border-top: 3px solid #9e7e4a; /* Bronz Şerit */
    border-radius: 0 0 8px 8px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.8);
    z-index: 9999;
}

/* Listedeki Her Bir Satır */
.dropdown-content li {
    width: 100%;
    display: block; /* Alt alta dizilmeyi garanti eder */
}

/* Liste İçindeki Linkler */
.dropdown-content li a {
    display: block;
    width: 100%;
    padding: 12px 25px;
    color: #b5bdc8 !important; /* Gümüş Renk */
    text-decoration: none;
    font-size: 0.85rem;
    text-align: left;
    text-transform: uppercase;
    transition: all 0.3s ease;
    border: none !important; /* Varsa ekstra çerçeveleri kaldır */
}

/* Üzerine Gelince */
.dropdown-content li a:hover {
    background-color: #252525;
    color: #9e7e4a !important; /* Bronz Renk */
    padding-left: 35px; /* Sağa kayma efekti */
}

/* Hover Tetikleyici */
.dropdown:hover .dropdown-content {
    display: block;
    animation: dropdownFade 0.3s ease;
}

/* Yumuşak Açılış Animasyonu */
@keyframes dropdownFade {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* ÜRÜN DETAY SAYFASI TASARIMI */
.detay-konteynir {
    display: flex;
    gap: 60px;
    align-items: center;
    text-align: left;
    margin-top: 40px;
}

.detay-gorsel {
    flex: 1;
    background: #fff; /* Ürün fotosunun net görünmesi için beyaz zemin */
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.5);
}

.detay-gorsel img {
    width: 100%;
    height: auto;
}

.detay-icerik {
    flex: 1.2;
}

.urun-baslik {
    color: #b5bdc8; /* Gümüş */
    font-size: 3rem;
    font-weight: 800;
}

.bronz-cizgi {
    width: 70px;
    height: 5px;
    background: #9e7e4a; /* Bronz */
    margin: 20px 0;
}

.teknik-tablo {
    background: #1a1a1a;
    padding: 25px;
    border-radius: 12px;
    margin: 30px 0;
}

.teknik-tablo h3 { color: #9e7e4a; margin-bottom: 15px; }

.teknik-tablo ul li {
    list-style: none;
    padding: 10px 0;
    border-bottom: 1px solid #333;
    color: #b5bdc8;
}

.btn-teklif {
    display: inline-block;
    background: #9e7e4a;
    color: #fff;
    padding: 15px 40px;
    text-decoration: none;
    font-weight: bold;
    border-radius: 5px;
    transition: 0.3s;
}

.btn-teklif:hover { background: #b5bdc8; color: #121212; }

/* Mobilde görselleri ve yazıları alt alta getir */
@media (max-width: 768px) {
    .detay-konteynir { flex-direction: column; text-align: center; }
    .bronz-cizgi { margin: 20px auto; }
}

/* Linklerin altındaki varsayılan çizgileri kaldırır */
.kart-link, .nav-links a, .dropdown-content a {
    text-decoration: none !important;
}

/* Ürün kartlarındaki başlıkların rengini korur */
.urun-kart h3 {
    text-decoration: none;
    display: inline-block; /* Çizginin bazen kalmasını engeller */
}

/* Eğer linkin rengi maviye döndüyse, rengi beyaza veya gümüşe sabitleyelim */
.kart-link {
    color: inherit;
}
.modal-govde {
    display: flex;
    gap: 30px;
    align-items: center;
}

.modal-sol { flex: 1; background: #fff; padding: 20px; border-radius: 10px; }
.modal-sol img { width: 100%; height: auto; }
.modal-sag { flex: 1; text-align: left; }

/* Mobilde alt alta gelmesi için */
@media (max-width: 768px) {
    .modal-govde { flex-direction: column; }
    .modal-icerik { width: 90%; margin: 10% auto; }
}
/* GALERİ DÜZENİNİ YAN YANA GETİREN KOD */
.urun-galeri {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); /* Yan yana dizer */
    gap: 25px;
    padding: 40px 10%;
    max-width: 1400px;
    margin: 0 auto;
}

.alt-urun-kart {
    background: #1a1a1a;
    padding: 20px;
    border-radius: 12px;
    border: 1px solid #333;
    text-align: center;
    cursor: pointer;
    transition: 0.3s ease;
}

.alt-urun-kart img {
    width: 100%;
    height: 150px;
    object-fit: contain; /* Resimleri kutuya sığdırır, bozmaz */
    background: #fff; /* Ürün net görünsün diye beyaz zemin */
    border-radius: 8px;
    margin-bottom: 15px;
}

.alt-urun-kart h4 {
    color: #b5bdc8; /* Gümüş */
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 1px;
}

.alt-urun-kart:hover {
    border-color: #9e7e4a; /* Bronz */
    transform: translateY(-5px);
}

/* MODAL ARKAPLAN - TÜM EKRANI KAPLAR */
.modal-arkaplan {
    display: none; /* Başlangıçta gizli */
    position: fixed; /* EKRANA SABİTLER */
    z-index: 99999; /* HER ŞEYİN ÜSTÜNDE DURUR */
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.85); /* Arka planı karartır */
    backdrop-filter: blur(10px); /* Arka planı bulanıklaştırır */
    
    /* İçeriği tam ortalamak için flex düzeni */
    align-items: center;
    justify-content: center;
}

.modal-icerik {
    background-color: #121212;
    padding: 40px;
    border: 2px solid #9e7e4a; /* Bronz çerçeve */
    border-radius: 20px;
    width: 70%;
    max-width: 900px;
    position: relative;
    box-shadow: 0 0 50px rgba(158, 126, 74, 0.3);
}


@keyframes modalGiris {
    from { transform: scale(0.8); opacity: 0; }
    to { transform: scale(1); opacity: 1; }
}
/* KARE SLIDER ÖZEL AYARLARI */
.urun-slider {
    flex: 1;
    max-width: 400px; /* Çok devasa olmaması için */
}

.slider-pencere {
    width: 100%;
    aspect-ratio: 1 / 1; /* TAM KARE FORM */
    overflow: hidden;
    background: #fff; 
    border-radius: 20px;
    border: 2px solid #9e7e4a;
    display: flex;
    align-items: center;
}

.slider-liste {
    display: flex;
    width: 100%;
    height: 100%;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.slider-img {
    min-width: 100%;
    height: 100%;
    object-fit: contain; /* Resmi kutuya sığdırır */
    padding: 30px;
}

.slider-nav {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 15px;
}

.nav-nokta {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    border: 2px solid #9e7e4a;
    background: transparent;
    cursor: pointer;
    transition: 0.3s;
}

.nav-nokta.aktif {
    background: #9e7e4a;
}

.slider-ipucu {
    color: #888;
    font-size: 0.8rem;
    margin-top: 8px;
    text-align: center;
}



/* HERO BÖLÜMÜ TASARIMI */
.hero-bolumu {
    height: 85vh; /* Ekranın %85'ini kaplar */
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), 
                url('../images/fabrika-hero.jpg'); /* Buraya fabrika veya üretim görseli koy */
    background-size: cover;
    background-position: center;
    background-attachment: fixed; /* Kaydırırken görsel sabit kalır (Parallax efekti) */
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    border-bottom: 3px solid #9e7e4a;
}

.hero-icerik {
    max-width: 900px;
    padding: 0 20px;
    animation: fadeInUp 1s ease; /* Giriş efekti */
}

.ust-baslik {
    color: #9e7e4a;
    font-size: 1.1rem;
    letter-spacing: 4px;
    margin-bottom: 20px;
}

.ana-baslik {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 25px;
}

.ana-baslik span {
    color: #9e7e4a; /* Bronz vurgu */
}

.hero-metin {
    font-size: 1.2rem;
    color: #b5bdc8;
    margin-bottom: 40px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* BUTONLAR */
.hero-butonlar {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.btn-ana {
    padding: 15px 35px;
    background: #9e7e4a;
    color: #fff;
    text-decoration: none;
    font-weight: bold;
    border-radius: 5px;
    transition: 0.3s;
}

.btn-ikincil {
    padding: 15px 35px;
    background: transparent;
    color: #fff;
    border: 2px solid #9e7e4a;
    text-decoration: none;
    font-weight: bold;
    border-radius: 5px;
    transition: 0.3s;
}

.btn-ana:hover { background: #fff; color: #000; }
.btn-ikincil:hover { background: #9e7e4a; }

/* GİRİŞ ANİMASYONU */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

/* MOBİL AYAR */
@media (max-width: 768px) {
    .ana-baslik { font-size: 2.2rem; }
    .hero-butonlar { flex-direction: column; }
}/* HERO BÖLÜMÜ TASARIMI */
.hero-bolumu {
    height: 85vh; /* Ekranın %85'ini kaplar */
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), 
                url('../images/fabrika-hero.jpg'); /* Buraya fabrika veya üretim görseli koy */
    background-size: cover;
    background-position: center;
    background-attachment: fixed; /* Kaydırırken görsel sabit kalır (Parallax efekti) */
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    border-bottom: 3px solid #9e7e4a;
}

.hero-icerik {
    max-width: 900px;
    padding: 0 20px;
    animation: fadeInUp 1s ease; /* Giriş efekti */
}

.ust-baslik {
    color: #9e7e4a;
    font-size: 1.1rem;
    letter-spacing: 4px;
    margin-bottom: 20px;
}

.ana-baslik {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 25px;
}

.ana-baslik span {
    color: #9e7e4a; /* Bronz vurgu */
}

.hero-metin {
    font-size: 1.2rem;
    color: #b5bdc8;
    margin-bottom: 40px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* BUTONLAR */
.hero-butonlar {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.btn-ana {
    padding: 15px 35px;
    background: #9e7e4a;
    color: #fff;
    text-decoration: none;
    font-weight: bold;
    border-radius: 5px;
    transition: 0.3s;
}

.btn-ikincil {
    padding: 15px 35px;
    background: transparent;
    color: #fff;
    border: 2px solid #9e7e4a;
    text-decoration: none;
    font-weight: bold;
    border-radius: 5px;
    transition: 0.3s;
}

.btn-ana:hover { background: #fff; color: #000; }
.btn-ikincil:hover { background: #9e7e4a; }

/* GİRİŞ ANİMASYONU */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

/* MOBİL AYAR */
@media (max-width: 768px) {
    .ana-baslik { font-size: 2.2rem; }
    .hero-butonlar { flex-direction: column; }
}
/* ARKA PLANDA SİLİK LOGO EFEKTİ */
.hizmet-sektorleri {
    position: relative; /* Arka planın bu alana hapsolması için */
    padding: 100px 0;
    background-color: #0d0d0d; /* Sitenin mevcut siyah tonu */
    overflow: hidden; /* Logonun dışarı taşmasını engeller */
}

/* HİZMET SEKTÖRLERİ GENEL ALAN */
.hizmet-sektorleri {
    position: relative;
    padding: 120px 0; /* İçeriği biraz daha ferahlattık */
    background-color: #0d0d0d;
    overflow: hidden; /* Logonun sayfadan taşmasını önler */
    text-align: center;
}

/* DEV SİLİK LOGO (WATERMARK) */
.sektor-arka-plan-logo {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 1200px; /* Logoyu iyice büyüttük */
    height: 1200px;
    background-image: url('../images/logo-site.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    opacity: 0.1; /* Siliklik derecesi */
    z-index: 0;
    pointer-events: none;
}

/* İÇERİĞİN LOGONUN ÜSTÜNDE KALMASI */
.hizmet-sektorleri .konteynir {
    position: relative;
    z-index: 1; /* Yazıları logonun önüne çeker */
}

/* SEKTÖR ETİKETLERİNE MİMARİ DOKUNUŞ */
.sektor-etiket {
    display: inline-block;
    padding: 8px 15px;
    margin: 3px;
    background: rgba(255, 255, 255, 0.05); /* Çok hafif şeffaf beyaz */
    border: 1px solid rgba(158, 126, 74, 0.3); /* Bronz çerçeve */
    border-radius: 5px;
    color: #fff;
    font-size: 0.8rem;
    transition: 0.5s;
}

.sektor-etiket:hover {
    background: #9e7e4a;
    border-color: #9e7e4a;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(158, 126, 74, 0.3);
}
/* GİRİŞ EKRANI (HERO) TASARIMI */
.hero-ekran {
    position: relative;
    height: 90vh; /* Ekranın %90'ını kaplar */
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #ffffff;
    background: url('../images/fabrika-bg.jpg') no-repeat center center/cover;
    background-attachment: fixed; /* Parallax efekti sağlar */
}

.hero-filtre {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0, 0, 0, 0.7); /* Görselin üzerini karartarak yazıları öne çıkarır */
    z-index: 1;
}

.hero-icerik {
    position: relative;
    z-index: 2;
    max-width: 900px;
    padding: 0 20px;
}

.ust-etiket {
    color: #9e7e4a; /* Bronz/Altın vurgu rengi */
    font-size: 14px;
    letter-spacing: 4px;
    font-weight: 700;
    text-transform: uppercase;
}

.hero-icerik h1 {
    font-size: 4rem;
    font-weight: 800;
    margin: 20px 0;
    line-height: 1.1;
}

.hero-icerik h1 span {
    color: #9e7e4a;
}

.hero-icerik p {
    font-size: 1.2rem;
    color: #cccccc;
    margin-bottom: 40px;
}

/* BUTONLAR */
.hero-butonlar {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.btn-ana {
    padding: 16px 35px;
    background: #9e7e4a;
    color: #fff;
    text-decoration: none;
    font-weight: 700;
    border-radius: 4px;
    transition: 0.3s;
}

.btn-ikincil {
    padding: 16px 35px;
    border: 2px solid #9e7e4a;
    color: #fff;
    text-decoration: none;
    font-weight: 700;
    border-radius: 4px;
    transition: 0.3s;
}

.btn-ana:hover { background: #fff; color: #000; }
.btn-ikincil:hover { background: #9e7e4a; }

/* MOBİL UYUMLULUK */
@media (max-width: 768px) {
    .hero-icerik h1 { font-size: 2.5rem; }
    .hero-butonlar { flex-direction: column; }
}
/* HERO PROFESYONEL DÜZEN */
.hero-profesyonel {
    position: relative;
    height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background-color: #000;
}

.hero-arka-plan {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    z-index: 1;
}

.hero-arka-plan img {
    width: 100%; height: 100%;
    object-fit: cover;
    opacity: 0.5; /* Görselin yazıyı boğmaması için */
}

.hero-karartma {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: radial-gradient(circle, rgba(0,0,0,0.2) 0%, rgba(0,0,0,0.8) 100%);
}

.hero-icerik-kapsayici {
    position: relative;
    z-index: 2;
    text-align: center;
    color: #fff;
}

.ust-etiket-altin {
    color: #9e7e4a;
    letter-spacing: 5px;
    font-weight: 700;
    font-size: 14px;
    margin-bottom: 20px;
    display: block;
}

.ana-baslik-v2 {
    font-size: 4rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 30px;
}

.ana-baslik-v2 span {
    color: #9e7e4a;
}

/* BUTONLARIN MODERNİZASYONU */
.hero-aksiyon-butonlari {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-top: 40px;
}

.btn-dolu-altin {
    background: #9e7e4a;
    color: #fff;
    padding: 18px 40px;
    text-decoration: none;
    font-weight: 700;
    border-radius: 4px;
    transition: 0.3s ease;
}

.btn-cerceve-altin {
    border: 2px solid #9e7e4a;
    color: #fff;
    padding: 18px 40px;
    text-decoration: none;
    font-weight: 700;
    border-radius: 4px;
    transition: 0.3s ease;
}

.btn-dolu-altin:hover { background: #fff; color: #000; }
.btn-cerceve-altin:hover { background: #9e7e4a; }
.kurumsal-belgeler {
    padding: 80px 0;
    background: #000;
    text-align: center;
}

.belge-izgarasi {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin-top: 40px;
}

.belge-kart {
    display: flex;
    align-items: center;
    background: #111;
    padding: 25px;
    border: 1px solid #222;
    border-radius: 8px;
    text-decoration: none;
    transition: 0.3s;
}

.belge-kart:hover {
    border-color: #9e7e4a;
    transform: translateY(-5px);
    background: #161616;
}

.belge-ikon {
    font-size: 2.5rem;
    color: #9e7e4a;
    margin-right: 20px;
}

.belge-detay h3 {
    color: #fff;
    font-size: 1.1rem;
    margin-bottom: 5px;
    text-align: left;
}

.belge-detay span {
    color: #888;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: block;
    text-align: center;
}

/* Mobilde ortalama */
@media (max-width: 768px) {
    .belge-kart { justify-content: center; }
}
.hakkimizda-ozet-yeni {
    position: relative;
    padding: 100px 0;
    background-color: #0c0c0c; /* Mevcut koyu temanla uyumlu */
    overflow: hidden;
}

.arkaplan-logo-filigran {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px; /* Logonun büyüklüğü */
    height: 600px;
    /* GÖRSEL YOLUNU KONTROL ET: assets/images içinde logo-site.png olmalı */
    background: url('assets/images/cizgilogo.png') no-repeat center center;
    background-size: contain;
    opacity: 0.5; /* Çok hafif, zarif durması için */
    z-index: 1;
    pointer-events: none; /* Yazının seçilmesini engellemez */
}

.icerik-ustte {
    position: relative;
    z-index: 2; /* Yazıları logonun üstüne çıkarır */
}
/* HAKKIMIZDA METİN BLOĞU DÜZENLEME */
.kurumsal-ozet {
    position: relative;
    padding: 120px 0; /* Üst ve alttan biraz daha genişlik ferahlık katar */
    background-color: #0c0c0c;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center; /* Yatayda ortalar */
    text-align: center; /* Metni merkeze odaklar */
}

.konteynir-ozet {
    position: relative;
    z-index: 2;
    max-width: 1400px; /* Metnin çok yayılmaması için ideal genişlik */
    margin: 0 auto;
    padding: 0 40px;
}

.altin-baslik {
    color: #9e7e4a;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 35px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.aciklama-metni {
    color: #e0e0e0;
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 25px;
    text-align: center; /* Paragrafları ortalar */
}

/* Vurgulanan ALPFLANŞ yazısı için */
.kurumsal-ozet strong {
    color: #fff;
    font-weight: 600;
}
/* İLETİŞİM SAYFASI ÖZEL TASARIM */
/* --- ARKA PLAN VE CAM EFEKTİ GÜNCELLEMESİ --- */
body.iletisim-sayfasi-body {
    margin: 0;
    padding: 0;
    /* Kapakk görselini buraya mühürlüyoruz */
    background: 
        linear-gradient(rgba(0, 0, 0, 0.75), rgba(0, 0, 0, 0.90)),
        url('../images/kapakk.png') no-repeat center center fixed;
    background-size: cover;
    min-height: 100vh;
}

/* Senin .iletisim-sayfasi sınıfını şeffaflaştırıyoruz */
.iletisim-sayfasi {
    background-color: transparent !important; /* Arka planı görmemiz için */
    color: #fff;
    padding: 120px 0 80px; /* Navbar'dan kurtarmak için padding'i artırdık */
}

/* KARTLARIN ARKA PLANINI "CAM" (BLUR) YAPIYORUZ */
.iletisim-kart {
    background: rgba(22, 22, 22, 0.8) !important; /* Hafif şeffaf siyah */
    backdrop-filter: blur(10px); /* Arkayı bulanıklaştıran sihirli dokunuş */
    padding: 40px;
    border-radius: 15px;
    text-align: center;
    border: 1px solid rgba(158, 126, 74, 0.2); /* Kenarları bronzlaştırdık */
    transition: 0.3s;
}

/* FORM ALANINI DA CAM YAPIYORUZ */
.form-alani {
    background: rgba(26, 26, 26, 0.8);
    backdrop-filter: blur(10px);
    padding: 30px;
    border-radius: 15px;
    border: 1px solid rgba(158, 126, 74, 0.2);
}

/* HARİTA ÇERÇEVESİ */
.harita-alani iframe {
    border-radius: 15px;
    border: 1px solid rgba(158, 126, 74, 0.3);
    filter: grayscale(1) invert(0.92) contrast(1.2); /* Haritayı koyu temaya uydurur */
}

/* --- SENİN DİĞER KODLARIN (Grid, Form Girişleri vb.) AYNI KALSIN --- */
.iletisim-sayfasi {
    background-color: #0d0d0d; /* Tam kurumsal siyah */
    color: #fff;
    padding: 80px 0;
}

.konteynir {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.sayfa-baslik {
    text-align: center;
    color: #9e7e4a; /* Bronz */
    font-size: 2rem;
    margin-bottom: 10px;
}

.bronz-ayrac {
    width: 60px;
    height: 4px;
    background: #9e7e4a;
    margin: 0 auto 20px;
}

.sayfa-aciklama {
    text-align: center;
    color: #888;
    margin-bottom: 50px;
}

/* KARTLAR */
.iletisim-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    margin-bottom: 60px;
}

.iletisim-kart {
    background: #161616;
    padding: 40px;
    border-radius: 15px;
    text-align: center;
    border: 1px solid #222;
    transition: 0.3s;
}

.iletisim-kart:hover {
    border-color: #9e7e4a;
    transform: translateY(-5px);
}

.kart-ikon { font-size: 2.5rem; margin-bottom: 15px; }
.iletisim-kart h3 { color: #9e7e4a; margin-bottom: 10px; font-size: 1.1rem; }
.iletisim-kart p { color: #bbb; font-size: 0.95rem; }

/* ALT BLOK (FORM & HARİTA) */
.iletisim-alt-blok {
    display: flex;
    gap: 40px;
    align-items: stretch;
}

.form-alani, .harita-alani { flex: 1; }

.elit-form { display: flex; flex-direction: column; gap: 15px; }

.form-grup { display: flex; gap: 15px; }

.elit-form input, .elit-form textarea {
    width: 100%;
    padding: 16px;
    background: #1a1a1a;
    border: 1px solid #333;
    border-radius: 8px;
    color: #fff;
    outline: none;
    transition: 0.3s;
}

.elit-form input:focus, .elit-form textarea:focus { border-color: #9e7e4a; }

.btn-gonder {
    background: #9e7e4a;
    color: #fff;
    padding: 18px;
    border: none;
    border-radius: 8px;
    font-weight: bold;
    cursor: pointer;
    transition: 0.3s;
}

.btn-gonder:hover { background: #b5bdc8; color: #121212; }

/* MOBİL UYUM */
@media (max-width: 900px) {
    .iletisim-alt-blok { flex-direction: column; }
    .form-grup { flex-direction: column; }
}
.btn-gonder:active {
    transform: scale(0.98); /* Tıklayınca hafifçe içeri çöker */
    opacity: 0.9;
}
/* ================================================= */
/* ALPFLANŞ PROFESYONEL BLOG & TEKNİK BİLGİ MERKEZİ */
/* ================================================= */

/* Genel Sayfa Yapısı */
/* BLOG SAYFASI ARKA PLAN GÜNCELLEMESİ */
body.blog-sayfasi-body {
    margin: 0;
    padding: 0;
    /* Karartma oranlarını %88'den %65'e düşürdüm, böylece resim daha net görünecek */
    background: 
        linear-gradient(rgba(0, 0, 0, 0.65), rgba(0, 0, 0, 0.85)),
        url('../images/kapakk.png') no-repeat center center fixed;
    
    background-size: cover;
    color: #ffffff;
    font-family: 'Inter', sans-serif;
    min-height: 100vh;
}

/* Üst Başlık Alanı */
.blog-ust-bolum {
    padding: 10px 0 20px;
    text-align: center;
    background: radial-gradient(circle at center, #151515 0%, #0c0c0c 100%);
    border-bottom: 1px solid #222;
}

.blog-ust-bolum h1 {
    font-size: 1.5rem;
    font-weight: 800;
    line-height: 1.2;
    margin-top: 20px;
}

.blog-ust-bolum h1 span {
    color: #9e7e4a; /* Kurumsal Bronz */
}

/* Blog Grid Düzeni */
.blog-grid-yapisi {
    display: grid;
    grid-template-columns: 1fr 350px; /* Yazılar geniş, sidebar sabit */
    gap: 50px;
    max-width: 1250px;
    margin: 60px auto;
    padding: 0 20px;
}

/* Teknik Makale Kartları */
.teknik-kart {
    background: #111;
    border-left: 4px solid #9e7e4a;
    border-radius: 4px;
    padding: 35px;
    margin-bottom: 40px;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    position: relative;
}

.teknik-kart:hover {
    background: #161616;
    transform: translateX(10px);
    box-shadow: -10px 10px 30px rgba(0,0,0,0.5);
}

.kart-badge {
    display: inline-block;
    background: rgba(158, 126, 74, 0.15);
    color: #9e7e4a;
    padding: 6px 15px;
    font-size: 0.75rem;
    font-weight: 800;
    border-radius: 50px;
    margin-bottom: 20px;
    letter-spacing: 1px;
}

.blog-tarih {
    display: block;
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 10px;
}

.teknik-kart h2 {
    font-size: 2rem;
    color: #fff;
    margin-bottom: 15px;
}

.teknik-kart p {
    color: #aaa;
    line-height: 1.8;
    font-size: 1.05rem;
}

/* Alt Bilgi ve İncele Butonu */
.kart-alt-bilgi {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 30px;
    padding-top: 25px;
    border-top: 1px solid #222;
}

.btn-incele {
    color: #9e7e4a;
    text-decoration: none;
    font-weight: 700;
    font-size: 1rem;
    display: flex;
    align-items: center;
    gap: 8px;
}

.btn-incele:hover {
    color: #fff;
}

.okuma-suresi {
    color: #555;
    font-size: 0.85rem;
}

/* Sağ Sidebar Bileşenleri */
.sidebar-kutu {
    background: #111;
    padding: 30px;
    border: 1px solid #222;
    border-radius: 8px;
    margin-bottom: 30px;
}

.sidebar-kutu h3 {
    color: #9e7e4a;
    font-size: 1.2rem;
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    gap: 12px;
    border-bottom: 1px solid #333;
    padding-bottom: 15px;
}

/* Teknik Danışmanlık Kutusu */
.uzman-kutu {
    border: 1px solid #9e7e4a !important;
    background: linear-gradient(145deg, #111 0%, #080808 100%);
}

.sidebar-link-altin {
    display: block;
    text-align: center;
    background: #9e7e4a;
    color: #fff;
    padding: 15px;
    text-decoration: none;
    font-weight: 800;
    border-radius: 4px;
    margin-top: 20px;
    transition: 0.3s;
}

.sidebar-link-altin:hover {
    background: #fff;
    color: #000;
}

/* Teknik Döküman Listesi */
.dokuman-listesi {
    list-style: none;
    padding: 0;
}

.dokuman-listesi li a {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #ccc;
    text-decoration: none;
    padding: 12px 0;
    border-bottom: 1px solid #222;
    font-size: 0.95rem;
    transition: 0.2s;
}

.dokuman-listesi li a:hover {
    color: #9e7e4a;
    padding-left: 5px;
}

/* Kategori Navigasyonu */
.blog-kategori-nav a {
    display: flex;
    justify-content: space-between;
    color: #999;
    text-decoration: none;
    padding: 10px 0;
    transition: 0.3s;
}

.blog-kategori-nav a:hover {
    color: #fff;
}

.blog-kategori-nav a span {
    color: #9e7e4a;
    font-weight: bold;
}

/* Mobil Uyumluluk */
@media (max-width: 992px) {
    .blog-grid-yapisi {
        grid-template-columns: 1fr;
    }
    .blog-ust-bolum h1 {
        font-size: 2.5rem;
    }
}
/* TÜM KURUMSAL SAYFALAR ORTAK ARKA PLAN TASARIMI */
body.blog-sayfasi-body,
body.urunler-sayfasi-body,
body.hakkimizda-sayfasi-body,
body.iletisim-sayfasi-body {
    margin: 0;
    padding: 0;
    background: 
        linear-gradient(rgba(0, 0, 0, 0.65), rgba(0, 0, 0, 0.85)),
        url('../images/kapakk.png') no-repeat center center fixed;
    
    background-size: cover;
    color: #ffffff;
    font-family: 'Inter', sans-serif;
    min-height: 100vh;
}

/* Hakkımızda Sayfasına Özel: Filigran Logo Düzeni */
body.hakkimizda-sayfasi-body .hakkimizda-logo-bg {
    opacity: 0.06; /* Arka planda resim olduğu için logoyu bir tık daha belirgin yaptık */
    filter: brightness(1.5); /* Logonun koyu resim üzerinde mühür gibi parlaması için */
}

/* Hakkımızda Metin Konteynırı */
.konteynir-ozet {
    background: rgba(0, 0, 0, 0.5); /* Metnin arkasına çok hafif bir siyahlık katmanı */
    backdrop-filter: blur(5px); /* Arka plan resmini metin altında yumuşatır */
    padding: 40px;
    border-radius: 12px;
}
/* MOBİL CİHAZLAR İÇİN GÖRSEL VE YAPI DÜZENLEME */

    @media (max-width: 768px) {
    /* 1. Navigasyon Çubuğu Düzenlemesi */
    .navbar {
        flex-direction: column; /* Logo ve Menüyü alt alta getir */
        padding: 15px 10px;
        height: auto; /* Sabit yükseklik varsa iptal et */
    }

    .nav-links {
        display: none; /* Mobilde menü linklerini gizle (Hamburger menü yapana kadar temiz durur) */
        /* Eğer linkler kalsın istersen 'display: flex' yapıp 'flex-wrap: wrap' ekleyebilirsin */
    }

    .logo {
        margin-bottom: 10px;
    }

    /* 2. Ürün Gridi Düzenlemesi (Alt Alta Durması İçin) */
    .urun-grid, .urun-liste, .yazi-akisi {
        display: flex !important;
        flex-direction: column !important; /* Kartları zorunlu olarak alt alta dizer */
        gap: 20px;
        padding: 0 15px;
    }

    /* 3. Ürün Kartı Genişliği */
    .urun-kart, .teknik-kart {
        width: 100% !important; /* Kartın ekranı tam kaplamasını sağlar */
        max-width: none !important;
        margin: 0 0 20px 0;
    }

    .urun-kart img {
        height: auto; /* Görsel oranını koru */
        max-height: 250px;
    }

    /* 4. Başlık Boyutları */
    h1, .altin-baslik {
        font-size: 1.6rem !important;
        text-align: center;
    }

    body.blog-sayfasi-body,
    body.urunler-sayfasi-body,
    body.hakkimizda-sayfasi-body,
    body.iletisim-sayfasi-body {
        /* Mobilde 'fixed' özelliği bazen sorun çıkarır, 'scroll' yaparak performansı artırıyoruz */
        background-attachment: scroll; 
        
        /* Görseli mobilde daha küçük ve ortalı hale getiriyoruz */
        background-position: center top; 
        
        /* Karartmayı mobilde bir tık artırarak metin okunabilirliğini garantiliyoruz */
        background: 
            linear-gradient(rgba(0, 0, 0, 0.80), rgba(0, 0, 0, 0.95)),
            url('../images/kapakk.png') no-repeat center top;
        background-size: cover;
    }

    /* Mobilde yazı boyutlarını ve başlıkları küçültelim ki görselin içinde boğulmasın */
    .blog-ust-bolum h1, .altin-baslik {
        font-size: 1.8rem !important;
        padding: 0 15px;
    }

    .teknik-kart, .sidebar-kutu {
        margin: 15px; /* Kenarlardan boşluk bırakarak görselin kenarlarını hissettirir */
        padding: 20px;
    }
}
/* MASAÜSTÜNDE HAMBURGERİ GİZLE */
.hamburger-ikon {
    display: none;
    cursor: pointer;
    flex-direction: column;
    gap: 6px;
    z-index: 1100;
}

.hamburger-ikon span {
    width: 30px;
    height: 3px;
    background-color: #9e7e4a; /* Kurumsal bronz rengin */
    transition: 0.4s;
}

/* MOBİL GÖRÜNÜM AYARLARI */
@media (max-width: 768px) {
    .hamburger-ikon {
        display: flex; /* Mobilde ikonu göster */
    }

    .nav-links {
        position: fixed;
        right: -100%; /* Menüyü ekranın sağında gizle */
        top: 0;
        width: 75%;
        height: 100vh;
        background: rgba(12, 12, 12, 0.98); /* Koyu kurumsal arka plan */
        backdrop-filter: blur(15px); /* Cam efekti */
        flex-direction: column;
        justify-content: center;
        align-items: center;
        transition: 0.5s cubic-bezier(0.77,0.2,0.05,1.0);
        z-index: 1050;
        border-left: 1px solid rgba(158, 126, 74, 0.3);
    }

    .nav-links.aktif {
        right: 0; /* Tıklanınca menüyü ekrana sür */
    }

    /* Hamburger İkonu Animasyonu (X işareti) */
    .hamburger-ikon.acik span:nth-child(1) { transform: rotate(45deg) translate(6px, 6px); }
    .hamburger-ikon.acik span:nth-child(2) { opacity: 0; }
    .hamburger-ikon.acik span:nth-child(3) { transform: rotate(-45deg) translate(6px, -6px); }
}
/* MASAÜSTÜ (DEĞİŞMEZ) */
.hamburger-ikon { display: none; }

/* MOBİL (768PX ALTI) */
@media (max-width: 768px)  {
    .nav-links {
        position: fixed;
        right: -100%; /* Menü kapalıyken ekranın dışında */
        top: 0;
        width: 80%;
        height: 100vh;
        background: #0c0c0c;
        display: flex; /* Flex yapısını koru ama konumu dışarda tut */
        flex-direction: column;
        justify-content: center;
        align-items: center;
        transition: 0.4s ease-in-out;
        z-index: 1500;
        border-left: 1px solid #9e7e4a;
    }

    /* JavaScript tıklandığında bu sınıf eklenecek */
    .nav-links.active {
        right: 0; /* Menüyü ekrana sürer */
    }

    .nav-links li {
        margin: 20px 0;
        display: block; /* Mobilde linklerin alt alta durmasını sağlar */
    }

    .hamburger-ikon {
        display: flex;
        flex-direction: column;
        gap: 5px;
        cursor: pointer;
        z-index: 2000;
        margin-left: auto; /* Logodan uzaklaştırıp sağa yaslar */
    }

    .hamburger-ikon span {
        width: 25px;
        height: 3px;
        background-color: #9e7e4a;
        transition: 0.3s;
    }

    .nav-links {
        position: fixed;
        right: -100%; /* Kapalıyken sağda gizli */
        top: 0;
        width: 80%; /* Ekranın %80'ini kaplar */
        height: 100vh;
        background: #0c0c0c;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        transition: 0.4s ease-in-out;
        z-index: 1500;
        border-left: 1px solid #9e7e4a;
    }

    .nav-links.aktif {
        right: 0; /* Tıklanınca açılır */
    }

    .nav-links li { margin: 15px 0; }

    /* İkon Animasyonu */
    .hamburger-ikon.acik span:nth-child(1) { transform: rotate(45deg) translate(5px, 6px); }
    .hamburger-ikon.acik span:nth-child(2) { opacity: 0; }
    .hamburger-ikon.acik span:nth-child(3) { transform: rotate(-45deg) translate(5px, -6px); }
}
/* SADECE MOBİL İÇİN YAN YANA DÜZEN */
@media (max-width: 768px) {
    .navbar {
        display: flex !important;
        flex-direction: row !important; /* Dikeyden yataya çevirir */
        justify-content: space-between !important; /* Birini sola, diğerini sağa iter */
        align-items: center !important; /* Dikeyde tam ortalar */
        padding: 10px 20px !important;
        height: 70px !important; /* Standart mobil header yüksekliği */
    }

    .logo {
        margin: 0 !important; /* Mobildeki ekstra boşlukları sıfırlar */
        display: flex;
        align-items: center;
    }

    .hamburger-menu {
        margin: 0 !important;
        display: flex !important;
    }

    /* Firma adının logoyla bitişik kalmasını sağlar */
    .logo-link {
        display: flex;
        align-items: center;
        gap: 10px;
    }
}

/* ================================================= */
/* ALPFLANŞ KATALOG SAYFASI - HATASIZ TEMİZ KOD      */
/* ================================================= */

/* Katalog Sayfası Genel Yapısı */
.katalog-sayfasi-body {
    margin: 0;
    padding: 0;
    /* Diğer sayfalarla ortak arka plan */
    background: 
        linear-gradient(rgba(0, 0, 0, 0.75), rgba(0, 0, 0, 0.90)),
        url('../images/kapakk.png') no-repeat center center fixed;
    background-size: cover;
    color: #ffffff;
    font-family: 'Inter', sans-serif;
}

.katalog-konteynir {
    max-width: 1200px;
    margin: 140px auto 80px; /* Navbar'dan kurtarmak için üst boşluk */
    padding: 0 20px;
}

.katalog-baslik {
    text-align: center;
    margin-bottom: 60px;
}

.katalog-baslik h1 {
    font-size: 2.8rem;
    font-weight: 800;
    letter-spacing: 2px;
}

.katalog-baslik h1 span {
    color: #9e7e4a; /* Kurumsal Bronz */
}

.katalog-baslik p {
    color: #aaa;
    margin-top: 15px;
    font-size: 1.1rem;
}

/* Katalog Kartları Grid Düzeni */
.katalog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* Yan yana 3 kart */
    gap: 30px;
}

.katalog-kart {
    background: rgba(17, 17, 17, 0.85); /* Cam efekti için şeffaflık */
    backdrop-filter: blur(10px);
    border: 1px solid rgba(158, 126, 74, 0.2);
    border-radius: 12px;
    padding: 50px 30px;
    text-align: center;
    transition: all 0.4s ease;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.katalog-kart:hover {
    transform: translateY(-10px);
    border-color: #9e7e4a;
    box-shadow: 0 20px 40px rgba(0,0,0,0.6);
}

/* İkon ve Metinler */
.katalog-ikon {
    font-size: 4rem;
    color: #9e7e4a;
    margin-bottom: 25px;
}

.katalog-kart h3 {
    font-size: 1.6rem;
    margin-bottom: 15px;
    color: #fff;
}

.katalog-kart p {
    color: #999;
    line-height: 1.6;
    font-size: 0.95rem;
}

/* İndir/Görüntüle Butonu */
.btn-indir {
    display: inline-block;
    margin-top: 30px;
    padding: 15px 30px;
    background: #9e7e4a;
    color: #fff;
    text-decoration: none;
    font-weight: 700;
    border-radius: 4px;
    transition: 0.3s ease;
}

.btn-indir:hover {
    background: #ffffff;
    color: #000000;
}

/* MOBİL GÖRÜNÜM (768px altı) */
@media (max-width: 992px) {
    .katalog-grid {
        grid-template-columns: repeat(2, 1fr); /* Tablette 2 kart */
    }
}

@media (max-width: 768px) {
    .katalog-grid {
        grid-template-columns: 1fr; /* Mobilde tek sütun */
        gap: 20px;
    }
    
    .katalog-konteynir {
        margin-top: 100px;
    }

    .katalog-baslik h1 {
        font-size: 2rem;
    }
}

/* ================================================= */
/* ALPFLANŞ YASAL SAYFASI TASARIMI                   */
/* ================================================= */

/* Arka Plan ve Sayfa Temeli */
body.yasal-sayfasi-body {
    margin: 0;
    padding: 0;
    background: 
        linear-gradient(rgba(0, 0, 0, 0.82), rgba(0, 0, 0, 0.94)),
        url('../images/kapakk.png') no-repeat center center fixed;
    background-size: cover;
    color: #ffffff;
    font-family: 'Inter', sans-serif;
}

.yasal-konteynir {
    max-width: 900px;
    margin: 140px auto 80px;
    padding: 0 20px;
}

.yasal-baslik {
    text-align: center;
    margin-bottom: 60px;
}

.yasal-baslik h1 {
    font-size: 2.5rem;
    font-weight: 800;
}

.yasal-baslik h1 span {
    color: #9e7e4a;
}

.bronz-ayrac {
    width: 60px;
    height: 3px;
    background: #9e7e4a;
    margin: 20px auto;
}

/* Kartlar ve Cam Efekti */
.yasal-kart {
    background: rgba(17, 17, 17, 0.85);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(158, 126, 74, 0.2);
    border-radius: 12px;
    padding: 40px;
    margin-bottom: 30px;
    transition: 0.3s ease;
}

.yasal-kart:hover {
    border-color: #9e7e4a;
    background: rgba(22, 22, 22, 0.95);
}

.yasal-kart p {
    text-align: justify; /* Metni her iki yana yaslar (Gazete/Kanun düzeni) */
    text-indent: 30px; /* Her paragrafın başını içeriden başlatır */
    font-size: 0.9rem;
    color: #cbd5e0;
    letter-spacing: 0.3px;
}

.yasal-kart h3 {
    border-bottom: 1px solid rgba(158, 126, 74, 0.3);
    padding-bottom: 15px;
    text-transform: uppercase; /* Başlıkları tamamen büyük harf yapar */
    letter-spacing: 1px;
}

/* Mobil Uyumluluk */
@media (max-width: 768px) {
    .yasal-konteynir {
        margin-top: 100px;
    }
    
    .yasal-baslik h1 {
        font-size: 2rem;
    }

    .yasal-kart {
        padding: 25px;
    }

    body.yasal-sayfasi-body {
        background-attachment: scroll; /* Mobilde performans için */
    }
}
