html {
    scroll-behavior: smooth;
}

.top-bar {
    background-color: #7f9b4a;
    color: #fff;
    font-size: 15px;
    padding: 18px 60px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-left {
    margin-left: 120px;
    display: flex;
    align-items: center;
    gap: 24px; /* spanlar arası boşluk */
    color: white; /* normalde beyaz */
    transition: color 0.3s ease;
}
/* Hover: üzerine gelince siyah olsun */
.top-left span:hover {
    color: black;
}

.top-left span:first-child {
    /* Telefon numarası için ekstra sağa kaydırma */
    margin-left: 10px;
}

.top-left span:last-child {
    /* Mail yerinde, ekstra margin gerek yok */
}

/* Sosyal ikonlar */
.top-right {
    margin-right: 150px;
    display: flex;
    align-items: center;
    gap: 20px;  /* ikonlar arasındaki boşluğu azaltarak sola çekilmiş gibi görünmesini sağlar */
}

.top-right a {
    display: inline-flex;
    align-items: center;
    margin-left: 0;  /* eski margin'i kaldırdık, gap ile kontrol ediliyor */
}

.top-right img {
    width: 15px;
    height: 15px;
    display: block;
        filter: brightness(0) invert(1);
            transition: filter 0.3s ease;
}
/* Hover: üzerine gelince siyah yap */
.top-right a:hover img {
    filter: brightness(0) invert(0); /* beyaz → siyah */
}
/* Menü bar genel stili */
.menu-bar {
    background-image: url(img/background.png);
    padding: 20px 60px;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    box-shadow: 0px 2px 5px rgba(0,0,0,0.05);
    border-bottom: 1px solid #e0e0e0;
}

/* Logo ve başlık solda */
.menu-left {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-left: 130px; /* sadece logo için sol boşluk */
}

.menu-left .logo img {
    width: 200px;
    height: auto;
    margin-left: 90px;
  margin-top: -30px;
display: block;
}

.menu-left .site-title h1 {
    font-size: 21px;
    margin: 0;
    color: #333;
}

/* Menü linkleri ve fotoğraflar sağda */
.menu-bar .main-menu {
    display: flex;
    align-items: center;
}

.menu-bar .main-menu ul {
    list-style: none;
    display: flex;

    gap: 25px;
    margin: 0;
    padding: 0;
}

/* Fotoğraf thumbnail'leri */
.menu-bar .main-menu .menu-photos {
    display: flex;
    align-items: center;
    gap: 5px;
    margin-right: 180px; /* logoya bağlı değil */
}

.menu-bar .main-menu .menu-photos a .menu-thumb {
    width: 85px;
    height: 85px;
    object-fit: cover;
    border-radius: 4px;
    display: block;
}

/* Yazılı menüleri grupla ve sola kaydır */
.menu-links-group {
    display: flex;
    align-items: center;
    gap: 20px; /* linkler arası boşluk */
    
}

.menu-links-group .menu-links {
    margin-right: 10px; /* sola kaydırma miktarı */
}

/* Menü linkleri ve hover */
.menu-bar .main-menu a {
    text-decoration: none;
    color: #333;
    font-weight: 50;
    font-size: 17px;
    display: inline-flex;
    align-items: center;
    gap: 5px; /* ikon ve yazı arası */
    transition: color 0.3s ease;
}

.menu-bar .main-menu a:hover {
    color: #7f9b4a;
}

/* Teklif butonu */
.menu-bar .main-menu .btn-teklif {
    padding: 10px 16px;
    background-color: #607835;
    color: #fff;
    border-radius: 4px;
    font-size: 16px;
    align-self: center;
    margin: 0;
}

.menu-bar .main-menu .btn-teklif:hover {
    background-color: #6e8a40;
}
.menu-links{
    display: flex;
    align-items: center;
    gap: 6px;
}

/* Home ikonu ayarı */
.menu-links a .menu-icon {
    width: 16px;
    height: 16px;
    display: block;
    margin-right: 10px;
    margin-top: 1px;
}

/* Arama ikonu */
.menu-links .search-icon img {
    width: 20px;
    height: 20px;
    cursor: pointer;
    transition: transform 0.2s ease;
    align-self: center;
   margin: 0;
}

.menu-links .search-icon img:hover {
    transform: scale(1.1);
}
.menu-home a {
    display: flex;
    align-items: center;
    justify-content: center;
}

.menu-icon {
    width: 18px;
    height: 18px;
    display: block;
}


.hero-banner {
    background-image: url("img/hero1.jpg");
    background-size: cover;
    background-position: center;
    height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-image 1s ease-in-out;
}

.hero-content {
    text-align: center;
    color: #fff;
    text-shadow: 4px 5px 7px rgba(0,0,0,0.7);
    margin-bottom: 200px ;
}

.hero-title {
    font-size: 34px;
    font-weight: 700;
    margin-bottom: 12px;
}
.hero-title-2 {
    font-size: 26px;
    font-weight: 600;
    margin: 0 0 10px 0;
    color: #fff;
}

.hero-date {
    display: block;
    font-size: 20px;
    letter-spacing: 1.5px;
    margin-bottom: 6px;
 
}

.hero-subtitle {
    font-size: 18px;
    font-weight: 600;
    margin: 0;
}


.kurumsal {
    background-image: url("img/background.png");
    background-repeat: no-repeat;
    background-position: center 30%;
    background-size: cover;
    padding: 80px 0;
}

.kurumsal .container {
    max-width: 1200px;
    margin: 0 auto;
}

/* Üst başlık alanı */
.kg-header {
    text-align: center;
    max-width: 750px;
    margin: 0 auto 60px auto;
}

.kg-subtitle {
    display: inline-block;
    font-size: 14px;
    letter-spacing: 1px;
color: #2b2b2b;
    margin-bottom: 4px;
    font-weight: 600;
    text-transform: uppercase;
}

.kg-header h2 {
    font-size: 40px;
    font-weight: 700;
          color: #759140;

    margin-bottom: 14px;
}

.kg-header p {
    font-size: 19px;
    line-height: 1.7;
    color: #444;
}

/* Grid yapı */
.kg-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px 60px;
}

