:root {
    --charcoal: #212121;
    --red: #d50032;
    --white: #ffffff;
    --light-gray: #f8f9fa;
    --transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { font-family: 'Montserrat', sans-serif; color: var(--charcoal); line-height: 1.7; overflow-x: hidden; }
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;600;700&family=Playfair+Display:wght@700&display=swap');
/* --- Header & Navigation --- */
header {
    background: var(--white);
    padding: 0.8rem 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: sticky;
    top: 0;
    z-index: 4000;
    box-shadow: 0 2px 15px rgba(0,0,0,0.05);
}

.logo img { height: 45px; transition: var(--transition); }

nav.desktop-nav { display: flex; align-items: center; }
nav.desktop-nav ul { display: flex; list-style: none; }
nav.desktop-nav ul li { position: relative; padding: 0 15px; }
nav.desktop-nav ul li a {
    text-decoration: none;
    color: var(--charcoal);
    font-weight: 600;
    font-size: 0.85rem;
    transition: var(--transition);
}
nav.desktop-nav ul li a:hover { color: var(--red); }

/* Dropdown */
.dropdown-content {
    display: none;
    position: absolute;
    background: var(--white);
    min-width: 220px;
    top: 100%;
    left: 0;
    border-radius: 0 0 8px 8px;
    padding: 10px 0;
}
.dropdown:hover .dropdown-content { display: block; animation: slideUp 0.3s ease; }

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

.dropdown-content a {
    padding: 10px 20px;
    display: block;
    font-size: 0.8rem;
    text-decoration: none;
    color: var(--charcoal);
}
.dropdown-content a:hover { background: var(--light-gray); }

/* Hamburger Menu Icon */
.hamburger { display: none; cursor: pointer; flex-direction: column; gap: 6px; z-index: 3000; }
.hamburger span {
    width: 30px;
    height: 3px;
    background: var(--charcoal);
    border-radius: 10px;
    transition: var(--transition);
}

.hamburger.active span:nth-child(1) { transform: translateY(9px) rotate(45deg); background: var(--red); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: translateY(-9px) rotate(-45deg); background: var(--red); }

/* Mobile Menu Overlay */
.mobile-nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100vh;
    background: var(--white);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transition: 0.5s ease-in-out;
    z-index: 3000;
}
.mobile-nav.active { right: 0; }
.mobile-nav ul { list-style: none; text-align: center; }
.mobile-nav ul li { margin: 15px 0; }
.mobile-nav ul li a {
    font-size: 1.2rem;
    font-weight: 700;
    text-decoration: none;
    color: var(--charcoal);
}
.mobile-nav .btn-quote { margin-top: 30px; display: inline-block; }

/* Buttons */
.btn-quote {
    background: var(--red);
    color: var(--white);
    padding: 12px 28px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.8rem;
    transition: var(--transition);
    border: none;
    cursor: pointer;
}
.btn-quote:hover { transform: translateY(-3px);  }

/* --- Hero Section --- */
#hero {
    height: 100vh;
    background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), url('images/cagsan-magara.jpg');
    background-size: cover;
    background-position: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: var(--white);
    position: relative;
}
#hero h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 2rem;
    padding: 0 10%;
    line-height: 1.2;
}
.hero-btns { display: flex; gap: 20px; flex-wrap: wrap; justify-content: center; }

.scroll-down { position: absolute; bottom: 40px; cursor: pointer; animation: bounce 2s infinite; }
@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-10px); }
    60% { transform: translateY(-5px); }
}

/* --- Intro Section --- */
#intro { padding: 100px 8%; background: var(--white); }

.intro-container {
    display: flex;
    align-items: center;
    gap: 50px;
    flex-wrap: wrap;
    margin-bottom: 80px;
}

.intro-text { flex: 1; min-width: 350px; }
.intro-text h2 {
    color: var(--red);
    font-size: 2.4rem;
    margin-bottom: 25px;
    line-height: 1.2;
}
.intro-text p {
    margin-bottom: 20px;
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--charcoal);
}

.intro-video { flex: 1.2; min-width: 350px; width: 100%; }

.video-wrapper {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%;
    height: 0;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}
.video-wrapper iframe {
    position: absolute;
    top: 0; left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

/* Markalar Bölümü */
.markalar-header {
    width: 100%;
    margin-bottom: 40px;
    border-bottom: 1px solid var(--light-gray);
    padding-bottom: 15px;
}
.markalar-header h3 {
    font-size: 1.1rem;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--charcoal);
}

/* Tek logo-grid tanımı (ortak) */
.logo-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 30px;
    align-items: center;
}

/* --- Split Business Section --- */
#split-business { display: flex; height: 500px; width: 100%; }

.split-box {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: var(--white);
    transition: 0.5s ease;
    position: relative;
    text-decoration: none;
    overflow: hidden;
}

.corporate-box {
    background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), url('https://images.unsplash.com/photo-1486406146926-c627a92ad1ab?auto=format&fit=crop&w=800&q=80');
    background-size: cover;
}
.retail-box {
    background: linear-gradient(rgba(213, 0, 50, 0.5), rgba(213, 0, 50, 0.5)), url('https://images.unsplash.com/photo-1542838132-92c53300491e?auto=format&fit=crop&w=800&q=80');
    background-size: cover;
}
.split-box:hover { flex: 1.2; }
.split-box h2 {
    font-size: 2.2rem;
    font-weight: 700;
    z-index: 2;
    text-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

/* --- Logo Section --- */
.logo-section { padding: 80px 5%; text-align: center; }
.logo-section .logo-grid { margin-bottom: 60px; } /* margin sadece burada */

.logo-item img {
    max-width: 120px;
    transition: 0.3s;
    opacity: 1;
}
.logo-item img:hover { filter: grayscale(0%); opacity: 1; }

/* --- Slider Section --- */
.slider {
    height: 120px;
    margin: 40px auto;
    overflow: hidden;
    position: relative;
    width: 100%;
}

.slider .slide-track {
    animation: scroll 40s linear infinite;
    display: flex;
    width: calc(250px * 14);
}

@keyframes scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(calc(-250px * 7)); }
}

.slider .logo-item {
    width: 250px;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 20px;
}

.slider .logo-item img {
    max-width: 100%;
    max-height: 90px;
    width: auto;
    height: auto;
    object-fit: contain;
    opacity: 1;
    transition: 0.3s;
}
.slider .logo-item img:hover { filter: grayscale(0%); opacity: 1; }

/* --- Global Map Section --- */
#world-map-section {
    padding: 80px 8%;
    background: #6d7074;
    color: #ffffff;
    position: relative;
    overflow: hidden;
}

.map-header { max-width: 700px; margin-bottom: 40px; }
.map-header h2 {
    font-size: 2.8rem;
    font-weight: 700;
    margin: 15px 0;
    line-height: 1.1;
}
.map-header p { font-size: 1.1rem; opacity: 0.85; line-height: 1.6; }

.map-wrapper {
    width: 100%;
    overflow: hidden;
    display: flex;
    justify-content: center;
    padding: 20px 0;
}

#svg-map {
    width: 100%;
    height: auto;
    max-width: 1200px;
    display: block;
}

.country {
    fill: #ffffff !important;
    stroke: #373737 !important;
    stroke-width: 0.5;
    transition: all 0.3s ease;
}

.country.active {
    fill: #d50032 !important;
    cursor: default;
    stroke: #ffffff !important;
    stroke-width: 0.6;
}

.country.active:hover {
    fill: #ff0000 !important;
    filter: drop-shadow(0 0 3px rgba(213, 0, 50, 0.5));
}

