/* ===== HAKKIMDA SAYFASI CSS DOSYASI ===== */

/* Sayfa Üst Boşluğu */
.sayfa-ust-bosluk {
    padding-top: 5rem;
}

/* Hero Bölümü */
.hakkimda-hero {
    padding: 6rem 0;
    background: linear-gradient(135deg, #f0f9ff 0%, #e0e7ff 50%, #f3e8ff 100%);
}

.hero-baslik-merkez {
    text-align: center;
    margin-bottom: 4rem;
}

.ana-baslik {
    font-size: 3rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
    .ana-baslik {
        font-size: 3rem;
    }
}

.hero-aciklama-merkez {
    font-size: 1.25rem;
    color: #6b7280;
    max-width: 48rem;
    margin: 0 auto;
}

/* Ana Hakkımda Bölümü */
.ana-hakkimda-bolumu {
    padding: 6rem 0;
    background-color: white;
}

.hakkimda-izgara {
    display: grid;
    gap: 4rem;
    align-items: center;
}

@media (min-width: 1024px) {
    .hakkimda-izgara {
        grid-template-columns: 1fr 1fr;
    }
}

.hakkimda-metin-alani {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.hakkimda-baslik {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
    .hakkimda-baslik {
        font-size: 3rem;
    }
}

.hakkimda-paragraf {
    font-size: 1.25rem;
    color: #6b7280;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.hakkimda-paragraf-kucuk {
    font-size: 1.125rem;
    color: #6b7280;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

/* İstatistik Kartları */
.istatistik-kartlari {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.istatistik-karti {
    text-align: center;
}

.istatistik-sayisi {
    font-size: 2rem;
    font-weight: 700;
    color: #3b82f6;
    margin-bottom: 0.5rem;
}

.istatistik-etiketi {
    color: #6b7280;
    font-size: 0.875rem;
}

/* Hakkımda Kart Alanı */
.hakkimda-kart-alani {
    margin-top: 3rem;
}

@media (min-width: 1024px) {
    .hakkimda-kart-alani {
        margin-top: 0;
    }
}

.hakkimda-kart-konteyneri {
    position: relative;
}

.hakkimda-kart-arkaplan {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #3b82f6, #6366f1);
    border-radius: 1rem;
    transform: rotate(6deg);
}

.hakkimda-kart {
    position: relative;
    background-color: white;
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.kart-ozellik-listesi {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.kart-ozellik {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.ozellik-ikonu {
    width: 2rem;
    height: 2rem;
}

.ozellik-ikonu-mavi {
    color: #3b82f6;
}

.ozellik-ikonu-yesil {
    color: #16a34a;
}

.ozellik-ikonu-mor {
    color: #9333ea;
}

.ozellik-baslik {
    font-weight: 600;
    color: #1f2937;
    font-size: 1.125rem;
    margin-bottom: 0;
}

.ozellik-aciklama {
    color: #6b7280;
    margin: 0;
}

/* Beceriler Bölümü */
.beceriler-bolumu {
    padding: 6rem 0;
    background-color: #f9fafb;
}

.beceriler-izgara {
    display: grid;
    gap: 3rem;
}

@media (min-width: 768px) {
    .beceriler-izgara {
        grid-template-columns: 1fr 1fr;
    }
}

.beceri-alani {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.beceri-baslik {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 1.5rem;
}

.beceri-ogesi {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.beceri-ust-satir {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.beceri-adi {
    font-weight: 600;
    color: #1f2937;
}

.beceri-yuzdesi {
    color: #6b7280;
}

.beceri-cubugu {
    width: 100%;
    background-color: #e5e7eb;
    border-radius: 9999px;
    height: 0.75rem;
}

.beceri-dolgu {
    height: 0.75rem;
    border-radius: 9999px;
    transition: all 1s ease-out;
}

.beceri-dolgu-mavi {
    background-color: #3b82f6;
}

.beceri-dolgu-sari {
    background-color: #eab308;
}

.beceri-dolgu-yesil {
    background-color: #16a34a;
}

.beceri-dolgu-turuncu {
    background-color: #ea580c;
}

.beceri-dolgu-camgobegi {
    background-color: #0891b2;
}

.beceri-dolgu-mor {
    background-color: #9333ea;
}

/* Araçlar ve Platformlar */
.araclar-izgara {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.arac-karti {
    background-color: white;
    padding: 1.5rem;
    border-radius: 0.75rem;
    box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
    transition: box-shadow 0.3s ease;
}

.arac-karti:hover {
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.arac-icerik {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.arac-ikonu {
    color: #3b82f6;
}

.arac-adi {
    font-weight: 600;
    color: #1f2937;
}

/* Değerler Bölümü */
.degerler-bolumu {
    padding: 6rem 0;
    background: linear-gradient(135deg, #1e3a8a 0%, #3730a3 50%, #581c87 100%);
}

.degerler-izgara {
    display: grid;
    gap: 2rem;
}

@media (min-width: 768px) {
    .degerler-izgara {
        grid-template-columns: repeat(3, 1fr);
    }
}

.deger-karti {
    background-color: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 2rem;
    border-radius: 1rem;
    transition: all 0.3s ease;
}

.deger-karti:hover {
    background-color: rgba(255, 255, 255, 0.2);
}

.deger-ikonu-konteyneri {
    width: 4rem;
    height: 4rem;
    background-color: #3b82f6;
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    margin-bottom: 1.5rem;
}

.deger-baslik {
    font-size: 1.25rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1rem;
}

.deger-aciklama {
    color: #bfdbfe;
    line-height: 1.6;
}

/* Mobil Uyumluluk */
@media (max-width: 767px) {
    .ana-baslik {
        font-size: 1.5rem;
    }
    
    .hakkimda-baslik {
        font-size: 2rem;
    }
    
    .istatistik-kartlari {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .araclar-izgara {
        grid-template-columns: 1fr;
    }
    
    .degerler-izgara {
        grid-template-columns: 1fr;
    }
}