/* Tek kart */
.kg-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.kg-item img {
    width: 48px;
    height: 48px;
    flex-shrink: 0;
}

/* Kart içi yazılar */
.kg-item h3 {
    font-size: 19px;
    font-weight: 700;
    margin: 0 0 8px 0;
    color: #2b2b2b;
}

.kg-item p {
    font-size: 15px;
    line-height: 1.6;
    color: #555;
    margin: 0;
}
.urunler {
    
    padding: 80px 0;
    text-align: center;
}

.urunler-container {
    width: 1200px;
    margin: 0 auto;
}

.urunler-title {
    font-size: 28px;
    color: #7aa33d;
    font-weight: 700;
    margin-bottom: 10px;
    letter-spacing: 1px;
}

.urunler-desc {
    font-size: 15px;
    color: #555;
    margin-bottom: 50px;
    line-height: 1.6;
}

.urunler-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
}

.urun-card {
    background: #fff;
    padding: 20px;
    border: 1px solid #ddd;
 transition: transform .25s ease, box-shadow .25s ease;
}

.urun-card img {
    width: 100%;
    height: 220px;
    object-fit: contain;
    background: transparent;
}

.urun-card h3 {
    font-size: 14px;
    font-weight: 700;
    margin: 15px 0 5px;
    color: #000;
    text-align: left;
    padding-left: 50px;
}

.urun-card p {
    font-size: 13px;
    color: #444;
    text-align: left;
    padding-left: 50px;
}

.urun-card a {
    color: #000;
    font-weight: 600;
    text-decoration: none;
}