.country.center {
    fill: var(--red) !important;
    stroke: #ffffff !important;
    stroke-width: 0.8;
    filter: drop-shadow(0 0 15px rgba(213, 0, 50, 0.8));
}

.country.center:hover {
    fill: #ff0000 !important;
    filter: drop-shadow(0 0 25px rgba(213, 0, 50, 1));
}

#map-tooltip {
    position: fixed;
    padding: 10px 18px;
    background: #ffffff;
    color: #53565a;
    font-weight: 700;
    font-size: 0.85rem;
    border-radius: 4px;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.2s;
    z-index: 9999;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    text-transform: uppercase;
}

/* --- Blog Section --- */
#blog { padding: 80px 8%; background: var(--light-gray); }
.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}
.blog-card {
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    transition: var(--transition);
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}
.blog-card:hover { transform: translateY(-10px); }
.blog-img { height: 200px; background-size: cover; background-position: center; }
.blog-content { padding: 25px; }

/* --- Footer --- */
footer { background: var(--charcoal); color: var(--white); padding: 80px 8% 30px; }
.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 50px;
}
.footer-logo img { height: 80px; margin-bottom: 20px; }
.footer-acc h4 {
    border-bottom: 1px solid rgba(255,255,255,0.1);
    padding: 15px 0;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    font-size: 0.9rem;
}
.footer-acc ul { list-style: none; margin-top: 15px; display: none; }
.footer-acc ul.active { display: block; }
.footer-acc ul li a {
    color: var(--white);
    text-decoration: none;
    font-size: 0.8rem;
    padding: 5px 0;
    display: block;
    opacity: 0.7;
    transition: 0.3s;
}
.footer-acc ul li a:hover { opacity: 1; padding-left: 5px; }

.social-btn {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    background: rgb(48, 48, 48);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    text-decoration: none;
}

.social-btn svg {
    width: 20px;
    height: 20px;
    fill: #ffffff;
    transition: transform 0.3s ease;
}

.social-btn:hover {
    background: var(--red);
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(213, 0, 50, 0.3);
}

.social-btn:hover svg { transform: scale(1.1); }

#salt-info-box {
    background: rgba(255,255,255,0.05);
    padding: 25px;
    border-radius: 15px;
    text-align: center;
    border: 1px solid rgba(255,255,255,0.1);
}

.btn-refresh-info {
    margin-top: 15px;
    padding: 8px 20px;
    background: var(--red);
    border: none;
    color: white;
    cursor: pointer;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.8rem;
}

/* Responsive Settings */
@media (max-width: 1024px) {
    nav.desktop-nav, .header-quote { display: none; }
    .hamburger { display: flex; }
    #hero h1 { font-size: 2.8rem; }
    #split-business { flex-direction: column; height: 800px; }

    .intro-container { flex-direction: column; text-align: center; gap: 40px; }
    .intro-text, .intro-video { min-width: 100%; }
    .intro-text h2 { font-size: 2rem; }
    #intro { padding: 60px 5%; }
}

@media (max-width: 768px) {
    #svg-map { min-height: 300px; }
    #world-map-section { padding: 40px 5%; }
}

/* --- Kurumsal Sayfa Özel CSS --- */
.corp-hero {
    height: 65vh;
    background: linear-gradient(rgba(0,0,0,0.65), rgba(0,0,0,0.65)), url('https://images.unsplash.com/photo-1516216628859-9bccecab13ca?auto=format&fit=crop&w=1920&q=80');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    text-align: center;
    padding: 0 5%;
}

.corp-hero h1 { font-size: 3.5rem; font-weight: 800; letter-spacing: -2px; line-height: 1.1; }

.section-padding { padding: 100px 10%; }
.section-title { font-size: 2.4rem; font-weight: 800; color: var(--charcoal); margin-bottom: 40px; position: relative; }
.section-title::after { content: ''; display: block; width: 60px; height: 4px; background: var(--red); margin-top: 15px; }
.section-title.center::after { margin-left: auto; margin-right: auto; }

/* Kapasite Kartları */
.cap-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px; margin-top: 40px; }
.cap-card { 
    background: var(--white); padding: 45px; border-radius: 25px; 
    box-shadow: 0 20px 40px rgba(0,0,0,0.05); transition: var(--transition); 
    border-bottom: 5px solid transparent;
}
.cap-card:hover { transform: translateY(-10px); border-color: var(--red); }
.cap-card h4 { color: var(--red); font-size: 1.4rem; margin-bottom: 20px; font-weight: 700; }
.cap-tag { background: var(--light-gray); padding: 6px 15px; border-radius: 50px; font-size: 0.75rem; font-weight: 700; display: inline-block; margin: 5px 3px; }

/* Üretim Süreci Steps */
.process-wrapper { display: flex; flex-wrap: wrap; gap: 20px; justify-content: space-between; margin-top: 50px; }
.process-step { flex: 1; min-width: 150px; text-align: center; }
.step-num { 
    width: 60px; height: 60px; background: var(--red); color: white; 
    border-radius: 50%; display: flex; align-items: center; justify-content: center; 
    margin: 0 auto 20px; font-weight: 800; font-size: 1.3rem; box-shadow: 0 10px 20px rgba(213,0,50,0.2); 
}

/* Faaliyet Alanları Kart Yapısı */
.sector-card {
    position: relative;
    height: 350px;
    border-radius: 20px;
    overflow: hidden;
    text-decoration: none; /* Link çizgisini kaldırır */
    display: flex;
    align-items: flex-end;
    padding: 40px;
    transition: var(--transition);
    border: 1px solid rgba(255,255,255,0.1);
}

/* Kartların üzerindeki karartma efekti (Yazıların okunması için) */
.sector-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(to bottom, transparent 20%, rgba(0,0,0,0.8) 90%);
    z-index: 1;
    transition: var(--transition);
}

/* Hover durumunda karartmanın rengini kurumsal kırmızıya çevir */
.sector-card:hover::before {
    background: linear-gradient(to bottom, transparent 0%, rgba(213, 0, 50, 0.7) 100%);
}

.sector-card h4 {
    color: white;
    font-size: 1.4rem;
    font-weight: 700;
    position: relative;
    z-index: 2;
    margin: 0;
    transition: var(--transition);
}

.sector-card:hover h4 {
    transform: translateY(-10px);
}

/* Kartlar için Arka Plan Görselleri */
.sector-card.retail { background: url('images/parekende.jpg') center/cover; }
.sector-card.wholesale { background: url('images/toptan.jpg') center/cover; }
.sector-card.public { background: url('images/kartal-dr-lutfi-kirdar-sehir-hastanesi.webp') center/cover; }
.sector-card.export { background: url('images/ithalat-ihracat.jpg') center/cover; }
.sector-card.cosmetic { background: url('images/dekorasyon-kozmetik.jpg') center/cover; }
.sector-card.private-label { background: url('images/fason-etiket.jpg') center/cover; }

.sector-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.4);
}
/* --- İletişim Sayfası Özel CSS --- */
.contact-hero {
    background: linear-gradient(rgba(83, 86, 90, 0.8), rgba(83, 86, 90, 0.8)), url('images/contact-bg.jpg');
    background-size: cover; background-position: center;
    padding: 80px 10%; color: white; text-align: center;
}

.contact-cards {
    display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px; margin-top: -50px; padding: 0 10%;
}

