/* ========================================================= */
/* --- ERKAP KAPI - WARM LUXURY & HIGH-CONTRAST STİLLER --- */
/* ========================================================= */

:root {
    /* Sıcak Krem, Şampanya ve Vizon Paleti */
    --bg-main: #f5f2eb;          /* Ana Zemin: Sıcak Krem / Grej */
    --bg-card: #fdfbf7;          /* Kartlar: Yumuşak Fildişi */
    --bg-section: #eae4d8;        /* Bölüm Geçişleri: Hafif Vizon */
    
    /* Altın & Kehribar Aksanlar */
    --gold-primary: #b58d43;     /* Şampanya Altını */
    --gold-dark: #8c6a2a;        /* Koyu Kehribar */
    --gold-light: #d6b46e;
    --gold-gradient: linear-gradient(135deg, #d6b46e 0%, #b58d43 50%, #8c6a2a 100%);
    
    /* Derin Okunabilir Tipografi */
    --text-dark: #2c2724;        /* Derin Ahşap Antrasit */
    --text-body: #544d47;        /* Sıcak Gövde Metni */
    --text-muted: #82786f;       /* Yumuşak İkincil Metin */
    
    /* Çerçeve ve Gölgeler */
    --border-color: #e2d9cc;     /* Yumuşak Sıcak Kenarlık */
    --border-gold: rgba(181, 141, 67, 0.35);
    --shadow-soft: 0 10px 30px rgba(70, 50, 20, 0.07);
    --shadow-hover: 0 18px 40px rgba(181, 141, 67, 0.18);
}

body {
    background-color: var(--bg-main);
    color: var(--text-body);
}

.about-container {
    max-width: 1360px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ========================================================= */
/* --- ARAPÇA TASARIM KAYMASINI ENGELLEYEN SABİTLER --- */
/* ========================================================= */

.about-section,
.stats-section,
.products-quality-section,
.mission-vision-section,
.map-section,
.page-hero {
    direction: ltr !important;
    text-align: left !important;
}

/* ========================================================= */
/* --- HERO BANNER & MENÜ OKUNABİLİR KONTRASTLI PERDE --- */
/* ========================================================= */

.page-hero {
    position: relative;
    width: 100%;
    min-height: 400px;
    background-image: url('../uploads/kurumsal/arkaplan.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 150px;
    padding-bottom: 70px;
}

.page-hero .hero-curtain-light {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        180deg, 
        rgba(18, 22, 28, 0.82) 0%,    
        rgba(45, 36, 25, 0.55) 45%,   
        rgba(245, 242, 235, 1) 100%   
    );
    z-index: 1;
}

.hero-container {
    position: relative;
    z-index: 2;
    text-align: center !important;
}

.page-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 42px;
    font-weight: 800;
    color: #ffffff;
    letter-spacing: 2px;
    margin-bottom: 15px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.35);
}

.breadcrumb-wrapper {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(253, 251, 247, 0.95);
    backdrop-filter: blur(8px);
    border: 1px solid var(--border-gold);
    padding: 8px 22px;
    border-radius: 30px;
    font-size: 13px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.breadcrumb-link {
    color: var(--text-body);
    text-decoration: none;
    transition: color 0.25s ease;
    display: flex;
    align-items: center;
    gap: 6px;
    font-weight: 600;
}

.breadcrumb-link:hover {
    color: var(--gold-primary);
}

.breadcrumb-separator {
    color: var(--gold-primary);
    font-size: 11px;
}

.breadcrumb-current {
    color: var(--gold-dark);
    font-weight: 700;
}

/* ========================================================= */
/* --- ŞİRKET HİKAYESİ VE KARTLAR --- */
/* ========================================================= */

.about-section {
    padding: 70px 0;
    background-color: var(--bg-main);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1.15fr;
    gap: 60px;
    align-items: center;
    direction: ltr !important;
}

.about-image-card {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-soft);
}