.urun-card a:hover {
    text-decoration: underline;
}
/* ----- SÜRDÜRÜLEBİLİRLİK BÖLÜMÜ ----- */
.surdurulebilirlik {
    padding: 20px 20px;
    background-color: transparent; /* Kurumsal arka planla uyumlu */
    font-family: 'Roboto', sans-serif;
    border-radius: 12px; /* isteğe bağlı hafif yuvarlatma */
    margin-top: 60px; /* kurumsal içerikten ayrım */
    box-shadow: 0 4px 15px rgba(0,0,0,0.05); /* hafif gölge modern görünüm */
}

.surdur-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    gap: 40px;
    flex-wrap: wrap;
}

.surdur-image {
    flex: 1 1 400px;
    text-align: center;
}

.surdur-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    object-fit: cover;
}

.surdur-content {
    flex: 1 1 500px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.surdur-content h2 {
    font-size: 28px;
    color: #759140; /* kurumsal yeşil ton */
    margin-bottom: 0;
    font-weight: 700;
    text-transform: uppercase;
}

.surdur-content p {
    font-size: 14px;
    line-height: 1.6;
    color: #444;
    margin-top: 0;
}

.surdur-icons-image {
    margin-top: 30px;
}

.surdur-icons-image img {
    width: 300px;
    height: auto;
}

.hero-bottom {
    position: relative;
    width: 100%;
    overflow: hidden;
    height: 200px;
    margin-top: 40px;
}

.hero-bottom-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    animation: float-horizontal 10s ease-in-out infinite alternate;
}

.hero-bottom-texts {
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    transform: translateY(-50%);   /* 🔥 SADECE DİKEY ORTA */
    display: flex;
    justify-content: center;       /* 🔥 GRUP ORTALI */
    gap: 120px;                    /* 🔥 aralarındaki mesafe */
    text-align: center;
    color: #fff;
    font-family: 'Roboto', sans-serif;
}



.hero-stat span {
    display: block;
    font-size: 36px;
    font-weight: 700;
    color: #fff; /* kurumsal yeşil */
}

.hero-stat p {
    margin: 0;
    font-size: 16px;
    font-weight: 500;
}

/* Animasyon */
@keyframes float-horizontal {
    0%   { transform: translateX(0); }
    50%  { transform: translateX(-20px) scale(1.02); }
    100% { transform: translateX(0); }
}

/* ===== BİZDEN HABERLER BÖLÜMÜ ===== */
.bizden-haberler {
    padding: 80px 20px;
    background-image: url("img/background.png");
    font-family: 'Roboto', sans-serif;
}

.bizden-haberler .container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.bizden-haberler h2 {
    font-size: 36px;
    color: #759140; /* kurumsal yeşil */
    margin-bottom: 40px;
    font-weight: 700;
}

.haberler-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.haber-card {
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.haber-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 6px 18px rgba(0,0,0,0.1);
}

.haber-card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
}

.haber-card h3 {
    font-size: 20px;
    color: #333;
    margin: 12px 20px 8px 20px;
    font-weight: 700;
}

.haber-card p {
    font-size: 15px;
    color: #555;
    line-height: 1.6;
    margin: 0 20px 18px 20px;
}

.haber-card a {
    display: inline-block;
    font-size: 15px;
    font-weight: 600;
    color: #759140;
    text-decoration: none;
    margin-bottom: 20px;
}

.haber-card a:hover {
    text-decoration: underline;
}
/* İletişim Alanı */
.iletisim-header {
    background-color: #888;
    padding: 40px 20px;
    font-family: 'Roboto', sans-serif;
}

/* ANA HİZALAMA */
.iletisim-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr; /* sol - orta - sağ */
    align-items: center;
}

/* SOL */
.iletisim-left h2 {
    font-size: 24px;
    font-weight: 700;
    color: #fff;
    margin: 0;
}

/* ORTA */
.iletisim-center {
    text-align: center;
}