.info-card {
    background: white; padding: 30px; border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.08); text-align: center;
    transition: var(--transition); border-bottom: 4px solid transparent;
}
.info-card:hover { transform: translateY(-10px); border-color: var(--red); }
.info-card svg { width: 40px; height: 40px; fill: var(--red); margin-bottom: 15px; }
.info-card h4 { font-size: 0.9rem; letter-spacing: 1px; color: var(--charcoal); margin-bottom: 10px; }
.info-card p { font-size: 0.85rem; font-weight: 600; color: #333; }

.contact-main-grid {
    display: grid; grid-template-columns: 1.2fr 1fr;
    gap: 50px; padding: 80px 10%; align-items: start;
}

/* Form Tasarımı */
.contact-form-wrapper { background: var(--light-gray); padding: 50px; border-radius: 30px; }
.form-group { margin-bottom: 20px; }
.form-group label { display: block; font-size: 0.8rem; font-weight: 700; margin-bottom: 8px; opacity: 0.7; }
.form-control {
    width: 100%; padding: 15px; border-radius: 12px; border: 1px solid #ddd;
    font-family: inherit; transition: 0.3s;
}
.form-control:focus { outline: none; border-color: var(--red); box-shadow: 0 0 0 4px rgba(213,0,50,0.1); }

/* Harita Toggle Sistemi */
.mapp-container { position: sticky; top: 120px; }
.map-switch { display: flex; gap: 10px; margin-bottom: 20px; }
.switch-btn {
    flex: 1; padding: 12px; border-radius: 10px; border: 1px solid #ddd;
    background: white; cursor: pointer; font-weight: 700; font-size: 0.8rem; transition: 0.3s;
}
.switch-btn.active { background: var(--red); color: white; border-color: var(--red); }
.map-iframe-wrapper { border-radius: 20px; overflow: hidden; height: 450px; box-shadow: 0 10px 30px rgba(0,0,0,0.1); }
.map-iframe { width: 100%; height: 100%; border: 0; display: none; }
.map-iframe.active { display: block; }

@media (max-width: 992px) {
    .contact-main-grid { grid-template-columns: 1fr; }
    .contact-cards { margin-top: 20px; padding: 0 5%; }
}

/* --- MOBİL OPTİMİZASYON (768px ve altı) --- */
@media (max-width: 768px) {
    /* Genel Boşluk Ayarı: %10 yan boşluk mobilde içeriği boğar, %5'e düşürüyoruz */
    .section-padding, 
    #corp-intro, 
    #capacity, 
    #quality, 
    .contact-main-grid {
        padding: 60px 5% !important;
    }

    /* Hero Yazı Boyutları: Mobilde devasa görünmemesi için küçültüyoruz */
    .corp-hero h1, .contact-hero h1 {
        font-size: 2.2rem !important;
        letter-spacing: -1px !important;
    }

    /* İLETİŞİM SAYFASI DÜZELTMELERİ */
    .contact-main-grid {
        grid-template-columns: 1fr !important; /* Form ve Haritayı alt alta al */
        gap: 30px !important;
    }

    .contact-cards {
        padding: 0 5% !important;
        margin-top: 20px !important;
        grid-template-columns: 1fr !important; /* Kartları tek sütun yap */
    }

    .contact-form-wrapper {
        padding: 30px 20px !important; /* İç boşluğu daralt */
    }

    .map-iframe-wrapper {
        height: 350px !important; /* Harita yüksekliğini telefon için optimize et */
    }

    /* KURUMSAL SAYFA DÜZELTMELERİ */
    #corp-intro {
        flex-direction: column;
        text-align: center;
    }

    .intro-text, .intro-video {
        min-width: 100% !important;
    }

    .process-grid {
        grid-template-columns: 1fr 1fr !important; /* Süreç adımını 2'li sıra yap */
        gap: 20px !important;
    }

    .summary-list li {
        text-align: left;
        font-size: 1rem !important;
    }
}

/* Küçük Telefonlar İçin Ek (480px ve altı) */
@media (max-width: 480px) {
    .process-grid {
        grid-template-columns: 1fr !important; /* Çok küçük ekranlarda süreç adımlarını tekli yap */
    }
    
    .cert-grid {
        grid-template-columns: 1fr !important;
    }
}

/* --- PL SECTION ÖZEL STİLLER --- */
.pl-section {
    text-align: center;
}

.pl-container {
    max-width: 900px;
    margin: 0 auto;
    border: 2px dashed #ddd;
    padding: 60px; /* Masaüstünde ferah kalsın */
    border-radius: 40px;
    background: #fff;
}

.pl-container h2 {
    font-weight: 800;
    color: var(--red);
    margin-bottom: 20px;
}

.pl-container p {
    font-size: 1.1rem;
    margin-bottom: 35px;
    line-height: 1.6;
}

/* --- MOBİL İYİLEŞTİRMELER (768px altı) --- */
@media (max-width: 768px) {
    .pl-container {
        /* Mobilde padding'i %120'den makul seviyeye çektik */
        padding: 35px 20px !important; 
        border-radius: 25px !important;
        margin: 0 5%; /* Kenarlara çok yapışmasın */
    }

    .pl-container h2 {
        font-size: 1.5rem !important;
    }

    .pl-container p {
        font-size: 0.95rem !important;
        margin-bottom: 25px !important;
    }

    /* Butonun mobilde kutuyu patlatmasını engelliyoruz */
    .btn-responsive {
        display: block !important; /* Tam genişlik kaplasın */
        width: 100%;
        padding: 15px 10px !important; /* Yan paddingleri kıstık */
        font-size: 0.9rem !important;
        box-sizing: border-box;
    }
}

/* --- MOBİL DROPDOWN DÜZENLEMESİ --- */
@media (max-width: 1024px) {
    /* Mobilde içeriğin yanlara taşmasını engellemek için */
    .mobile-nav .dropdown-content {
        display: none; /* Varsayılan olarak kapalı */
        position: static; /* Masaüstündeki mutlak konumu iptal et */
        width: 100%;
        background: rgba(0, 0, 0, 0.03); /* Hafif belirgin arka plan */
        box-shadow: none;
        border-top: none;
        padding: 5px 0;
        animation: none; /* Mobil performansı için animasyonu kapatabilirsin */
    }

    /* JavaScript 'active' classını eklediğinde açılmasını sağla */
    .mobile-nav .dropdown.active .dropdown-content {
        display: block;
    }

    /* Yanındaki oku aşağı döndürmek için (opsiyonel şıklık) */
    .mobile-nav .dropdown.active > a {
        color: var(--red);
    }
}

/* --- Perakende Sayfası --- */
.retail-main { padding-top: 100px; }

.filterr-wrapper {
    padding: 60px 10% 40px;
    text-align: center;
    background: var(--bg-light);
}

.filterr-wrapper h1 { font-size: 2.8rem; margin-bottom: 30px; color: var(--fume); }

.filterr-nav { display: flex; justify-content: center; gap: 15px; flex-wrap: wrap; }

.filterr-btn {
    padding: 12px 30px;
    border: 1px solid #ddd;
    background: var(--white);
    cursor: pointer;
    font-weight: 700;
    font-size: 0.8rem;
    text-transform: uppercase;
    border-radius: 50px;
    color: var(--charcoal);
    transition: var(--transition);
}

/* Hover ve Active State (Butonun kaybolmasını engeller) */
.filterr-btn:hover, .filterr-btn.active {
    background: var(--cagsan-red) !important;
    border-color: var(--cagsan-red) !important;
    box-shadow: 0 8px 20px rgba(213, 0, 50, 0.2);
}

/* --- Ürün Grid --- */
.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 35px;
    padding: 60px 10% 100px;
}

.product-card {
    background: var(--white);
    border: 1px solid #eee;
    border-radius: 15px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: transform 0.4s, opacity 0.4s;
    opacity: 1;
    transform: scale(1);
    position: relative;
    z-index: 1;
}

/* Filtreleme Gizleme Sınıfı */
.product-card.hidden {
    display: none;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.08);
}