.about-img {
    width: 100%;
    height: 100%;
    max-height: 480px;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.about-image-card:hover .about-img {
    transform: scale(1.03);
}

.experience-badge {
    position: absolute;
    bottom: 25px;
    right: 25px;
    background: rgba(253, 251, 247, 0.95);
    backdrop-filter: blur(10px);
    border: 1px solid var(--gold-primary);
    padding: 16px 24px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    gap: 14px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
    direction: ltr !important;
}

.badge-number {
    font-size: 30px;
    font-weight: 800;
    color: var(--gold-primary);
    line-height: 1;
}

.badge-text {
    font-size: 12px;
    font-weight: 700;
    color: var(--text-dark);
    line-height: 1.35;
    max-width: 110px;
    text-align: left !important;
}

.section-tag {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
    justify-content: flex-start;
}

.section-tag.center {
    justify-content: center !important;
}

.tag-line {
    width: 30px;
    height: 2px;
    background: var(--gold-gradient);
    border-radius: 2px;
}

.tag-text {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1.5px;
    color: var(--gold-primary);
}

.about-heading {
    font-size: 30px;
    font-weight: 800;
    color: var(--text-dark);
    line-height: 1.35;
    margin-bottom: 20px;
    text-align: left !important;
}

.about-text-lead {
    font-size: 15.5px;
    font-weight: 600;
    color: var(--gold-dark);
    line-height: 1.65;
    margin-bottom: 15px;
    text-align: left !important;
}

.about-text {
    font-size: 14px;
    color: var(--text-body);
    line-height: 1.75;
    margin-bottom: 25px;
    text-align: left !important;
}

.brand-highlight-box {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    background: var(--bg-card);
    padding: 22px;
    border-radius: 14px;
    border: 1px solid var(--border-gold);
    border-left: 4px solid var(--gold-primary);
    box-shadow: var(--shadow-soft);
    direction: ltr !important;
    text-align: left !important;
}

.brand-icon {
    width: 44px;
    height: 44px;
    min-width: 44px;
    border-radius: 10px;
    background: rgba(181, 141, 67, 0.12);
    color: var(--gold-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
}

.brand-info h3 {
    font-size: 15px;
    color: var(--text-dark);
    margin-bottom: 5px;
    font-weight: 700;
    text-align: left !important;
}

.brand-info p {
    font-size: 13px;
    color: var(--text-body);
    line-height: 1.55;
    margin: 0;
    text-align: left !important;
}

/* ========================================================= */
/* --- İSTATİSTİK KARTLARI --- */
/* ========================================================= */

.stats-section {
    padding: 40px 0 70px 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    direction: ltr !important;
}

.stat-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    padding: 30px 20px;
    border-radius: 16px;
    text-align: center !important;
    box-shadow: var(--shadow-soft);
    transition: all 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
    border-color: var(--gold-primary);
}

.stat-icon {
    width: 50px;
    height: 50px;
    margin: 0 auto 15px auto;
    border-radius: 12px;
    background: rgba(181, 141, 67, 0.12);
    color: var(--gold-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
}

.stat-number {
    font-size: 26px;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 6px;
}

.stat-label {
    font-size: 12.5px;
    color: var(--text-muted);
    font-weight: 600;
}

/* ========================================================= */
/* --- ÜRÜN YELPAZESİ VE TEMEL DEĞERLER --- */
/* ========================================================= */

.products-quality-section {
    padding: 70px 0;
    background-color: var(--bg-section);
}

.pq-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 35px;
    direction: ltr !important;
}

.pq-card {
    background: var(--bg-card);
    padding: 35px;
    border-radius: 18px;
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-soft);
    text-align: left !important;
}

.pq-card.highlight-card {
    border-color: var(--border-gold);
}

.pq-title {
    font-size: 18px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
    justify-content: flex-start;
}

.pq-title i {
    color: var(--gold-primary);
}