.call-text {
    display: block;
    font-size: 14px;
    letter-spacing: 1px;
    margin-bottom: 6px;
    color: #eaeaea;
}

.call-now {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 18px;
    font-weight: 700;
}

.call-now a {
    color: #fff;
    text-decoration: none;
}

.call-now a:hover {
    color: #111;
}

.phone-icon {
    width: 26px;
    height: 26px;
}

/* SAĞ */
.iletisim-right {
    display: flex;
    justify-content: flex-end;
    gap: 14px;
}

.iletisim-right img {
    width: 20px;
    height: 20px;
    filter: brightness(0) invert(0.9);
    transition: transform .3s ease, filter .3s ease;
}

.iletisim-right a:hover img {
    transform: scale(1.2);
    filter: brightness(0) invert(1);
}


/* ===== FOOTER ===== */
.site-footer {
    background-image: url("img/background.png");
    background-size: cover;
    padding: 80px 20px 30px;
    font-family: 'Roboto', sans-serif;
    color: #666;
}

.footer-container {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.1fr 2fr 1.2fr;
    gap: 40px;
}
.footer-logo{
    padding-left: 20px;
}
/* SOL LOGO */
.footer-logo img {
    width: 200px;
    margin-bottom: 10px;
    margin-left: 20px;
}

.footer-logo h3 {
    font-size: 20px;
    margin: 0;
    color: #2b2b2b;
    font-weight: 700;
}

.footer-logo span {
    font-size: 13px;
    color: #777;
}

/* BAŞLIKLAR */
.footer-col h4 {
    font-size: 16px;
    color: #2b2b2b;
    font-weight: 700;
    margin-bottom: 22px;
    letter-spacing: 1px;
}

/* ÜRÜNLER */
.footer-products-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.footer-products ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-products li {
    font-size: 14px;
    margin-bottom: 10px;
}

.footer-products a {
    text-decoration: none;
    color: #666;
}

.footer-products a:hover {
    color: #222;
}

.footer-products .bold {
    font-weight: 700;
    font-size: 14px;
    color: #555;
    margin-top: 12px;
    margin-bottom: 8px;
    display: block;
}

/* İLETİŞİM */
.footer-contact p {
    font-size: 14px;
    line-height: 1.8;
    margin-bottom: 12px;
}

.footer-phone {
    font-weight: 700;
    color: #444;
}

.footer-mail {
    color: #888;
}

/* ALT ŞERİT */
.footer-bottom {
    text-align: center;
    font-size: 12px;
    color: #888;
    margin-top: 50px;
    border-top: 1px solid #ddd;
    padding-top: 15px;
}


.urun-hero {
    width: 100%;
    height: 320px;
    background-image: url("img/KONTRPLAK.jpg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}


/* karartma */
.urun-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.45);
    z-index: 1;
}

.urun-hero-overlay {
    position: relative;
    z-index: 2;
    text-align: center;
    color: #fff;
    padding: 0 20px;
}

.urun-hero-overlay h1 {
    font-size: 40px;
    font-weight: 700;
    margin-bottom: 14px;
}

.urun-hero-overlay p {
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 18px;
}

/* breadcrumb */
.breadcrumb {
    font-size: 14px;
    opacity: 0.9;

}

.breadcrumb a {
    color: #fff;
    text-decoration: none;
}

.breadcrumb span {
    font-weight: 500;
}

/* ===============================
   ORTA İÇERİK
================================ */

.urun-content {
    max-width: 1200px;
    margin: 70px auto;
    padding: 0 20px;
}

.urunler-baslik {
    text-align: center;
    margin-bottom: 20px;
    margin-top: -50px;
}

.urunler-baslik h2 {
    font-size: 25px;
    font-weight: 500;
    letter-spacing: 1px;
    color: #2b2b2b;
    position: relative;
    display: inline-block;
    padding-bottom: 8px;
    
}
/* ÜRÜN SAYFALARI – HAREKETLİ FOTO & İLETİŞİM ARASI BOŞLUK */
.urun .hero-bottom {
    margin-bottom: 80px;
}

