/* =========================================
   HAKKIMIZDA SAYFASI (about.css)
   ========================================= */

/* --- GENEL FONT ZORLAMASI --- */
body, h1, h2, h3, h4, h5, h6, p, span, a, li {
    font-family: 'Inter', sans-serif !important;
}

/* =========================================
   BANNER ALANI
   ========================================= */
.about-banner {
    width: 95%;
    margin: 100px auto 0 auto;
    aspect-ratio: 21 / 7;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.2);
    overflow: hidden;
    position: relative;
    background-image: url('../images/about-bg.jpg');
    background-size: cover;
    background-position: center center;
    background-color: #f0f0f0;
}

/* =========================================
   HİKAYE KISMI (AÇIKLAMA)
   ========================================= */
.about-story {
    padding: 80px 0;
    background-color: #fff;
}

.story-content {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Hikaye Resimleri */
.story-content img,
.about-image img,
.about-img img,
.col-md-6 img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    display: block;
    margin-bottom: 0;
}

/* Başlıklar */
.company-header {
    margin-bottom: 3rem;
    display: block;
    width: 100%;
    text-align: center;
}

.full-company-name {
    font-size: 1.8rem !important;
    font-weight: 700 !important;
    color: #555555 !important;
    line-height: 1.4;
    text-transform: uppercase;
    margin: 0;
    text-align: center;
    letter-spacing: 0.5px;
}

.story-text { text-align: left; }
.text-block { margin-bottom: 2.5rem; }

.story-text h3 {
    font-size: 1.25rem;
    font-weight: 700 !important;
    color: #555555 !important;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    position: relative;
    padding-left: 15px;
}

.story-text h3::before {
    content: '';
    position: absolute;
    left: 0; top: 50%; transform: translateY(-50%);
    width: 4px; height: 100%;
    background-color: #d31212;
    border-radius: 2px;
}

.story-text p {
    color: #7a7a7a !important;
    font-size: 1rem;
    line-height: 1.7;
    font-weight: 400;
}
.story-text strong { color: #555555 !important; font-weight: 700; }

/* =========================================
   DEĞERLERİMİZ KISMI
   ========================================= */
.values-section {
    padding: 0 0 80px 0;
    background: #fff;
}

.values-grid { 
    display: grid; 
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); 
    gap: 30px; 
}

.value-card {
    background: #fff; 
    padding: 40px 30px; 
    border-radius: 8px; 
    text-align: center;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05); 
    transition: 0.3s; 
    border-top: 3px solid transparent;
}

.value-card:hover { 
    transform: translateY(-5px); 
    border-top-color: #d31212; 
    box-shadow: 0 10px 20px rgba(0,0,0,0.1); 
}

.value-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 70px;
    height: 70px;
    background-color: #f9e7e7;
    border-radius: 50%;
    margin-bottom: 1rem;
}

.value-icon i { font-size: 2rem; color: #d31212; }
.value-title { font-size: 1.2rem; font-weight: 700; color: #555555; margin-bottom: 1rem; }
.value-description { font-size: 0.95rem; color: #7a7a7a; line-height: 1.6; }

/* =========================================
   YOLCULUĞUMUZ (TIMELINE) KISMI
   ========================================= */
.timeline-section {
    padding: 0 0 80px 0;
}

.timeline { position: relative; max-width: 800px; margin: 0 auto; }
.timeline::before { content: ''; position: absolute; left: 50%; transform: translateX(-50%); width: 2px; height: 100%; background: #e0e0e0; }
.timeline-item { margin-bottom: 40px; position: relative; width: 100%; }

.timeline-content {
    width: 45%; background: #fff; padding: 20px; border-radius: 8px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.05); position: relative;
}

.timeline-item:nth-child(odd) .timeline-content { float: left; text-align: right; }
.timeline-item:nth-child(even) .timeline-content { float: right; text-align: left; }

.timeline-dot {
    width: 16px; height: 16px; background: #d31212; border: 3px solid #fff; border-radius: 50%;
    position: absolute; left: 50%; top: 20px; transform: translateX(-50%); box-shadow: 0 0 0 1px #e0e0e0; z-index: 2;
}
.timeline-item::after { content: ""; display: block; clear: both; }

.timeline-year { font-weight: 800; color: #d31212; font-size: 1.2rem; margin-bottom: 5px; }
.timeline-title { font-weight: 700; color: #555555; font-size: 1.1rem; margin-bottom: 10px; }
.timeline-description { font-size: 0.95rem; color: #7a7a7a; }

/* =========================================
   GENEL DÜZEN DÜZELTMELERİ
   ========================================= */
.values-section, .timeline-section {
    display: block !important; opacity: 1 !important; visibility: visible !important;
    width: 100% !important; min-height: 100px !important; position: relative !important;
    z-index: 10 !important; clear: both !important; overflow: visible !important;
}

.values-grid { display: grid !important; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)) !important; gap: 30px !important; }
.timeline { display: block !important; width: 100% !important; height: auto !important; }
.timeline::after { content: ""; display: table; clear: both; }

.values-section h2, .values-section h3, .values-section p,
.timeline-section h2, .timeline-section h3, .timeline-section p {
    color: #555555 !important; opacity: 1 !important;
}
.value-description, .timeline-description { color: #7a7a7a !important; }

/* Başlık Alanı Düzeni */
.values-section .section-header,
.timeline-section .section-header {
    display: block !important; visibility: visible !important; opacity: 1 !important;
    height: auto !important; margin-bottom: 5rem !important; background: transparent !important;
}

.section-title {
    display: block !important; visibility: visible !important; opacity: 1 !important;
    font-size: 1.8rem !important; font-weight: 700 !important; color: #555555 !important;
    text-transform: uppercase; margin: 0 !important;
}

.section-subtitle {
    display: block !important; visibility: visible !important; opacity: 1 !important;
    color: #d31212 !important;
}

.section-header, .section-title { border: none !important; text-decoration: none !important; }
.section-header::after, .section-header::before, .section-title::after, .section-title::before {
    display: none !important; content: none !important; height: 0 !important; width: 0 !important; background: transparent !important;
}

/* =========================================
   MOBİL UYUMLULUK
   ========================================= */
@media (max-width: 991px) {
    .about-banner {
        aspect-ratio: 21 / 9;
    }

    .company-header, .full-company-name { text-align: center !important; width: 100% !important; }
    .full-company-name { font-size: 1.6rem !important; display: block !important; }

    .story-content img, .about-image img, .about-img img {
        content: normal !important; background: none !important; padding: 0 !important;
        width: 100% !important; height: auto !important; object-fit: contain !important;
        display: block !important; margin-bottom: 25px !important; border-radius: 12px !important;
    }

    .timeline::before { left: 20px; }
    .timeline-content {
        width: calc(100% - 60px) !important; float: right !important; text-align: left !important; margin-left: 60px;
    }
    .timeline-dot { left: 20px !important; }
}