.pq-text {
    font-size: 13.5px;
    color: var(--text-body);
    line-height: 1.65;
    margin-bottom: 20px;
    text-align: left !important;
}

.product-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.product-list li {
    font-size: 13.5px;
    font-weight: 600;
    color: var(--text-dark);
    display: flex;
    align-items: center;
    gap: 10px;
    justify-content: flex-start;
}

.product-list li i {
    color: var(--gold-primary);
    font-size: 14px;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    margin-bottom: 20px;
    direction: ltr !important;
}

.value-tag {
    background: var(--bg-main);
    border: 1px solid var(--border-color);
    padding: 10px 14px;
    border-radius: 10px;
    font-size: 12.5px;
    font-weight: 600;
    color: var(--text-dark);
    display: flex;
    align-items: center;
    gap: 8px;
    justify-content: flex-start;
}

.value-tag i {
    color: var(--gold-primary);
    font-size: 12px;
}

.values-footer-note {
    font-size: 13px;
    font-style: italic;
    color: var(--text-muted);
    border-top: 1px solid var(--border-color);
    padding-top: 15px;
    margin-top: 15px;
    text-align: left !important;
}

/* ========================================================= */
/* --- VİZYON / KURUMSAL HEDEFLER --- */
/* ========================================================= */

.mission-vision-section {
    padding: 80px 0;
    background-color: var(--bg-main);
}

.section-main-title {
    text-align: center !important;
    font-size: 28px;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 45px;
}

.mv-cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    direction: ltr !important;
}

.mv-card {
    background: var(--bg-card);
    padding: 35px 25px;
    border-radius: 16px;
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-soft);
    transition: all 0.3s ease;
    text-align: left !important;
}

.mv-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-hover);
    border-color: var(--gold-primary);
}

.mv-icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    background: var(--gold-gradient);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    margin-bottom: 20px;
    box-shadow: 0 6px 18px rgba(181, 141, 67, 0.28);
}

.mv-card h3 {
    font-size: 17px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 12px;
    text-align: left !important;
}

.mv-card p {
    font-size: 13.5px;
    color: var(--text-body);
    line-height: 1.65;
    margin: 0;
    text-align: left !important;
}

/* ========================================================= */
/* --- HARİTA BÖLÜMÜ --- */
/* ========================================================= */

.map-section {
    padding: 60px 0 90px 0;
    background-color: var(--bg-section);
}

.map-header {
    text-align: center !important;
    margin-bottom: 35px;
}

.map-title {
    font-size: 28px;
    font-weight: 800;
    color: var(--text-dark);
    margin-top: 8px;
    margin-bottom: 8px;
}

.map-subtitle {
    font-size: 14px;
    color: var(--text-muted);
}

.map-card {
    border-radius: 18px;
    overflow: hidden;
    border: 1px solid var(--border-color);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.06);
}

.map-card iframe {
    display: block;
}

/* ========================================================= */
/* --- MOBİL UYUMLULUK --- */
/* ========================================================= */

@media screen and (max-width: 992px) {
    .page-hero {
        min-height: 300px;
        padding-top: 130px;
    }

    .page-title {
        font-size: 32px;
    }

    .about-grid, 
    .pq-grid {
        grid-template-columns: 1fr;
        gap: 35px;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .mv-cards-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .about-heading {
        font-size: 24px;
    }
}

@media screen and (max-width: 576px) {
    .stats-grid {
        grid-template-columns: 1fr;
    }

    .values-grid {
        grid-template-columns: 1fr;
    }

    .experience-badge {
        bottom: 15px;
        right: 15px;
        padding: 10px 16px;
    }

    .badge-number {
        font-size: 22px;
    }

    .badge-text {
        font-size: 11px;
    }

    .pq-card {
        padding: 22px;
    }

    .map-title {
        font-size: 22px;
    }

    .map-card iframe {
        height: 320px;
    }
}