.urun .iletisim-header {
    margin-top: 0;
}



.urun-detay-baslik{
    margin-top: -35px;
}
.urun-detay {
    max-width: 1200px;
    margin: 80px auto;
    padding: 0 20px;
}

.urun-detay-wrapper {
    display: flex;
    gap: 40px;
    align-items: flex-start;
}

/* SOL FOTO */
.urun-detay-left {
    flex: 1;
    max-width: 420px;
}

.urun-detay-left img {
    width: 100%;
    border-radius: 6px;
    object-fit: cover;
}

/* SAĞ İÇERİK */
.urun-detay-right {
    flex: 1.2;
}

.urun-detay-right h2 {
    font-size: 28px;
    margin-bottom: 25px;
}

/* FİYAT TABLOSU */

.urun-fiyat-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 30px;
    font-size: 15px;
}

.urun-fiyat-table th,
.urun-fiyat-table td {
    border: 1px solid #ddd;
    padding: 12px;
    text-align: center;
}

.urun-fiyat-table th {
    background-color: #f4f4f4;
    font-weight: 600;
}

.urun-fiyat-table tr:nth-child(even) {
    background-color: #fafafa;
}
/* Başlık */
.aciklama-baslik {
    cursor: pointer;
    padding: 14px 0;
    font-weight: 600;
    position: relative;
}

/* + işareti */
.aciklama-baslik::after {
    content: "+";
    position: absolute;
    right: 0;
    top: 0;
    font-size: 22px;
    transition: transform 0.3s ease;
}

/* içerik kapalı */
.aciklama-icerik {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}

/* aktif olunca aç */
.aciklama-item.active .aciklama-icerik {
    max-height: 2000px; /* büyük bir değer */
}

/* + → - dönüşsün */
.aciklama-item.active .aciklama-baslik::after {
    content: "−";
}
/* ALT AÇIKLAMA – ORTALI */
.urun-detay-aciklama {
    max-width: 900px;
    margin: 60px auto 0;
    padding: 0 20px;
    text-align: left;
}

/* Paragraflar rahat okusun */
.urun-detay-aciklama p {
    line-height: 1.7;
    margin-bottom: 16px;
}

/* Sabit üst başlık */
.urun-detay-sabit {
    font-size: 20px;
    font-weight: 600;
    margin: 40px 0 15px;
}

/* Kurumsal dropdown */
.kurumsal-menu {
    position: relative;
}

.kurumsal-dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 170px;
    background-color: #1f2428;
    display: none;
    flex-direction: column;
    z-index: 9999;
    padding: 10px 0;
}

.kurumsal-dropdown a {
    color: #888 !important;
    padding: 12px 20px;
    font-size: 14px;
    text-decoration: none;
}

.kurumsal-dropdown a:hover {
    background-color: #2e3439;
    color: #fff !important;
    
}

/* Hover ile aç */
.kurumsal-menu:hover .kurumsal-dropdown {
    display: flex;
}
/* Ürünlerimiz dropdown – Kurumsal ile birebir */
.urunler-menu {
    position: relative;
}

.urunler-dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 170px;
    background-color: #1f2428;
    display: none;
    flex-direction: column;
    z-index: 9999;
    padding: 10px 0;
}

.urunler-dropdown a {
    color: #888 !important;
    padding: 12px 20px;
    font-size: 14px;
    text-decoration: none;
}

.urunler-dropdown a:hover {
    background-color: #2e3439;
    color: #fff !important;
}

/* Hover ile aç */
.urunler-menu:hover .urunler-dropdown {
    display: flex;
}
/* ===== İLETİŞİM BİLGİLERİ ===== */
/* İletişim bilgileri – maps üstü */
.iletisim-bilgiler {
    padding: 60px 0 40px;
    background: #f7f7f7;
}