.card-img { height: 300px; overflow: hidden; background: #f1f1f1; }
.card-img img { width: 100%; height: 100%; object-fit: cover; transition: 0.5s; }
.product-card:hover .card-img img { transform: scale(1.1); }

.card-content { padding: 30px; text-align: center; flex-grow: 1; }
.cat-tag { color: var(--cagsan-red); font-size: 0.7rem; font-weight: 800; text-transform: uppercase; margin-bottom: 10px; display: block; }
.card-content h3 { font-size: 1.5rem; margin-bottom: 15px; color: var(--fume); }
.card-content p { font-size: 0.9rem; color: var(--charcoal); opacity: 0.8; margin-bottom: 25px; }


.product-card:hover .btn-detail {
    background: var(--cagsan-red);
    border-color: var(--cagsan-red);
    color: var(--white) !important;
}

@media (max-width: 768px) {
    .product-grid { padding: 40px 5%; }
}

/* --- Toptan Tedarik Sayfası Özel Stilleri --- */
.wholesale-hero {
    height: 50vh;
    background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), url('https://images.unsplash.com/photo-1556910103-1c02745aae4d?q=80&w=1800') center/cover;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    text-align: center;
}

.wholesale-hero h1 { font-size: 3.5rem; letter-spacing: -1px; }

.section-light { padding: 80px 10%; background: var(--white); }
.section-dark { padding: 80px 10%; background: var(--bg-light); }

.feature-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.feature-text h2 { font-size: 2.4rem; margin-bottom: 25px; color: var(--charcoal); }
.feature-text p { margin-bottom: 20px; color: var(--text-muted); font-size: 1.05rem; }

/* Hedef Kitle Kartları */
.audience-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
    margin-top: 50px;
}

.audience-card {
    background: var(--white);
    padding: 30px 20px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: var(--transition);
    border: 1px solid #eee;
}

.audience-card i { font-size: 2.5rem; color: var(--cagsan-red); margin-bottom: 20px; }
.audience-card h4 { font-size: 0.9rem; font-weight: 700; text-transform: uppercase; color: var(--charcoal); }
.audience-card:hover { transform: translateY(-10px); border-color: var(--cagsan-red); }

/* Kapasite Bilgi Şeridi */
.capacity-bar {
    background: var(--charcoal);
    color: var(--white);
    padding: 60px 10%;
    display: flex;
    justify-content: space-around;
    text-align: center;
}

.cap-item h3 { font-size: 2.5rem; color: var(--cagsan-red); margin-bottom: 5px; }
.cap-item p { font-size: 0.8rem; font-weight: 600; text-transform: uppercase; opacity: 0.8; }

@media (max-width: 992px) {
    .feature-grid { grid-template-columns: 1fr; }
    .audience-grid { grid-template-columns: repeat(2, 1fr); }
    .capacity-bar { flex-direction: column; gap: 40px; }
}

/* --- İthalat & İhracat Sayfası Özel Stilleri --- */
.global-hero {
    height: 50vh;
    background: linear-gradient(rgba(44, 62, 80, 0.75), rgba(44, 62, 80, 0.75)), 
                url('https://images.unsplash.com/photo-1578575437130-527eed3abbec?q=80&w=1800') center/cover;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
}

.global-hero h1 { font-size: 3.5rem; text-transform: uppercase; letter-spacing: 2px; }

.export-content { padding: 100px 10%; background: var(--white); }

.map-section {
    padding: 80px 10%;
    background: var(--bg-light);
    text-align: center;
}

.map-container {
    max-width: 1000px;
    margin: 50px auto;
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0,0,0,0.1);
}

/* İhracat Bölgeleri Grid */
.regions-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    margin-top: 40px;
}

.region-card {
    background: var(--white);
    padding: 30px;
    border-radius: 12px;
    border: 1px solid #eee;
    transition: var(--transition);
}

.region-card:hover {
    border-color: var(--cagsan-red);
    transform: translateY(-5px);
}

.region-card i { font-size: 2rem; color: var(--cagsan-red); margin-bottom: 15px; display: block; }
.region-card h4 { font-weight: 700; color: var(--charcoal); }

/* İthalat Vurgu Alanı */
.import-focus {
    background: var(--charcoal);
    color: var(--white);
    padding: 80px 10%;
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 60px;
    align-items: center;
}

@media (max-width: 992px) {
    .regions-grid { grid-template-columns: 1fr 1fr; }
    .import-focus { grid-template-columns: 1fr; text-align: center; }
}


/* Global Reset (Mavi yazı ve alt çizgi sorununu kökten çözer) */
.kd-body-fix a, .kd-body-fix a:visited, .kd-body-fix a:hover {
    text-decoration: none !important;
}

.kd-body-fix h1, .kd-body-fix h2, .kd-body-fix h3 {
    color: var(--kd-fume);
}

.kd-body-fix p, .kd-body-fix span, .kd-body-fix div {
    font-family: 'Montserrat', sans-serif !important;
}

/* KD Hero - Ana sayfa derinliğini korur */
.kd-hero-section {
    height: 50vh;
    background: linear-gradient(rgba(44, 62, 80, 0.6), rgba(44, 62, 80, 0.6)), 
                url('https://images.unsplash.com/photo-1515377905703-c4788e51af15?auto=format&fit=crop&w=1920&q=80') center/cover fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--kd-white);
}

.kd-hero-section h1 {
    font-size: 3.5rem;
    color: white;
    letter-spacing: 2px;
    text-transform: uppercase;
}

/* İçerik Blokları - Asimetrik ve Temiz */
.kd-content-block {
    padding: 100px 10%;
    display: flex;
    align-items: center;
    gap: 80px;
    background: var(--kd-white);
}

.kd-content-block:nth-child(even) {
    background: var(--kd-bg);
    flex-direction: row-reverse;
}

.kd-text-area { flex: 1.2; }
.kd-image-area { flex: 1; }

.kd-image-area img {
    width: 100%;
    border-radius: 15px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    display: block;
}

.kd-text-area h2 {
    font-size: 2.6rem;
    margin-bottom: 25px;
    position: relative;
}

.kd-text-area h2::after {
    content: '';
    display: block;
    width: 50px;
    height: 4px;
    background: var(--kd-red);
    margin-top: 15px;
}

.kd-text-area p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--kd-text);
    margin-bottom: 20px;
}

/* Özellik Listesi */
.kd-spec-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-top: 30px;
}

.kd-spec-item {
    display: flex;
    align-items: center;
    font-weight: 700;
    font-size: 0.85rem;
    color: var(--kd-fume);
    text-transform: uppercase;
}

.kd-spec-item i {
    color: var(--kd-red);
    margin-right: 12px;
    font-size: 1.1rem;
}

/* Teknik Bilgi Kartı */
.kd-info-card {
    background: var(--kd-white);
    padding: 30px;
    border-left: 6px solid var(--kd-red);
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    margin-top: 30px;
}

.kd-info-card h4 {
    color: var(--kd-red);
    text-transform: uppercase;
    font-size: 0.9rem;
    margin-bottom: 10px;
}

/* Responsive */
@media (max-width: 992px) {
    .kd-content-block { flex-direction: column !important; padding: 60px 5%; gap: 40px; text-align: center; }
    .kd-text-area h2::after { margin: 15px auto; }
    .kd-spec-grid { grid-template-columns: 1fr; text-align: left; }
    .kd-hero-section h1 { font-size: 2.2rem; }
}

/* --- Fason Sayfası İkna Araçları --- */

/* --- Fason & Özel Etiket (PL) Gelişmiş Stiller --- */

.fason-page-wrapper {
    overflow-x: hidden;
}

