* {
    font-family: 'Montserrat', sans-serif !important;
}
* {
    font-family: 'Montserrat', sans-serif !important;
}
/* { margin: 0; padding: 0; box-sizing: border-box; }
body { font-family: 'Montserrat', sans-serif; color: #333; line-height: 1.6; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }

/* Header */
header { background: #fff; padding: 15px 0; border-bottom: 1px solid #eee; position: sticky; top: 0; z-index: 1000; }
nav { display: flex; justify-content: space-between; align-items: center; }
.nav-links { display: flex; list-style: none; gap: 25px; }
.nav-links a { text-decoration: none; color: #444; font-weight: 500; font-size: 14px; }
.btn-primary { background: #e66b00; color: white; padding: 10px 20px; text-decoration: none; border-radius: 4px; font-weight: bold; }
.btn-outline { border: 1px solid #ddd; padding: 10px 20px; text-decoration: none; border-radius: 4px; color: #444; font-size: 14px; }

/* Hero Section */
.hero { 
    background: linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.4)), url('https://images.unsplash.com/photo-1581091226825-a6a2a5aee158?q=80&w=1600') center/cover;
    height: 80vh; display: flex; align-items: center; color: white;
}
.hero-content h1 { font-size: 48px; letter-spacing: 5px; }
.hero-content h3 { color: #ccc; font-weight: normal; margin-bottom: 20px; }
.hero-content h2 { font-size: 36px; margin-bottom: 20px; line-height: 1.2; }
.hero-content p { max-width: 600px; margin-bottom: 30px; font-size: 18px; }
.btn-light { background: #fff; color: #333; padding: 12px 25px; text-decoration: none; border-radius: 4px; margin-right: 15px; font-weight: bold; }

/* Features */
.what-we-do { padding: 80px 0; }
.section-title { font-size: 32px; margin-bottom: 40px; }
.features { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; }
.feature-card i { font-size: 40px; color: #444; margin-bottom: 20px; }
.feature-card h3 { margin-bottom: 15px; }

/* Industries */
.industries { padding: 60px 0; }
.industry-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 15px; margin-top: 30px; }
.industry-item { 
    height: 200px; background-size: cover; border-radius: 5px;
    display: flex; align-items: flex-end; padding: 15px; color: white; font-weight: bold;
    box-shadow: inset 0 -40px 60px rgba(0,0,0,0.7);
}

.global-network { padding: 80px 0; background: #f9f9f9; }
.network-content { display: flex; align-items: center; justify-content: space-between; gap: 50px; }
.network-text { flex: 1; }
.network-map { flex: 2; text-align: right; }
.network-map img { max-width: 100%; height: auto; opacity: 0.8; }

.logo img {
    max-width: 220px; /* Logo genişliğini en fazla 150px yapar */
    height: auto;     /* Yüksekliği orantılı olarak ayarlar */
}

/* Mobil Düzenlemeler */
@media (max-width: 768px) {
    /* Menüyü dikey yap veya gizle (Basit dikey menü) */
    nav {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
    
    .nav-links {
        flex-direction: column;
        gap: 10px;
    }

    /* Hero Bölümü (Ana Görsel) */
    .hero {
        height: auto;
        padding: 60px 20px;
    }

    .hero-content h1 {
        font-size: 32px; /* Yazıyı küçülttük */
    }

    .hero-content h2 {
        font-size: 24px;
    }

    /* Yan yana duran kutuları alt alta getir */
    .features, .industry-grid, .network-content {
        grid-template-columns: 1fr !important; /* Tek sütun yap */
        display: flex;
        flex-direction: column;
        gap: 30px;
    }

    .network-content {
        text-align: center;
    }

    .network-map {
        order: -1; /* Haritayı metnin üstüne al */
    }

    /* Butonları tam genişlik yap */
    .btn-primary, .btn-light, .btn-outline {
        display: block;
        width: 100%;
        margin-bottom: 10px;
        text-align: center;
    }
}
.logo img {
    height: 60px;    /* İstediğin yüksekliği buraya yazarak daraltabilirsin */
    width: auto;     /* Genişliğin otomatik ayarlanmasını sağlar, resmi ezmez */
    object-fit: contain;
}
header {
    padding-top: 5px !important;
    padding-bottom: 5px !important;
}

.logo {
    margin-bottom: 0px !important;
}
/* Logo yüksekliğini daraltma (küçültme) */
.logo img {
    height: 60px;    /* İstediğin yüksekliği buraya yazarak resmi dikeyde daraltabilirsin */
    width: auto;     /* Genişliğin otomatik orantılanmasını sağlar, resmi ezmez */
    object-fit: contain; /* Resmin kutu içine sığmasını sağlar */
}
.hero {
    height: 400px; /* Fotoğrafın yüksekliğini bu şekilde daraltabilirsin */
    background-image: url("https://images.unsplash.com/photo-1540974165411-28a92e8594c2?auto=format&fit=crop&w=1920&q=80") !important;
    background-size: cover;     /* Resmin kutuyu kaplamasını sağlar */
    background-position: center; /* Resmi merkeze alır */
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}
/* Dropdown Genel Yapısı */
.dropdown {
    position: relative;
    display: inline-block;
}

/* Alt Menü Tasarımı (Başlangıçta Gizli) */
.dropdown-menu {
    display: none;
    position: absolute;
    background-color: #fff;
    min-width: 200px;
    box-shadow: 0px 8px 16px rgba(0,0,0,0.1);
    z-index: 1000;
    list-style: none;
    padding: 10px 0;
    border-top: 3px solid #e66b00; /* Logonuzdaki turuncu tonu */
    border-radius: 0 0 5px 5px;
}

/* Alt Menü Linkleri */
.dropdown-menu li a {
    color: #333 !important;
    padding: 10px 20px;
    display: block;
    text-decoration: none;
    font-size: 14px;
    transition: 0.3s;
}

/* Üzerine Gelince Renk Değişimi */
.dropdown-menu li a:hover {
    background-color: #f8f8f8;
    color: #e66b00 !important;
    padding-left: 25px; /* Hafif kayma efekti */
}

/* Üzerine Gelince Menüyü Göster */
.dropdown:hover .dropdown-menu {
    display: block;
}
/* Footer Genel Tasarımı */
.main-footer {
    background-color: #1a252f; /* Koyu lacivert/siyah tonu */
    color: white;
    padding: 60px 0 20px 0;
    margin-top: 50px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-col h4 {
    color: #e66b00; /* Kurumsal turuncu */
    margin-bottom: 20px;
    font-size: 18px;
    text-transform: uppercase;
}

.footer-col p, .footer-col li {
    font-size: 14px;
    line-height: 1.8;
    color: #bdc3c7;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li a {
    color: #bdc3c7;
    text-decoration: none;
    transition: 0.3s;
}

.footer-links li a:hover {
    color: #e66b00;
    padding-left: 5px;
}

/* Sertifika Alanı */
.footer-bottom {
    border-top: 1px solid #34495e;
    padding-top: 30px;
    text-align: center;
}

.cert-logos img {
    height: 40px;
    margin: 0 15px;
    filter: grayscale(100%) brightness(200%);
    opacity: 0.7;
}

.copyright {
    margin-top: 20px;
    font-size: 13px;
    color: #7f8c8d;
}
/* Footer Alanını Şekillendirme */
.main-footer {
    background-color: #1a252f !important; /* Koyu renk arka plan */
    color: #ffffff !important;
    padding: 60px 0 30px 0;
    margin-top: 50px;
    clear: both; /* Diğer öğelerin altına itilmesini sağlar */
}

.footer-grid {
    display: flex !important; /* Yan yana dizilmeleri için */
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.footer-col {
    flex: 1;
    min-width: 250px;
}

.footer-col h4 {
    color: #e66b00; /* Turuncu başlıklar */
    margin-bottom: 20px;
    font-size: 18px;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links li a {
    color: #bdc3c7;
    text-decoration: none;
}

.footer-bottom {
    text-align: center;
    border-top: 1px solid #34495e;
    margin-top: 40px;
    padding-top: 20px;
}
/* Footer Stil Düzeltmesi */
.main-footer {
    background-color: #1a252f !important; /* Arka planı koyu yapar */
    color: #ffffff !important;
    padding: 40px 0 !important;
    display: block !important; /* Görünürlüğü zorlar */
}

.footer-grid {
    display: flex !important; /* Yan yana dizilmeyi sağlar */
    flex-wrap: wrap;
    justify-content: space-around;
    max-width: 1200px;
    margin: 0 auto;
}

.footer-col {
    padding: 20px;
    min-width: 200px;
}

.footer-col h4 {
    color: #e66b00 !important; /* Başlıkları turuncu yapar */
    margin-bottom: 15px;
}

.footer-links li {
    list-style: none !important; /* Noktaları kaldırır */
}

.footer-links li a {
    color: #bdc3c7 !important;
    text-decoration: none !important;
}
/* --- FOOTER TASARIMI --- */
.main-footer {
    background-color: #1a252f; /* Profesyonel koyu arka plan */
    color: #ffffff;
    padding: 60px 0 30px 0;
    margin-top: 50px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); /* Yan yana dizilimi sağlar */
    gap: 40px;
    margin-bottom: 40px;
}

.footer-col h4 {
    color: #e66b00; /* Kurumsal turuncu başlıklar */
    margin-bottom: 20px;
    font-size: 18px;
    text-transform: uppercase;
}

.footer-links {
    list-style: none; /* Noktaları kaldırır */
    padding: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links li a {
    color: #bdc3c7;
    text-decoration: none; /* Alt çizgiyi kaldırır */
    transition: 0.3s;
}

.footer-links li a:hover {
    color: #e66b00;
    padding-left: 5px;
}

.footer-bottom {
    border-top: 1px solid #34495e;
    padding-top: 30px;
    text-align: center;
}

.cert-logos img {
    height: 40px;
    margin: 0 15px;
    filter: brightness(0) invert(1); /* Logoları beyaz yapar */
    opacity: 0.8;
}
/* --- PROFESYONEL FOOTER DÜZENLEME --- */
.main-footer {
    background-color: #1a252f;
    color: #ffffff;
    padding: 60px 0 30px 0;
    margin-top: 50px;
    font-family: 'Montserrat', sans-serif;
}

/* Öğeleri merkeze toplayan konteyner */
.footer-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* 3 eşit sütun yapar */
    gap: 50px;
    max-width: 1100px; /* İçeriği daraltıp merkeze toplar */
    margin: 0 auto;    /* Sayfayı ortalar */
    padding: 0 20px;
}

.footer-col h4 {
    color: #e66b00;
    font-size: 16px;
    text-transform: uppercase;
    margin-bottom: 25px;
    letter-spacing: 1px;
}

.footer-col p {
    font-size: 14px;
    line-height: 1.6;
    color: #bdc3c7;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links li a {
    color: #bdc3c7;
    text-decoration: none;
    font-size: 14px;
    transition: 0.3s;
}

.footer-links li a:hover {
    color: #e66b00;
}

/* İletişim ikonlarını ve metinlerini hizala */
.footer-col p i {
    width: 20px;
    color: #e66b00;
    margin-right: 10px;
}

/* Alt kısım (Logolar ve Telif) */
.footer-bottom {
    border-top: 1px solid #2c3e50;
    margin-top: 50px;
    padding-top: 30px;
    text-align: center;
}

.cert-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    margin-bottom: 20px;
    opacity: 0.7;
}

.cert-logos img {
    height: 30px;
}
/* KESİN ÇÖZÜM CSS */
.main-footer {
    background-color: #1a252f !important;
    color: white !important;
    padding: 60px 0 !important;
    width: 100% !important;
    display: block !important;
}

.main-footer .container {
    max-width: 1100px !important;
    margin: 0 auto !important;
    padding: 0 20px !important;
}

.footer-grid {
    display: flex !important;
    flex-wrap: wrap !important;
    justify-content: space-between !important;
    align-items: flex-start !important;
    gap: 30px !important;
}

.footer-col {
    flex: 1 !important;
    min-width: 250px !important;
    text-align: left !important;
}

.footer-col h4 {
    color: #e66b00 !important;
    margin-bottom: 20px !important;
}

.footer-links {
    list-style: none !important;
    padding: 0 !important;
}

.footer-links li a {
    color: #bdc3c7 !important;
    text-decoration: none !important;
}
/* Footer'ı Daraltma ve Ortalama */
.main-footer .container {
    max-width: 1100px !important; /* Bu rakamı küçülterek daha da daraltabilirsin */
    margin: 0 auto !important;    /* Sağdan ve soldan eşit boşluk bırakarak ortalar */
    padding: 0 20px;              /* Mobilde kenarlara yapışmaması için */
}

.footer-grid {
    display: flex !important;
    justify-content: space-between !important; /* Öğeleri kutunun içine eşit dağıtır */
    flex-wrap: wrap;
    gap: 40px;
}

.footer-col {
    flex: 1;
    min-width: 250px; /* Çok daralınca alt alta geçmesini sağlar */
}

/* Yazı Tipi ve Genel Sıfırlama */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;700&display=swap');

* { 
    margin: 0; 
    padding: 0; 
    box-sizing: border-box; 
    font-family: 'Montserrat', sans-serif !important; 
}

/* Header Hizalamasını Sabitleme */
header { 
    background: #ffffff; 
    width: 100%; 
    z-index: 1000; 
    border-bottom: 1px solid #eee;
}

nav.container { 
    display: flex !important; 
    justify-content: space-between !important; 
    align-items: center !important; 
    height: 80px; 
    max-width: 1200px; 
    margin: 0 auto;
}

.nav-links { 
    display: flex !important; 
    gap: 30px; 
    list-style: none; 
    align-items: center;
}
/* Google Fonts Bağlantısı */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700&display=swap');

/* Tüm sayfa için yazı tipini sabitleme */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Montserrat', sans-serif !important; /* !important ile tarayıcı fontunu eziyoruz */
}
.nav-links a {
    text-decoration: none;
    color: #444; /* Ana sayfadaki gri tonu */
    font-weight: 500; /* Yazının kalınlığını buradan ayarlayabilirsiniz */
    font-size: 14px;
    transition: 0.3s;
}

.nav-links a:hover {
    color: #e66b00; /* Üzerine gelince kurumsal turuncu */
}
/* Menü Linklerini Tüm Sayfalarda Eşitleme */
.nav-links {
    display: flex !important;
    list-style: none !important;
    gap: 25px !important; /* Linkler arası boşluk */
    margin: 0 !important;
    padding: 0 !important;
    align-items: center !important;
}

.nav-links li a {
    text-decoration: none !important;
    color: #444 !important; /* Ana sayfadaki profesyonel gri */
    font-family: 'Montserrat', sans-serif !important; /* Yazı tipi sabitleme */
    font-weight: 500 !important; /* Yazı kalınlığı */
    font-size: 14px !important; /* Yazı boyutu */
    transition: 0.3s ease;
    text-transform: capitalize !important; /* Sadece baş harfler büyük */
}

.nav-links li a:hover {
    color: #e66b00 !important; /* Üzerine gelince senin turuncun */
}

/* Aktif sayfa linkini (örneğin Kurumsal sayfasındayken) turuncu yapma */
.nav-links li a.active {
    color: #e66b00 !important;
    font-weight: 700 !important;
}
/* --- FOOTER DÜZENLEME --- */
.main-footer {
    background-color: #1a252f !important;
    color: #ffffff !important;
    padding: 60px 0 20px 0 !important;
    margin-top: 80px;
    width: 100%;
}

/* İçeriği merkeze toplayan ve daraltan kısım */
.footer-container {
    max-width: 1100px !important; /* Genişliği sınırlayarak dengesizliği giderir */
    margin: 0 auto !important;
    padding: 0 20px !important;
}

.footer-grid {
    display: flex !important;
    justify-content: space-between !important; /* Kolonları kutu içine eşit dağıtır */
    flex-wrap: wrap !important;
    gap: 40px;
}

.footer-col {
    flex: 1;
    min-width: 250px; /* Mobilde kolonların üst üste düzgün binmesini sağlar */
}

.footer-col h4 {
    color: #e66b00 !important;
    font-size: 16px;
    margin-bottom: 25px;
    text-transform: uppercase;
}

.footer-col p, .footer-links li a {
    color: #bdc3c7 !important;
    font-size: 14px;
    line-height: 1.8;
    text-decoration: none;
}

.footer-links {
    list-style: none !important;
    padding: 0 !important;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links li a:hover {
    color: #ffffff !important;
}

.footer-bottom {
    border-top: 1px solid #2c3e50;
    margin-top: 40px;
    padding-top: 20px;
    text-align: center;
    font-size: 12px;
    color: #7f8c8d;
}
/* Sektör Kartlarını Yan Yana Getirme */
.industry-grid {
    display: grid !important;
    grid-template-columns: repeat(4, 1fr) !important; /* Yan yana tam 4 sütun yapar */
    gap: 20px !important; /* Kartlar arasındaki boşluk */
    max-width: 1200px;
    margin: 0 auto;
}

/* Kartların Genişliğini Sabitleme */
.industry-item {
    width: 100% !important; /* Kapsayıcısına tam sığması için */
    min-width: 0 !important; /* Taşmayı önler */
}
/* Ürünler Sayfası Sektör Izgarası */
.industry-grid {
    display: flex !important;
    flex-direction: row !important;
    flex-wrap: nowrap !important; /* Alt satıra geçmeyi kesinlikle yasaklar */
    justify-content: space-between !important;
    gap: 15px !important;
    width: 100% !important;
    max-width: 1200px !important;
    margin: 20px auto !important;
}

/* Her bir kartın genişliğini tam %24 yapar (4 kart + boşluklar için) */
.industry-item {
    flex: 0 0 24% !important; 
    min-width: 0 !important;
    height: 280px !important; /* Tüm kartları aynı boya sabitler */
    background-color: #1a252f !important;
    border-radius: 8px !important;
    overflow: hidden !important;
    display: flex !important;
    flex-direction: column !important;
}

/* Kart içindeki görsellerin bozulmaması için */
.industry-item img {
    width: 100% !important;
    height: 180px !important;
    object-fit: cover !important; /* Görseli kesmeden kutuya sığdırır */
}

/* Kart başlıkları (Rubber, Wire vb.) */
.industry-item h3 {
    color: white !important;
    text-align: center !important;
    padding: 15px 5px !important;
    font-size: 14px !important;
}
/* --- ÜRÜNLER SAYFASI KESİN ÇÖZÜM --- */
.industry-grid {
    display: flex !important;
    flex-wrap: nowrap !important; /* Kartları aynı satırda kalmaya zorlar */
    justify-content: space-between !important;
    gap: 15px !important;
    width: 100% !important;
    max-width: 1200px !important;
    margin: 30px auto !important;
}

.industry-item {
    flex: 1 !important; /* Tüm kartların eşit genişlikte olmasını sağlar */
    min-width: 200px !important; /* Mobilde çok daralmasını önler */
    height: 320px !important; /* Tüm kart boylarını eşitler */
    background: #f8f9fa;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.industry-item img {
    width: 100% !important;
    height: 200px !important;
    object-fit: cover !important; /* Görsellerin kutuya tam oturmasını sağlar */
}
/* --- SEKTÖRLER 4'LÜ DÜZEN ZORLAMASI --- */
.industry-grid {
    display: grid !important;
    grid-template-columns: repeat(4, 1fr) !important; /* Ekranı tam 4'e böler */
    gap: 15px !important;
    max-width: 1200px !important;
    margin: 40px auto !important;
    padding: 0 15px !important;
}

.industry-item {
    width: 100% !important; /* Kendi sütununa tam sığar */
    background: #fff;
    border: 1px solid #eee;
    text-align: center;
}

.industry-item img {
    width: 100% !important;
    height: 180px !important;
    object-fit: cover !important; /* Görseli bozmadan sığdırır */
}
/* Sektör Kartları Emniyet Ayarı */
.industry-grid {
    display: flex !important;
    flex-direction: row !important;
    flex-wrap: nowrap !important; /* Alt satıra geçmeyi engeller */
    justify-content: center !important;
    gap: 20px !important;
    max-width: 1200px !important; /* Sayfanın dışına taşmayı engeller */
    margin: 40px auto !important;
}

.industry-item {
    flex: 1 !important; /* Her kartın alanı eşit bölüşmesini sağlar */
    max-width: 280px !important; /* KARTLARIN ÇOK BÜYÜMESİNİ ENGELLEYEN KRİTİK SATIR */
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.industry-item img {
    width: 100% !important;
    height: 180px !important; /* GÖRSEL YÜKSEKLİĞİNİ SABİTLER */
    object-fit: cover !important; /* Görseli ezmeden kutuya doldurur */
}
/* --- APP GRID (SEKTÖRLER) DÜZENİ --- */
.app-grid {
    display: flex !important;
    flex-wrap: nowrap !important; /* Yan yana kalmaya zorlar */
    justify-content: center !important;
    gap: 20px !important;
    max-width: 1200px !important;
    margin: 40px auto !important;
    padding: 0 15px;
}

.app-card {
    flex: 1 !important;
    max-width: 250px !important; /* Kartların devasa olmasını önleyen sınır */
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    text-align: center;
    border: 1px solid #eee;
}

.app-card img {
    width: 100% !important;
    height: 180px !important; /* Tüm görselleri aynı boya sabitler */
    object-fit: cover !important; /* Görseli bozmadan kutuya sığdırır */
    display: block;
}

.app-card h4 {
    padding: 15px 10px;
    font-size: 15px;
    color: #333;
    font-weight: 600;
}
/* SEKTÖRLER FİNAL DÜZENLEME */
.app-grid {
    display: flex !important;
    justify-content: center !important;
    gap: 15px !important;
    flex-wrap: nowrap !important; /* Asla aşağı kaydırma */
    max-width: 1200px !important;
    margin: 40px auto !important;
}

.app-card {
    flex: 1 !important;
    background: #2c3e50 !important; /* Alt kısımdaki lacivert tonu */
    border-radius: 8px !important;
    overflow: hidden !important;
    display: flex !important;
    flex-direction: column !important;
    height: 280px !important; /* TÜM KARTLARIN BOYUNU SABİTLEDİK */
}

.app-card img {
    width: 100% !important;
    height: 180px !important; /* GÖRSELLERİ AYNI BOYDA KESTİK */
    object-fit: cover !important;
}

.app-card-content {
    padding: 15px !important;
    text-align: center !important;
    flex-grow: 1 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
}

.app-card h4 {
    color: white !important;
    font-size: 14px !important;
    margin: 0 !important;
}
.footer-grid {
    display: flex !important;
    justify-content: space-between !important; /* Sütunları kutunun içine eşit dağıtır */
    align-items: flex-start !important;        /* Yazıları yukarıdan hizalar */
    gap: 40px;                                 /* Sütunlar arasındaki minimum boşluk */
}
.footer-col {
    flex: 1;                /* Her sütuna eşit alan verir */
    max-width: 300px;       /* Hiçbir sütun 300px'den geniş olamaz */
}
/* FOOTER GENİŞLİK AYARI */
.main-footer {
    background-color: #1a252f !important;
    padding: 60px 0 !important;
    width: 100% !important;
}

/* YAZILARI ORTALAYAN VE DARALTAN KISIM */
.footer-container {
    max-width: 1100px !important; /* BURADAKİ DEĞERİ DÜŞÜREREK DAHA DA DARALTABİLİRSİNİZ */
    margin: 0 auto !important;    /* Sayfayı ortalar */
    padding: 0 20px !important;
}

.footer-grid {
    display: flex !important;
    justify-content: space-between !important; /* Sütunları eşit yayar */
    gap: 30px !important;
}

.footer-col {
    flex: 1 !important;
    min-width: 250px !important;
}
/* style.css en altına ekle */
.product-detail-container {
    display: flex !important;
    flex-direction: row !important; /* Yan yana gelmeye zorlar */
    gap: 30px !important;
    max-width: 1200px !important;
    margin: 0 auto !important;
    align-items: flex-start !important;
}

.product-info-left {
    flex: 2 !important; /* Sol taraf (yazılar ve sektörler) */
}

.quote-form-right {
    flex: 1 !important; /* Sağ taraf (teklif al formu) */
    min-width: 300px !important;
}
.sectors-grid {
    display: grid !important;
    /* Ekranı tam 4 eşit parçaya böler */
    grid-template-columns: repeat(4, 1fr) !important; 
    gap: 20px !important;
    width: 100% !important;
    max-width: 1200px !important;
    margin: 40px auto !important;
}

.sector-card {
    /* Kartların yüksekliklerini eşitleyerek alt hizayı düzeltir */
    display: flex;
    flex-direction: column;
    height: 100%; 
}

.contact-container {
    display: flex !important;
    justify-content: space-between !important;
    gap: 50px !important;
    max-width: 1200px;
    margin: 50px auto;
}

.contact-info { flex: 1; }
.map-container { flex: 1.2; border-radius: 15px; overflow: hidden; }

/* İLETİŞİM SAYFASI YAN YANA DÜZEN */
.contact-section {
    display: flex !important;
    flex-direction: row !important; /* Yan yana gelmeye zorlar */
    justify-content: space-between !important;
    align-items: flex-start !important;
    gap: 50px !important;
    max-width: 1200px !important;
    margin: 50px auto !important;
    padding: 0 20px !important;
}

.contact-info {
    flex: 1 !important;
    text-align: left !important;
}

.map-container {
    flex: 1.2 !important;
    min-width: 300px !important;
    border-radius: 15px !important;
    overflow: hidden !important;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1) !important;
}

/* Mobil cihazlarda (Telefonlarda) alt alta gelsin ki bozulmasın */
@media (max-width: 768px) {
    .contact-section {
        flex-direction: column !important;
        gap: 30px !important;
    }
}
header nav {
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
    max-width: 1200px !important; /* Bu genişlik çok önemli */
    margin: 0 auto !important; /* Ortalamayı bu yapar */
    padding: 15px 20px !important;
}
/* İletişim sayfasını yan yana getiren sihirli değnek */
.contact-wrapper {
    display: flex !important;
    justify-content: space-between !important;
    align-items: flex-start !important;
    gap: 40px !important; /* Aradaki boşluk */
    margin: 50px 0 !important;
}

.contact-info {
    flex: 1 !important; /* Sol taraf %40-45 gibi alan kaplar */
}

.map-container {
    flex: 1.5 !important; /* Sağ taraf (Harita) daha geniş durur */
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

/* Mobilde (Telefonda) tekrar alt alta gelsin ki bozulmasın */
@media (max-width: 768px) {
    .contact-wrapper {
        flex-direction: column !important;
    }
}

/* Sayfa başındaki büyük resim alanı (Banner) */
.hero, .page-header {
    background-color: #1a252f; /* Resim yüklenmezse arkada lacivert kalsın */
    background-position: center !important;
    background-size: cover !important;
    background-repeat: no-repeat !important;
    min-height: 400px; /* Görünmesi için yükseklik şart */
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    width: 100%;
}
/* Tüm sayfaların ana taşıyıcısı */
main, section {
    width: 100% !important;
    overflow: hidden; /* Dışarı taşmaları engeller */
}

/* İçeriği ortalayan ana kutu */
.container {
    max-width: 1200px !important;
    margin: 0 auto !important;
    padding: 0 20px !important;
    display: block; /* Flex yüzünden bozulmaması için */
}

/* Sektörler sayfasındaki kartlar için denge */
.sektor-grid {
    display: grid !important;
    grid-template-columns: repeat(4, 1fr) !important;
    gap: 20px !important;
    margin-top: 40px;
}
.hero {
    background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), 
                url('https://images.unsplash.com/photo-1581091226825-a6a2a5aee158?q=80&w=1600') center/cover;
    height: 80vh;
    display: flex;
    align-items: center;
    color: white;
    text-align: left;
}
/* --- GENEL BÖLÜM AYARLARI --- */
section {
    padding: 80px 0 !important; /* Bölümler arası dikey boşluk */
    width: 100%;
    clear: both; /* Kaymaları engeller */
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section-title {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 40px;
    text-align: left;
    color: #1a252f;
}

/* --- NE YAPIYORUZ (FEATURES) DÜZENLEMESİ --- */
.features {
    display: flex !important;
    justify-content: space-between !important;
    gap: 30px !important;
    margin-top: 20px;
}

.feature-card {
    flex: 1;
    padding: 30px;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
}

.feature-card i {
    font-size: 40px;
    color: #ff7b00;
    margin-bottom: 20px;
    display: block;
}

/* --- SEKTÖRLER (INDUSTRY GRID) DÜZENLEMESİ --- */
.industry-grid {
    display: grid !important;
    grid-template-columns: repeat(4, 1fr) !important; /* 4 Yan yana */
    gap: 20px !important;
    margin-top: 30px;
}

.industry-item {
    position: relative;
    height: 300px;
    border-radius: 12px;
    overflow: hidden;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: flex-end;
    padding: 20px;
    text-decoration: none;
}

.industry-item span {
    color: white;
    font-weight: 600;
    z-index: 2;
}

.industry-item::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0; width: 100%; height: 50%;
    background: linear-gradient(transparent, rgba(0,0,0,0.8));
}
/* Bölümleri birbirinden tamamen koparır */
section {
    position: relative !important;
    display: block !important;
    width: 100% !important;
    padding: 60px 0 !important;
    overflow: hidden !important;
    clear: both !important;
}

/* Ne Yapıyoruz alanı için temiz düzen */
.features {
    display: flex !important;
    flex-wrap: wrap !important;
    justify-content: space-between !important;
    gap: 20px !important;
    margin-top: 30px !important;
}

.feature-card {
    flex: 1 1 300px !important; /* Kartların genişliğini sabitler, sıkışınca alt satıra atar */
    background: #f9f9f9;
    padding: 20px;
    border-radius: 10px;
    text-align: center;
}

/* Sektörler alanı için temiz düzen */
.industry-grid {
    display: grid !important;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)) !important;
    gap: 20px !important;
    margin-top: 30px !important;
}
.feature-card i {
    color: #ff7b00 !important; /* Turuncu yapar */
    font-size: 45px !important; /* Boyutunu büyütür */
    margin-bottom: 20px;
    display: inline-block;
}

.features {
    display: flex !important;
    justify-content: space-between !important;
    gap: 30px !important;
    margin-top: 40px !important;
}

.feature-card i {
    display: block !important;
    font-family: "Font Awesome 6 Free" !important; /* Kütüphaneyi kullanmaya zorla */
    font-weight: 900 !important;
    font-style: normal !important;
    font-variant: normal !important;
    text-rendering: auto !important;
    -webkit-font-smoothing: antialiased;
    color: #ff7b00 !important; /* Turuncu renk */
    font-size: 50px !important; /* Büyük boyut */
    margin: 0 auto 20px auto !important;
}

/* Bölümleri kesin olarak birbirinden koparır */
.what-we-do {
    display: block !important;
    clear: both !important;
    padding: 80px 0 !important;
    overflow: hidden !important;
}

.features {
    display: flex !important;
    flex-wrap: nowrap !important; /* Yan yana kalmalarını sağlar */
    justify-content: space-between !important;
    gap: 30px !important;
    margin-top: 40px !important;
}

.feature-card {
    flex: 1 !important;
    text-align: center !important;
    background: #ffffff !important;
    padding: 25px !important;
    border-radius: 12px !important;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05) !important;
}

/* Sektörler başlığının aşağı kaymasını sağlar */
.industries {
    margin-top: 50px !important;
    display: block !important;
    clear: both !important;
}
/* İŞARETLENEN ALANI (VİZYON/MİSYON) AŞAĞI KAYDIRIR */
.about-features-section {
    margin-top: 80px !important; /* Bu değer ne kadar büyükse o kadar aşağı kayar */
    display: block !important;
    clear: both !important;
}

/* Mobilde (Telefonda) bu boşluğu biraz azaltalım ki çok aşağı gitmesin */
@media (max-width: 768px) {
    .about-features-section {
        margin-top: 40px !important;
    }
}
/* İletişim sayfasındaki ana kapsayıcı */
.contact-wrapper {
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important; /* BU SATIR: Metni haritaya göre dikeyde ortalar */
    gap: 50px !important;
    max-width: 1100px !important; /* Çok genişlememesi için biraz daralttım */
    margin: 80px auto !important; /* Üstten ve alttan ferahlık sağlar */
}

.contact-info {
    flex: 1 !important;
    text-align: left !important;
}

.map-container {
    flex: 1.2 !important;
    border-radius: 20px !important; /* Görseldeki gibi yuvarlak köşeler */
    overflow: hidden !important;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1) !important;
}
/* İletişim Sayfası Özel Düzeni */
.contact-flex-container {
    display: flex !important;
    flex-wrap: nowrap !important; /* Yan yana kalmaya zorlar */
    align-items: center !important; /* Dikeyde tam ortalar */
    justify-content: space-between !important;
    gap: 60px !important;
    margin: 100px 0 !important; /* Üstten ve alttan boşluk */
}

.contact-info-box {
    flex: 1 !important; /* Yazı alanına yer açar */
    min-width: 350px !important; /* Yazıların kaybolmasını engeller */
}

.map-box {
    flex: 1.5 !important; /* Haritayı biraz daha geniş tutar */
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

.contact-details p {
    margin-bottom: 15px !important;
    font-size: 16px;
    line-height: 1.8;
}

/* Mobil ayarı: Telefonlarda alt alta gelir */
@media (max-width: 768px) {
    .contact-flex-container {
        flex-direction: column !important;
        margin: 50px 0 !important;
    }
    .contact-info-box {
        min-width: 100% !important;
    }
}
/* --- HERO SECTION DÜZENLEMESİ --- */
.hero {
    display: flex !important;
    align-items: center !important; /* BU SATIR: Metni resme göre dikeyde tam ortalar */
    justify-content: center !important; /* Metni yatayda tam ortalar */
    width: 100% !important;
    min-height: 80vh !important; /* Resmin görünmesi için yükseklik kilitli kalsın */
    background-size: cover;
    background-position: center;
    position: relative;
    color: white;
}

/* Metin kutusunun ayarları */
.hero-content {
    max-width: 900px !important; /* Çok genişlememesi için */
    text-align: left !important; /* Yazılar sola yaslı kalsın (görseldeki gibi) */
    z-index: 2; /* Resmin arkasında kalmaması için */
}

/* Mobilde (Telefonda) bu ortalamayı biraz esnetelim */
@media (max-width: 768px) {
    .hero {
        align-items: flex-end !important; /* Mobilde yazılar biraz aşağıda dursun */
        padding-bottom: 50px !important;
    }
}
/* --- GİRİŞ GÖRSELİ VE DİKEY ORTALAMA (KESİN ÇÖZÜM) --- */
.hero {
    /* 1. YENİ GÖRSEL: Petrokimya ve Polimer Tesisi */
    background: linear-gradient(rgba(10, 20, 30, 0.75), rgba(10, 20, 30, 0.85)), 
                url('https://images.unsplash.com/photo-1581093199616-a19f6a7d573f?q=80&w=1920') center/cover no-repeat;
    
    /* 2. DİKEY HİZALAMA: Padding ile Zorlama */
    display: block !important; /* Flex'i iptal et */
    width: 100% !important;
    min-height: 85vh !important; /* Yüksekliği koru */
    
    /* BU SATIR: Yazıları aşağı doğru itip dikeyde ortalar (Değiştirilebilir) */
    padding-top: 15vh !important; 
    
    position: relative;
    color: white;
    box-sizing: border-box;
}

/* Metinlerin olduğu kutu (Görseldeki gibi sola yaslı kalır) */
.hero-content {
    max-width: 900px !important;
    margin: 0 auto !important; /* Yatayda ortalar */
    padding: 0 40px !important; /* İç boşluk */
    text-align: left !important;
}

/* Mobilde (Telefonda) ayar */
@media (max-width: 768px) {
    .hero {
        padding-top: 10vh !important; /* Mobilde daha yukarıda dursun */
        min-height: 70vh !important;
    }
}
/* --- TÜM HATALARI DÜZELTEN VE GÖRSELİ GERİ GETİREN KOD --- */
.hero {
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.7)), 
                url('https://images.unsplash.com/photo-1540974165411-28a92e8594c2?q=80&w=1920') no-repeat center center !important;
    background-size: cover !important;
    height: 100vh !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: center !important; /* Dikeyde tam ortalar */
    align-items: flex-start !important; /* Solda tutar */
    padding-left: 10% !important;
    color: white !important;
}

.hero-content {
    max-width: 850px !important;
}
.hero {
    position: relative !important;
    background-color: transparent !important; /* Gri rengi zorla kapatır */
    z-index: 1 !important;
}

.hero::before {
    content: "" !important;
    position: absolute !important;
    top: 0; left: 0; width: 100%; height: 100%;
    background: url('https://images.unsplash.com/photo-1540974165411-28a92e8594c2?q=80&w=1920') no-repeat center center / cover !important;
    z-index: -1 !important; /* Resmi en arkaya atar */
}
.about-hero {
    background: linear-gradient(rgba(0,0,0,0.65), rgba(0,0,0,0.65)), url('ana-gorsel.jpg') center/cover no-repeat !important;
    height: 400px !important; /* Yüksekliği biraz artırmak daha kurumsal durur */
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important; /* Yatayda ortalar */
    justify-content: center !important; /* DİKEYDE TAM ORTALAR */
    color: white !important;
    text-align: center !important;
}
/* Navigasyon Linkleri Genel Tasarım */
.nav-links {
    display: flex;
    list-style: none;
    gap: 35px; /* Linkler arası ideal boşluk */
    align-items: center;
}

.nav-links li a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    font-size: 15px;
    text-transform: uppercase; /* Kurumsal bir hava katar */
    letter-spacing: 0.5px;
    position: relative;
    padding: 5px 0;
    transition: color 0.3s ease;
}

/* Üzerine Gelince Çıkan Şık Alt Çizgi Efekti */
.nav-links li a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: #ff7b00; /* Mevcut turuncu tonunuz */
    transition: width 0.3s ease;
}