.iletisim-bilgiler h2 {
    text-align: center;
    margin-bottom: 40px;
    font-size: 28px;
}

.iletisim-tek-satir {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
}

.iletisim-item {
    font-size: 16px;
    color: #333;
    white-space: nowrap;
}

.iletisim-item strong {
    color: #000;
    font-weight: 600;
}

/* ===== GOOGLE MAP ===== */
.iletisim-map iframe {
    display: block;
    width: 100%;
}
.iletisim-map{
    margin-top: 40px;
    margin-bottom: 30px;
}
.iletisim-baslik {
    font-size: 26px;
    font-weight: 600;
    text-align: center;
    margin-bottom: 40px;
    color: #111;
    letter-spacing: 0.5px;
}

/* REFERANSLAR */
.referanslar {
    padding: 80px 0;
    background-color: #f7f7f7;
}

.referanslar-header {
    text-align: center;
    margin-bottom: 50px;
}

.referanslar-header h2 {
    font-size: 32px;
    font-weight: 600;
    margin-bottom: 10px;
}

.referanslar-header p {
    font-size: 16px;
    color: #555;
}

/* Grid */
.referanslar-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

/* Kart */
.referans-card {
    background: #fff;
    border: 1px solid #e5e5e5;
    padding: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.referans-card img {
    max-width: 100%;
    max-height: 80px;
    object-fit: contain;
 
    transition: all 0.3s ease;
}


/* ===== HAKKIMIZDA ===== */
.hakkimizda {
  padding: 80px 0;
  background: #fff;
}

.hakkimizda .container {
  max-width: 1200px;
  margin: auto;
}

/* ÜST ALAN */
.hakkimizda-hero {
  display: flex;
  align-items: center;
  gap: 60px;
  margin-bottom: 80px;
}

.hakkimizda-text {
  flex: 1;
}

.hakkimizda-text h2 {
  font-size: 36px;
  font-weight: 700;
  color: #111;
}

.hakkimizda-text .line {
  display: block;
  width: 60px;
  height: 3px;
  background: #111;
  margin: 15px 0 25px;
}

.hakkimizda-text p {
  font-size: 16px;
  line-height: 1.8;
  color: #444;
}

.hakkimizda-image {
  flex: 1;
}

.hakkimizda-image img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

/* ALT KUTULAR */
.hakkimizda-kutular {
  display: flex;
  gap: 35px;
}

.hakkimizda-kutu {
  flex: 1;
  background: #ffffff;
  padding: 40px 32px;
  border-radius: 6px;
  border-top: 4px solid #7f9b4a; /* marka yeşili */
  box-shadow: 0 10px 25px rgba(0,0,0,0.06);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

/* hover KAPALI istiyorsan bunu tamamen silebilirsin */
.hakkimizda-kutu:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 32px rgba(0,0,0,0.08);
}

.hakkimizda-kutu h3 {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 16px;
  color: #1f2428;
}

.hakkimizda-kutu p {
  font-size: 15.5px;
  line-height: 1.75;
  color: #555;
}

/* Genel sayfa alanı */
.kvkk-wrapper {
    max-width: 1200px;
    margin: 40px auto 80px auto;
    padding: 0 15px;
    font-family: Arial, Helvetica, sans-serif;
    color: #333;
    line-height: 1.8;
}

/* Üstteki sol metin */
.kvkk-text-top {
    width: 60%;
    float: left;
    padding-right: 40px;
    box-sizing: border-box;
}

/* Sağdaki foto */
.kvkk-image {
    width: 40%;
    float: right;
}

.kvkk-image img {
    width: 100%;
    height: auto;
    display: block;
}

/* Foto bittikten sonra alttan devam eden yazı */
.kvkk-text-bottom {
    clear: both;
    padding-top: 30px;
}

/* Başlık stilleri (keskinler gibi sade) */
.kvkk-wrapper h1 {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 20px;
}

.kvkk-wrapper h2 {
    font-size: 18px;
    font-weight: 600;
    margin: 25px 0 10px;
}

/* Paragraflar */
.kvkk-wrapper p {
    font-size: 14px;
    margin-bottom: 15px;
}
/* Genel sayfa alanı */
.policy-wrapper {
    max-width: 1200px;
    margin: 40px auto 80px auto;
    padding: 0 15px;
    font-family: Arial, Helvetica, sans-serif;
    color: #333;
    line-height: 1.8;
}

/* Üstteki sol metin */
.policy-text-top {
    width: 60%;
    float: left;
    padding-right: 40px;
    box-sizing: border-box;
}

/* Sağdaki foto */
.policy-image {
    width: 40%;
    float: right;
}

.policy-image img {
    width: 100%;
    height: auto;
    display: block;
}

/* Foto bittikten sonra alttan devam eden yazı */
.policy-text-bottom {
    clear: both;
    padding-top: 30px;
}

/* Başlık stilleri */
.policy-wrapper h1 {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 20px;
}

.policy-wrapper h2 {
    font-size: 18px;
    font-weight: 600;
    margin: 25px 0 10px;
}

/* Paragraflar */
.policy-wrapper p {
    font-size: 14px;
    margin-bottom: 15px;
}




body.kvkk .urun-hero {
    background-image: url("img/kvkk.jpg");
}

body.referans .urun-hero{
    background-image: url("img/orman.png");
}
body.iletisim .urun-hero{
    background-image: url("img/orman.png");
}
body.gizlilik .urun-hero{
    background-image: url("img/gizlilik.jpg");
}
.plywood .urun-hero{

    background-image: url("img/PLYWOOD.jpg");
}
.petek .urun-hero{
    background-image: url("img/PLYWOOD.jpg");
}
.hus .urun-hero{
    background-image: url("img/PLYWOOD.jpg");
}

.hero-hakkimizda {
    background-image: url("img/orman.png");
}

@media (max-width: 1024px) {

  /* GENEL – YATAY TAŞMAYI BİTİR */
  html, body {
    max-width: 100%;
    overflow-x: hidden !important;
  }

  * {
    box-sizing: border-box;
  }

  /* SABİT GENİŞLİKLERİ AKIŞA AL */
  .container,
  .urunler-container,
  .kurumsal .container,
  .bizden-haberler .container,
  .footer-container,
  .urun-content,
  .urun-detay,
  .kvkk-wrapper,
  .policy-wrapper {
    max-width: 100%;
    width: 100%;
    padding-left: 20px;
    padding-right: 20px;
  }

  /* ÜST BAR */
  .top-left {
    margin-left: 0;
  }

  .top-right {
    margin-right: 0;
  }

  /* MENÜ */
  .menu-bar {
    padding: 15px 20px;
  }

  .menu-left {
    margin-left: 0;
  }

  .menu-left .logo img {
    margin-left: 0;
    margin-top: 0;
    width: 170px;
  }

  /* MENÜ FOTOĞRAFLARI KES */
  .menu-bar .menu-photos {
    display: none;
  }

  /* MENÜ LİNKLERİ TAŞMASIN */
  .menu-bar .main-menu ul {
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
  }

  /* HERO */
  .hero-banner {
    height: auto;
    min-height: 420px;
  }

  .hero-content {
    margin-bottom: 0;
    padding: 40px 20px;
  }

  /* GRIDLERİ DARALT */
  .kg-grid {
    grid-template-columns: 1fr;
  }

  .urunler-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  /* HERO ALT HAREKETLİ ALAN */
  .hero-bottom-texts {
    gap: 60px;
    padding: 0 20px;
  }

  /* REFERANSLAR */
  .referanslar-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  /* FOOTER */
  .footer-container {
    grid-template-columns: 1fr 1fr;
    gap: 30px;
  }
}

@media (max-width: 600px) {
  html, body {
    max-width: 100%;
    overflow-x: hidden !important;
  }
  .top-bar {
    padding: 10px 15px;
    flex-direction: row;   /* 🔴 ALT ALTA DEĞİL */
  }

  .top-left {
    margin: 0;
    gap: 10px;
    font-size: 13px;
  }

  .top-right {
    margin: 0;
    gap: 12px;
  }
  .urun-card img,
.kg-item img,
.surdur-image img,
.hero-bottom-img,
.haber-card img,
.footer-logo img {
  max-width: 100%;
  height: auto;
  display: block;
}
     .menu-bar .menu-photos {
    display: none !important;
  }

  /* Menü genel hizalama */
  .menu-bar {
    flex-direction: column;
    align-items: center;
    gap: 2px; /* 🔥 boşluk azaldı */
    padding: 6px 0;
    
  }

  /* Logo ortalı */
  .menu-left {
    margin: 0;
    justify-content: center;
    display: flex;
  }

  .menu-left .logo img {
    display: block;
    margin-left: -12px;
    width: 140px;
    
  }
  .main-menu{
      width: 100%;
      justify-content: center;
      
  }

  /* Menü linkleri tek satır */
  .menu-bar .main-menu ul {
      flex-wrap: nowrap;
 justify-content: center;
gap: 1px;

  }

  /* Kaydırma çubuğu gizle (opsiyonel) */
  .menu-bar .main-menu ul::-webkit-scrollbar {
    display: none;
  }

  /* Link boyutları */
  .menu-bar .main-menu a {
    font-size: 10px;
padding: 3px 2px;
    
  }

 .btn-teklif {
    display: inline-block; /* 🔥 BUTON GERİ GELDİ */
    font-size: 8px;
    padding: 3px 6px;
  }
  .hero-banner {
    height: 420px;
    
  }

  .hero-content {
    margin-bottom: 0;
    padding: 0 15px;
  }

  .hero-title {
    font-size: 24px;
  }

  .hero-title-2 {
    font-size: 18px;
  }
   .kurumsal {
    padding: 50px 15px;
  }

  .kg-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .kg-header h2 {
    font-size: 28px;
  }
  .urunler-container {
    width: 100%;
    padding: 0 15px;
  }

  .urunler-grid {
    grid-template-columns: 1fr;
  }

  .urun-card h3,
  .urun-card p {
    padding-left: 0;
    text-align: center;
  }
  .urun-card img {
    object-position: left center;
  }
   .surdur-container {
 
    gap: 15px;
  }
 .surdur-content h2 {
    margin-top: 5px;
    margin-bottom: 10px;
    font-size: 22px;
  }
  .surdur-icons-image img {
    width: 220px;
  }
  /* iOS Safari – sürdürülebilirlik görsel fix */
.surdur-image img {
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
  max-width: 100% !important;
  height: auto !important;
  object-fit: contain !important;
}

    .hero-bottom {
    height: 200px;
    display: block;
  }

  .hero-bottom-img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  .hero-bottom-texts {
    flex-direction: column;
    gap: 16px;
  }

  .hero-stat span {
    font-size: 26px;
  }
    .bizden-haberler h2 {
    font-size: 26px;
  }
  
  .iletisim-container {
    grid-template-columns: auto auto;
    justify-content: space-between;
    text-align: left;
  }

  .iletisim-center {
    display: none; /* ortayı kapatıyoruz */
  }

  .iletisim-right {
    justify-content: flex-end;
  }

  .footer-container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-logo img {
    margin: 0 auto;
  }
   /* Footer – Ürünlerimiz yazıları hafif ortala */
.footer-products-grid {
  padding-left: 0;          /* soldaki kaymayı kaldır */
  display: flex;
  justify-content: center;  /* bloğu ortaya al */
}

.footer-products ul {
  text-align: center;       /* yazılar ortalı */
}
   
}