.fason-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 5%;
}

/* Hero Section */
.fason-hero {
    height: 50vh;
    background: linear-gradient(rgba(44, 62, 80, 0.7), rgba(44, 62, 80, 0.7)), 
                url('https://images.unsplash.com/photo-1553413077-190dd305871c?q=80&w=1920') center/cover;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
}

.fason-hero h1 {
    font-size: 3.5rem;
    margin-bottom: 15px;
    text-transform: uppercase;
}

/* Intro Section */
.fason-intro-v2 {
    padding: 100px 0;
    background: var(--white);
}

.fason-intro-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 60px;
    align-items: center;
}

.fason-intro-text h2 {
    font-size: 2.6rem;
    color: var(--charcoal);
    margin-bottom: 30px;
}

.fason-intro-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #444;
}

.fason-stats-mini {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.fason-stat-box {
    background: var(--light-gray);
    padding: 40px;
    border-left: 5px solid var(--red);
    box-shadow: 0 10px 30px rgba(0,0,0,0.03);
}

.fason-stat-box strong {
    display: block;
    font-size: 2.2rem;
    color: var(--red);
}

/* Comparison Table */
.fason-comparison {
    padding: 100px 0;
    background: var(--bg-light);
}

.fason-title-center {
    text-align: center;
    font-size: 2.4rem;
    margin-bottom: 60px;
}

.fason-comp-table {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.fason-comp-col {
    background: var(--white);
    padding: 50px;
    border-radius: 15px;
    border: 1px solid #eee;
}

.fason-comp-col.active {
    background: var(--charcoal);
    color: var(--white);
    position: relative;
    transform: scale(1.05);
    border: 2px solid var(--red);
    box-shadow: 0 30px 60px rgba(0,0,0,0.2);
}

.fason-badge {
    position: absolute;
    top: -15px;
    right: 20px;
    background: var(--red);
    color: white;
    padding: 5px 20px;
    font-size: 0.75rem;
    font-weight: 700;
    border-radius: 50px;
}

.fason-comp-col h4 {
    font-size: 1.6rem;
    margin-bottom: 30px;
    border-bottom: 1px solid #ddd;
    padding-bottom: 15px;
}

.fason-comp-col.active h4 { border-bottom-color: rgba(255,255,255,0.1); }

.fason-comp-col ul { list-style: none; }
.fason-comp-col ul li { margin-bottom: 15px; display: flex; align-items: center; gap: 15px; }
.fason-comp-col ul li i.fa-times { color: #e74c3c; }
.fason-comp-col ul li i.fa-check { color: #2ecc71; }

/* --- Fason Journey Section (Hatasız ve Modern Akış) --- */

.fason-journey-sec {
    padding: 100px 0;
    background: var(--white);
}

.fason-subtitle-center {
    text-align: center;
    max-width: 700px;
    margin: -40px auto 60px;
    color: var(--charcoal);
    opacity: 0.8;
    font-size: 1.1rem;
}

.fason-journey-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.fason-journey-card {
    text-align: center;
    position: relative;
    padding: 0 15px;
}

/* Adım Daireleri */
.fason-step-header {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px;
    position: relative;
}

.fason-step-circle {
    width: 60px;
    height: 60px;
    background: var(--charcoal);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
    z-index: 5;
    transition: var(--transition);
    border: 4px solid var(--white);
    box-shadow: 0 0 0 2px var(--charcoal);
}

/* Adımlar Arasındaki Bağlantı Çizgisi */
.fason-step-line {
    position: absolute;
    height: 2px;
    background: #eee;
    width: 100%;
    left: 50%;
    z-index: 1;
}

/* Hover Efekti: Aktif Adımı Parlatır */
.fason-journey-card:hover .fason-step-circle {
    background: var(--red);
    box-shadow: 0 0 0 2px var(--red);
    transform: scale(1.1);
}

/* Metin Alanları */
.fason-journey-card h5 {
    font-size: 1.3rem;
    color: var(--charcoal);
    margin-bottom: 15px;
    font-weight: 700;
}

.fason-journey-card p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #666;
    padding: 0 10px;
}

/* Mobil Uyumluluk */
@media (max-width: 992px) {
}
/* Final Call Section */
.fason-final-call {
    padding: 120px 5%;
    background: linear-gradient(rgba(0,0,0,0.8), rgba(0,0,0,0.8)), url('https://images.unsplash.com/photo-1504148455328-c376907d081c?q=80&w=1920') center/cover;
    text-align: center;
    color: var(--white);
}

.fason-final-content h3 { font-size: 2.8rem; margin-bottom: 20px; }
.fason-btn-primary {
    display: inline-block;
    padding: 20px 60px;
    background: var(--red);
    color: var(--white) !important;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    border-radius: 4px;
    margin-top: 40px;
    transition: 0.4s;
}

.fason-btn-primary:hover {
    background: #fff;
    color: var(--red) !important;
    transform: translateY(-5px);
}

/* Responsive */
@media (max-width: 992px) {
    .fason-intro-grid, .fason-comp-table { grid-template-columns: 1fr; }
    .fason-hero h1 { font-size: 2.5rem; }
    .fason-comp-col.active { transform: scale(1); }
}

/* --- Çağsan Salt-Pour Preloader --- */

#cagsan-loader-wrap {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: var(--charcoal);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 99999;
    transition: transform 0.8s cubic-bezier(0.77, 0, 0.175, 1);
}

.loader-inner {
    text-align: center;
    position: relative;
}

/* Yukarıdan Dökülen Tuz Taneleri */
.salt-stream {
    position: absolute;
    top: -100px;
    left: 50%;
    transform: translateX(-50%);
    width: 20px;
    height: 100px;
}

.grain {
    position: absolute;
    width: 4px;
    height: 4px;
    background: #fff;
    border-radius: 1px;
    opacity: 0;
    animation: grainFall 1.5s infinite linear;
}

/* Tanelerin farklı zamanlarda düşmesi için gecikmeler */
.grain:nth-child(1) { left: 0; animation-delay: 0s; }
.grain:nth-child(2) { left: 8px; animation-delay: 0.3s; }
.grain:nth-child(3) { left: -8px; animation-delay: 0.6s; }
.grain:nth-child(4) { left: 4px; animation-delay: 0.9s; }
.grain:nth-child(5) { left: -4px; animation-delay: 1.2s; }

@keyframes grainFall {
    0% { transform: translateY(0) rotate(0deg); opacity: 0; }
    30% { opacity: 1; }
    100% { transform: translateY(150px) rotate(360deg); opacity: 0; }
}

/* Logo ve Marka Parlaması */
.cagsan-icon {
    width: 80px;
    height: 80px;
    margin-bottom: 20px;
}

.icon-shape {
    fill: none;
    stroke: var(--red);
    stroke-width: 3;
    stroke-dasharray: 300;
    stroke-dashoffset: 300;
    animation: drawIcon 1.5s forwards ease-in-out;
}

@keyframes drawIcon {
    to { stroke-dashoffset: 0; }
}

.loader-brand {
    color: #fff;
    font-size: 1.2rem;
    letter-spacing: 5px;
    font-weight: 700;
    margin-top: 10px;
    opacity: 0;
    animation: fadeBrand 1s 1s forwards;
}

@keyframes fadeBrand {
    to { opacity: 1; }
}

/* Alt Yüklenme Çubuğu */
.loader-progress-bar {
    width: 150px;
    height: 2px;
    background: rgba(255,255,255,0.1);
    margin: 30px auto 0;
    border-radius: 2px;
    overflow: hidden;
}

.progress-fill {
    width: 0%;
    height: 100%;
    background: var(--red);
    animation: fillBar 3s forwards ease-in-out;
}

@keyframes fillBar {
    to { width: 100%; }
}

/* Kapatma Sınıfı (Sayfa yukarı kaysın) */
.cagsan-loader-up {
    transform: translateY(-100%);
}

/* --- Kamu Kurumları & Hastaneler (Kamu) Bölümü --- */

.kamu-page-wrapper {
    background-color: var(--white);
}

/* Kamu Hero - Şehir ve Hizmet Vurgulu */
.kamu-hero {
    height: 50vh;
    background: linear-gradient(rgba(44, 62, 80, 0.7), rgba(44, 62, 80, 0.7)), 
                url('https://images.unsplash.com/photo-1586771107445-d3ca888129ff?q=80&w=1920') center/cover fixed;
    display: flex; align-items: center; justify-content: center; color: var(--white); text-align: center;
}
.kamu-hero h1 { font-size: 3.2rem; text-transform: uppercase; letter-spacing: 1px; }

/* Hizmet Alanları - Grid Yapısı */
.kamu-service-container { padding: 100px 10%; }

.kamu-intro-text { text-align: center; max-width: 900px; margin: 0 auto 60px; }
.kamu-intro-text h2 { font-size: 2.5rem; color: var(--charcoal); margin-bottom: 25px; }
.kamu-intro-text p { font-size: 1.1rem; line-height: 1.9; color: #444; }

.kamu-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-top: 50px;
}

.kamu-card {
    background: var(--light-gray);
    padding: 50px;
    border-radius: 4px;
    border-top: 6px solid var(--red);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}
.kamu-card:hover { transform: translateY(-10px); box-shadow: 0 20px 40px rgba(0,0,0,0.05); }

.kamu-card i { font-size: 3rem; color: var(--red); margin-bottom: 25px; }
.kamu-card h3 { font-size: 1.8rem; color: var(--charcoal); margin-bottom: 20px; }
.kamu-card p { font-size: 1rem; color: #555; line-height: 1.7; margin-bottom: 25px; flex-grow: 1; }

/* Lojistik ve Güvence Şeridi */
.kamu-logistics-bar {
    background: var(--charcoal);
    color: var(--white);
    padding: 60px 10%;
    display: flex;
    justify-content: space-around;
    text-align: center;
}
.kamu-log-item strong { display: block; font-size: 2.5rem; color: var(--red); margin-bottom: 5px; }
.kamu-log-item span { font-size: 0.8rem; text-transform: uppercase; letter-spacing: 2px; opacity: 0.8; }

/* Sosyal Sorumluluk Mesaj Alanı */
.kamu-mission-box {
    padding: 100px 10%;
    background: linear-gradient(rgba(255,255,255,0.9), rgba(255,255,255,0.9)), url('images/cagsan-dokusu.jpg');
    text-align: center;
}
.kamu-mission-content {
    max-width: 850px;
    margin: 0 auto;
    padding: 40px;
    border: 1px solid #eee;
}
.kamu-mission-content h4 { color: var(--red); font-size: 1.1rem; text-transform: uppercase; margin-bottom: 15px; }
.kamu-mission-content p { font-size: 1.2rem; font-style: italic; color: var(--charcoal); line-height: 1.8; }

@media (max-width: 992px) {
    .kamu-grid { grid-template-columns: 1fr; }
    .kamu-hero h1 { font-size: 2.2rem; }
    .kamu-logistics-bar { flex-direction: column; gap: 40px; }
}

/* =========================================
   BLOG SAYFASI ÖZEL STİLLERİ (blgp- Prefix)
   ========================================= */

/* Ana Wrapper */
.blgp-main-wrapper {
    background-color: #f9f9f9; /* Hafif gri arka plan, kartları öne çıkarır */
    padding-bottom: 80px;
}

/* Blog Navigasyon (Kategori Filtreleme) */
.blgp-nav-bar {
    background: #ffffff;
    padding: 20px 0;
    border-bottom: 1px solid #eee;
    border-top: 1px solid #eee;
    margin-bottom: 50px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.03);
}

.blgp-nav-list {
    display: flex;
    justify-content: center;
    gap: 35px;
    list-style: none;
    padding: 0;
    margin: 0;
    flex-wrap: wrap;
}

.blgp-nav-link {
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--charcoal); /* Global değişken kullanıldı */
    text-decoration: none;
    padding: 10px 5px;
    position: relative;
    transition: all 0.3s ease;
}

/* Hover ve Active Durumu İçin Alt Çizgi Efekti */
.blgp-nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 3px;
    background-color: var(--red); /* Global değişken kullanıldı */
    transition: width 0.3s ease;
}