.nav-links li a:hover {
    color: #ff7b00;
}

.nav-links li a:hover::after {
    width: 100%;
}

/* Aktif Sayfa Belirteci */
.nav-links li a.active {
    color: #ff7b00;
}

.nav-links li a.active::after {
    width: 100%;
}
/* Ana Navigasyon Konteynırı */
nav.container {
    display: flex !important;
    justify-content: space-between !important; /* Logo - Menü - Butonlar arasını eşit açar */
    align-items: center !important;
    padding: 15px 0 !important;
}

/* Link Grubu */
.nav-links {
    display: flex !important;
    list-style: none !important;
    gap: 25px !important; /* Linkler arası mesafeyi biraz daraltıp dengeledik */
    margin: 0 !important;
    padding: 0 !important;
}

.nav-links li a {
    text-decoration: none !important;
    color: #444 !important;
    font-weight: 600 !important; /* Yazıları biraz daha belirgin yaptık */
    font-size: 14px !important;
    letter-spacing: 0.8px !important;
    transition: all 0.3s ease !important;
    padding: 8px 0 !important;
}

/* Üzerine gelince sadece renk değişsin ve çok hafif bir yükselme efekti olsun */
.nav-links li a:hover {
    color: #ff7b00 !important;
    transform: translateY(-2px);
}