.blgp-nav-link:hover,
.blgp-nav-link.active {
    color: var(--red);
}

.blgp-nav-link:hover::after,
.blgp-nav-link.active::after {
    width: 100%;
}

/* Blog Grid Alanı - Göze Hoş Gelen Düzen */
.blgp-content-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr)); /* Duyarlı grid */
    gap: 40px;
    padding: 0 5%; /* Kenarlardan boşluk */
    max-width: 1200px;
    margin: 0 auto;
}

/* Gelişmiş Blog Kartı Tasarımı */
.blgp-post-card {
    background: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.4s ease;
    display: flex;
    flex-direction: column;
    height: 100%; /* Kartların eşit boyda olması için */
}

.blgp-post-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 30px rgba(0,0,0,0.1);
}

/* Kart Görsel Alanı */
.blgp-img-holder {
    height: 220px;
    position: relative;
    overflow: hidden;
}

.blgp-img-holder img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.blgp-post-card:hover .blgp-img-holder img {
    transform: scale(1.1);
}

/* Kategori Rozeti */
.blgp-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    background: var(--red);
    color: #ffffff;
    padding: 6px 14px;
    font-size: 0.7rem;
    font-weight: 800;
    text-transform: uppercase;
    border-radius: 30px;
    z-index: 2;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
}

/* Kart İçeriği */
.blgp-body {
    padding: 30px;
    flex-grow: 1; /* İçeriğin alanı doldurması için */
    display: flex;
    flex-direction: column;
}

.blgp-meta {
    font-size: 0.75rem;
    color: #999;
    margin-bottom: 15px;
    display: block;
    font-weight: 600;
}

.blgp-body h3 {
    font-size: 1.4rem;
    color: var(--charcoal);
    margin-bottom: 15px;
    line-height: 1.4;
    font-weight: 700;
    transition: color 0.3s ease;
}

.blgp-post-card:hover .blgp-body h3 {
    color: var(--red);
}

.blgp-body p {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.7;
    margin-bottom: 25px;
    flex-grow: 1; /* Metnin alanı doldurması için */
}

/* "Okumaya Devam Et" Butonu */
.blgp-read-btn {
    font-weight: 800;
    font-size: 0.8rem;
    text-transform: uppercase;
    color: var(--charcoal);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    position: relative;
    align-self: flex-start; /* Sola yasla */
}

.blgp-read-btn::after {
    content: '';
    display: block;
    width: 30px;
    height: 2px;
    background: var(--red);
    transition: width 0.3s ease, background-color 0.3s ease;
}

.blgp-post-card:hover .blgp-read-btn {
    color: var(--red);
}

.blgp-post-card:hover .blgp-read-btn::after {
    width: 50px;
    background-color: var(--red);
}

/* Mobil Uyumluluk (Blog) */
@media (max-width: 768px) {
    .blgp-nav-list {
        gap: 15px;
    }
    .blgp-nav-link {
        font-size: 0.75rem;
        padding: 8px 3px;
    }
    .blgp-content-grid {
        grid-template-columns: 1fr; /* Mobilde tek kolon */
        padding: 0 20px;
    }
}

/* --- Blog Detay Sayfası (blg-dtl-) --- */

.blg-dtl-wrapper {
    background: var(--white);
    padding-bottom: 100px;
}

/* Makale Başlık Alanı */
.blg-dtl-header {
    padding: 140px 10% 60px;
    background: var(--bg-light);
    text-align: center;
}

.blg-dtl-meta {
    display: block;
    color: var(--red);
    font-weight: 700;
    font-size: 0.85rem;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.blg-dtl-header h1 {
    font-size: 3rem;
    color: var(--charcoal);
    max-width: 900px;
    margin: 0 auto;
    line-height: 1.2;
}

/* İçerik Düzeni (Main + Sidebar) */
.blg-dtl-main {
    max-width: 1200px;
    margin: 60px auto 0;
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
    padding: 0 5%;
}

/* Makale Gövdesi */
.blg-dtl-article {
    line-height: 1.9;
    color: #444;
}

.blg-dtl-article h2 {
    font-size: 1.8rem;
    color: var(--charcoal);
    margin: 40px 0 20px;
}

.blg-dtl-article p {
    margin-bottom: 25px;
    font-size: 1.1rem;
}

.blg-dtl-article img {
    width: 100%;
    border-radius: 8px;
    margin: 30px 0;
    box-shadow: 0 15px 40px rgba(0,0,0,0.08);
}

.blg-dtl-article ul {
    margin-bottom: 30px;
    padding-left: 20px;
}

.blg-dtl-article ul li {
    margin-bottom: 12px;
}

.blg-dtl-article blockquote {
    border-left: 5px solid var(--red);
    padding: 20px 40px;
    background: var(--bg-light);
    font-style: italic;
    font-size: 1.2rem;
    margin: 40px 0;
    color: var(--charcoal);
}

/* Sidebar (Sağ Panel) */
.blg-dtl-sidebar {
    position: sticky;
    top: 100px;
    height: fit-content;
}

.blg-dtl-widget {
    background: var(--white);
    border: 1px solid #eee;
    padding: 30px;
    border-radius: 4px;
    margin-bottom: 30px;
}

.blg-dtl-widget h4 {
    font-size: 1.1rem;
    color: var(--charcoal);
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--red);
    display: inline-block;
}

.blg-dtl-cta-card {
    background: var(--charcoal);
    color: var(--white);
    padding: 40px 30px;
    text-align: center;
}

.blg-dtl-cta-card h5 { font-size: 1.4rem; margin-bottom: 15px; }
.blg-dtl-cta-card p { font-size: 0.9rem; opacity: 0.8; margin-bottom: 25px; }

.blg-dtl-btn {
    display: inline-block;
    padding: 12px 30px;
    background: var(--red);
    color: white !important;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.8rem;
}

@media (max-width: 992px) {
    .blg-dtl-main { grid-template-columns: 1fr; }
    .blg-dtl-header h1 { font-size: 2.2rem; }
}


/* --- Çok Yakında V2 (cy-v2-) --- */

.cy-v2-wrapper {
    position: relative;
    width: 100%;
    height: 100vh;
    background: radial-gradient(circle at center, #2c3e50 0%, #1a252f 100%);
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Mouse ile etkileşime giren canvas */
#cy-salt-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}

.cy-v2-container {
    position: relative;
    z-index: 10;
    text-align: center;
    max-width: 700px;
    padding: 20px;
}

/* Pulsar İkon Efekti */
.cy-v2-icon {
    position: relative;
    width: 80px;
    height: 80px;
    margin: 0 auto 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 2.5rem;
}

.cy-v2-pulse {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: var(--red);
    opacity: 0.3;
    animation: cyPulse 2s infinite;
}

@keyframes cyPulse {
    0% { transform: scale(1); opacity: 0.4; }
    100% { transform: scale(2.5); opacity: 0; }
}

/* Başlık ve Çizgi */
.cy-v2-title {
    font-size: 3.5rem;
    font-weight: 900;
    color: var(--white);
    letter-spacing: -1px;
    line-height: 1;
    margin-bottom: 20px;
}

.cy-v2-line {
    width: 60px;
    height: 4px;
    background: var(--red);
    margin: 0 auto 25px;
}

.cy-v2-desc {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.7);
    line-height: 1.8;
    margin-bottom: 40px;
}

/* Modern Form Tasarımı */
.cy-v2-form {
    max-width: 400px;
    margin: 0 auto 40px;
}

.cy-v2-input-group {
    display: flex;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    padding: 5px;
    border-radius: 50px;
    backdrop-filter: blur(10px);
}

.cy-v2-input-group input {
    flex: 1;
    background: transparent;
    border: none;
    padding: 12px 20px;
    color: white;
    outline: none;
}

.cy-v2-input-group button {
    background: var(--red);
    color: white;
    border: none;
    padding: 0 25px;
    border-radius: 50px;
    font-weight: 700;
    cursor: pointer;
    transition: 0.3s;
}

.cy-v2-input-group button:hover {
    background: var(--white);
    color: var(--red);
}

/* Sosyal Medya */
.cy-v2-social a {
    color: white;
    font-size: 1.2rem;
    margin: 0 10px;
    opacity: 0.5;
    transition: 0.3s;
}

.cy-v2-social a:hover {
    opacity: 1;
    color: var(--red);
}

@media (max-width: 768px) {
    .cy-v2-title { font-size: 2.2rem; }
    .cy-v2-input-group { flex-direction: column; background: transparent; border: none; }
    .cy-v2-input-group input { background: rgba(255,255,255,0.05); border-radius: 50px; margin-bottom: 10px; }
    .cy-v2-input-group button { padding: 15px; }
}

/* --- Fason Journey Mobile Responsive --- */

/* Tablet Görünümü (992px altı) */
@media (max-width: 992px) {
    .fason-journey-grid {
        grid-template-columns: repeat(2, 1fr); /* 2x2 dizilim */
        gap: 50px 30px;
    }
    
    /* Yatay çizgileri mobilde gizle, tasarımı bozar */
    .fason-step-line {
        display: none;
    }

    .fason-title-center {
        font-size: 2rem;
    }
}

/* Telefon Görünümü (768px altı) */
@media (max-width: 768px) {
    .fason-journey-sec {
        padding: 60px 0;
    }

    .fason-journey-grid {
        grid-template-columns: 1fr; /* Tek sütun dikey akış */
        gap: 40px;
    }

    .fason-subtitle-center {
        margin: -30px auto 40px;
        font-size: 1rem;
    }

    .fason-journey-card {
        padding: 0 20px;
    }

    .fason-step-header {
        margin-bottom: 20px;
    }

    .fason-step-circle {
        width: 50px;
        height: 50px;
        font-size: 1rem;
    }

    .fason-journey-card h5 {
        font-size: 1.2rem;
    }

    .fason-journey-card p {
        font-size: 0.9rem;
        max-width: 100%; /* Metni tüm genişliğe yay */
    }
}

/* --- İthalat & İhracat Sayfası (exp-) --- */

.exp-page-wrapper {
    background-color: var(--white);
    overflow-x: hidden;
}

/* Global Hero Alanı */
.exp-hero {
    height: 50vh;
    background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), 
                url('https://images.unsplash.com/photo-1578575437130-527eed3abbec?q=80&w=1920') center/cover fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
    padding: 0 5%;
}

.exp-hero h1 {
    font-size: 3.2rem;
    text-transform: uppercase;
    margin-bottom: 15px;
}

/* İhracat İçerik Grid Sistemi */
.exp-content-section {
    padding: 100px 10%;
}

.exp-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 80px;
    align-items: center;
}