/* Sağdaki Buton Grubu Arasındaki Boşluk */
.nav-buttons {
    display: flex !important;
    gap: 15px !important;
}

/* Aktif sayfa linki için stil */
.nav-links a.active {
    color: #ff7b00 !important;
    border-bottom: 2px solid #ff7b00; /* Altına ince bir çizgi ekler, daha şık durur */
    padding-bottom: 5px;
}

.hero-main-fix {
    background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), url('ana-gorsel.jpg') !important;
    background-size: cover !important;
    background-position: center 20% !important;
    background-repeat: no-repeat !important;
    height: 80vh !important; /* Ekranın tamamını kapla */
    width: 100% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
}

.hero-content h1 {
    font-family: 'Montserrat', sans-serif !important;
    font-weight: 700 !important;
    text-shadow: 2px 2px 10px rgba(0,0,0,0.5); /* Yazının arkasına gölge atar, resim üzerinde parlar */
}

/* Hero ve Banner alanlarını merkezleme kuralı */
.hero, .products-hero, .hero-banner {
    display: flex !important;
    flex-direction: column !important; /* Yazıları alt alta dizer */
    justify-content: center !important; /* Dikeyde tam orta */
    align-items: center !important; /* Yatayda tam orta */
    text-align: center !important;
    min-height: 400px; /* Görselin yüksekliğine göre ayarlayabilirsiniz */
}

.hero-content {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

/* Yazıların görsel üzerinde beyaz ve net durması için */
.hero h1, .products-hero h1, .hero-banner h1 {
    color: #ffffff !important;
    margin: 0 0 15px 0 !important;
    padding: 0 !important;
    text-shadow: 2px 2px 10px rgba(0,0,0,0.5) !important; /* Derinlik katar */
}

.hero p, .products-hero p, .hero-banner p {
    color: #ffffff !important;
    opacity: 0.95;
    text-shadow: 1px 1px 5px rgba(0,0,0,0.5) !important;
}

/* 1. Tüm sayfalarda Montserrat'ı ve merkezlemeyi zorla */
* { font-family: 'Montserrat', sans-serif !important; box-sizing: border-box; }

/* 2. İç sayfa bannerlarını sabitle */
.inner-hero, .products-hero, .sectors-hero {
    height: 450px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    background-size: cover !important;
    background-position: center !important;
    color: white !important;
}

/* 3. Menü ve Logo hizası */
header nav {
    max-width: 1400px !important;
    margin: 0 auto !important;
    padding: 20px !important;
}

.logo img {
    width: 200px !important;
    height: auto !important;
    flex-shrink: 0; /* Küçülmeyi engeller */
}

/* İngilizce ve Endüstriler sayfasındaki kaymayı durdurur */
.sectors-hero, .industries-hero, .hero-section {
    display: flex !important;
    flex-direction: column !important;
    justify-content: center !important; /* Dikeyde tam merkez */
    align-items: center !important;    /* Yatayda tam merkez */
    min-height: 450px !important;      /* Yüksekliği sabitle */
    padding: 0 !important;
    margin: 0 !important;
    overflow: hidden;
}

.hero-content {
    margin: 0 auto !important;
    transform: translateY(20px); /* Menüden kaynaklı yukarı kaymayı dengeler */
}

/* TÜM SEKTÖRLER SAYFALARI İÇİN STANDARTLAŞTIRMA (TR & EN) */

/* 1. Yazı Tipini Her Yerde Zorla */
* { 
    font-family: 'Montserrat', sans-serif !important; 
}

/* 2. Hero Alanını (Banner) ve Yazıyı Merkeze Çivile */
.hero {
    display: flex !important;
    flex-direction: column !important;
    justify-content: center !important; /* Dikeyde Tam Orta */
    align-items: center !important;    /* Yatayda Tam Orta */
    height: 350px !important;          /* Sabit Yükseklik */
    min-height: 350px !important;
    text-align: center !important;
    background-size: cover !important;
    background-position: center !important;
    width: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
}

/* 3. "INDUSTRIES" veya "SEKTÖRLER" Başlığının Konumu */
.hero h1 {
    font-size: 45px !important;
    color: #FFFFFF !important;
    font-weight: 800 !important;
    margin: 0 !important;
    padding: 0 !important;
    letter-spacing: 2px !important;
    text-transform: uppercase !important;
}

/* 4. Alt Metni Hizala */
.hero p {
    font-size: 18px !important;
    color: rgba(255,255,255,0.9) !important;
    margin-top: 10px !important;
}

/* 5. Modal (Teklif Al) Formundaki Font Sorunu */
#teklifModal input, 
#teklifModal textarea, 
#teklifModal button, 
#teklifModal h2 {
    font-family: 'Montserrat', sans-serif !important;
}

.hero {
    display: flex !important;
    flex-direction: column !important;
    justify-content: center !important; /* Dikeyde TAM ORTA */
    align-items: center !important;    /* Yatayda TAM ORTA */
    text-align: center !important;
}

.hero .container {
    width: 100% !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
}

/* Hero Alanı Tam Ortalama ve Genişlik Ayarı */
.hero {
    display: flex !important;
    flex-direction: column !important;
    justify-content: center !important; /* Dikeyde ortala */
    align-items: center !important;    /* Yatayda ortala */
    width: 100% !important;
    text-align: center !important;
    padding: 0 !important;
}

/* Başlık ve Yazı Konteyneri */
.hero .container {
    max-width: 1200px !important; /* TR sayfasındaki genişlik standardı */
    width: 100% !important;
    margin: 0 auto !important;
}

.hero h1 {
    font-size: 52px !important;
    font-weight: 800 !important;
    color: #FFFFFF !important;
    text-transform: uppercase !important;
    margin: 0 !important;
}