.exp-text-area h2 {
    font-size: 2.5rem;
    margin-bottom: 30px;
    color: var(--charcoal);
}

.exp-text-area p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #444;
    margin-bottom: 20px;
}

.exp-image-area img {
    width: 100%;
    border-radius: 15px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    display: block;
}

/* --- MOBİL UYUMLULUK (RESPONSIVE) --- */

@media (max-width: 1024px) {
    .exp-content-section {
        padding: 80px 5%;
    }
    .exp-grid {
        gap: 40px;
    }
    .exp-hero h1 {
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    .exp-grid {
        grid-template-columns: 1fr; /* Mobilde her şey tek sütun */
        gap: 50px;
        text-align: center; /* Mobilde metni ortala */
    }

    .exp-hero {
        height: 40vh;
    }

    .exp-hero h1 {
        font-size: 2rem;
    }

    .exp-text-area h2 {
        font-size: 1.8rem;
    }

    .exp-image-area {
        order: -1; /* Mobilde görseli metnin üstüne çıkarır (isteğe bağlı) */
    }
    
    .exp-text-area p {
        font-size: 1rem;
    }
}

/* --- Bayilik Sayfası V3 (cs-bayi-) --- */

.cs-bayi-wrapper {
    background-color: #f9f9f9;
    padding: 60px 0;
}

.cs-bayi-content {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 20px;
}

.cs-bayi-row {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    background: #fff;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

/* Sol Bilgi Sütunu */
.cs-bayi-info-col {
    flex: 1;
    background-color: var(--red);
    color: #fff;
    padding: 60px 40px;
}

.cs-bayi-note h2 {
    font-size: 2.4rem;
    margin-bottom: 30px;
    line-height: 1.2;
}

.cs-bayi-note p {
    font-size: 0.95rem;
    line-height: 1.8;
    margin-bottom: 30px;
    opacity: 0.9;
}

.cs-catalog-link {
    display: inline-block;
    padding: 20px;
    border: 2px dashed rgba(255, 255, 255, 1);
    color: #fff;
    text-decoration: none;
    transition: 0.3s;
}

.cs-catalog-link:hover {
    background: rgb(41, 41, 41);
}

/* Sağ Form Sütunu */
.cs-bayi-form-col {
    flex: 1.4;
    padding: 60px 40px;
}

.cs-bayi-form-col h1 {
    font-size: 2.2rem;
    color: var(--charcoal);
    margin-bottom: 10px;
}

.cs-bayi-form-col h1 span {
    color: var(--red);
    font-weight: 800;
}

.cs-form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.cs-form-group input, 
.cs-form-group select, 
.cs-form-group textarea {
    width: 100%;
    padding: 14px;
    margin-bottom: 15px;
    border: none;
    background-color: #f2f4f5;
    border-radius: 4px;
    outline: none;
}

.cs-form-group textarea {
    height: 100px;
    resize: none;
}

.cs-submit-btn {
    width: 100%;
    background-color: var(--red);
    color: #fff;
    padding: 16px;
    border: none;
    border-radius: 4px;
    font-weight: 700;
    text-transform: uppercase;
    cursor: pointer;
    transition: 0.3s;
}

.cs-submit-btn:hover {
    background-color: var(--charcoal);
}

/* Alt Marka Şeridi */
.cs-brand-structures {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 30px 40px;
    border-top: 1px solid #eee;
    background: #fff;
}

.cs-struct-left span {
    font-weight: 700;
    color: var(--charcoal);
    text-transform: uppercase;
}

.cs-struct-right ul {
    display: flex;
    list-style: none;
    gap: 30px;
    align-items: center;
}

.cs-struct-right img {
    height: 40px;
    opacity: 0.6;
    filter: grayscale(1);
    transition: 0.3s;
}

.cs-struct-right img:hover {
    opacity: 1;
    filter: grayscale(0);
}

/* Mobil */
@media (max-width: 992px) {
    .cs-bayi-row { flex-direction: column; }
    .cs-form-grid { grid-template-columns: 1fr; }
    .cs-brand-structures { flex-direction: column; gap: 20px; }
}

/* --- Kariyer Sayfası (hr-) --- */

.hr-page-wrapper {
    background-color: #fdfdfd;
}

.hr-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 5%;
}

/* Hero */
.hr-hero {
    height: 45vh;
    background: linear-gradient(rgba(26, 37, 47, 0.85), rgba(26, 37, 47, 0.85)), 
                url('https://images.unsplash.com/photo-1521737604893-d14cc237f11d?q=80&w=1920') center/cover fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
}

.hr-hero h1 { font-size: 3rem; margin-bottom: 15px; text-transform: uppercase; }

/* Değerler Kartları */
.hr-values { padding: 100px 0; background: var(--white); }
.hr-section-title { text-align: center; margin-bottom: 60px; }
.hr-section-title h2 { font-size: 2.5rem; color: var(--charcoal); margin-bottom: 15px; }

.hr-values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.hr-value-card {
    padding: 40px;
    background: var(--charcoal);
    border-radius: 8px;
    text-align: center;
    transition: 0.3s;
}

.hr-value-card:hover { transform: translateY(-10px); box-shadow: 0 15px 35px rgba(0,0,0,0.05); }
.hr-value-card i { font-size: 2.5rem; color: var(--red); margin-bottom: 20px; }
.hr-value-card h3 { margin-bottom: 15px; color: var(--white); }
.hr-value-card p { font-size: 0.95rem; line-height: 1.7; color: #ffffff; }

/* Aktif İlanlar - Boş Durum */
.hr-openings { padding: 60px 0; background: #f4f7f6; }
.hr-openings-box {
    background: #fff;
    border: 2px dashed #ddd;
    border-radius: 12px;
    padding: 80px 40px;
    text-align: center;
}

.hr-no-jobs i { font-size: 3.5rem; color: #ccc; margin-bottom: 20px; }
.hr-no-jobs h3 { font-size: 1.8rem; color: var(--charcoal); margin-bottom: 10px; }
.hr-no-jobs p { color: #888; max-width: 600px; margin: 0 auto; }

/* Başvuru Formu Kartı */
.hr-application { padding: 100px 0; }
.hr-apply-card {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    background: var(--white);
    box-shadow: 0 20px 60px rgba(0,0,0,0.08);
    border-radius: 15px;
    overflow: hidden;
}

.hr-apply-info {
    background: var(--charcoal);
    color: var(--white);
    padding: 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.hr-apply-info h2 { font-size: 2.2rem; margin-bottom: 20px; }
.hr-apply-info p { opacity: 0.8; line-height: 1.8; margin-bottom: 30px; }

.hr-contact-detail {
    display: flex;
    align-items: center;
    gap: 15px;
    font-weight: 700;
    color: var(--red);
}

.hr-apply-form { padding: 60px; }
.hr-form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-bottom: 20px; }

.hr-apply-form input, .hr-apply-form select, .hr-apply-form textarea {
    width: 100%;
    padding: 15px;
    background: #f8f9fa;
    border: 1px solid #eee;
    border-radius: 4px;
    outline: none;
}

.hr-submit-btn {
    background: var(--red);
    color: white;
    border: none;
    padding: 18px 40px;
    font-weight: 700;
    text-transform: uppercase;
    border-radius: 4px;
    cursor: pointer;
    transition: 0.3s;
}

.hr-submit-btn:hover { background: var(--charcoal); transform: translateY(-3px); }

/* Responsive */
@media (max-width: 992px) {
    .hr-values-grid, .hr-apply-card, .hr-form-row { grid-template-columns: 1fr; }
    .hr-apply-info, .hr-apply-form { padding: 40px; }
}