/* ========================================================= */
/* ⭐️ PREMIUM HAKKIMIZDA SAYFASI STİLLERİ                    */
/* ========================================================= */

.about-modern-page { background-color: #fff; }

/* Başlık Alanı */
.about-header-simple {
    padding: 40px 0; 
    text-align: center;
    background: linear-gradient(rgba(6, 57, 112, 0.03), #fff);
}
.about-header-simple h1 { 
    font-size: 2.2rem; 
    color: var(--alfa-primary-blue); 
    font-weight: 800; 
}
.header-line { width: 40px; height: 4px; background: var(--alfa-accent-yellow); margin: 10px auto; border-radius: 10px; }
.about-header-simple p { color: var(--color-muted); font-size: 1rem; }

/* Ana Gövde Düzeni */
.about-premium-section { padding: 30px 0 70px; }
.premium-wrapper {
    display: flex;
    align-items: center;
    gap: 50px; 
}

/* Resim Bloğu */
.premium-image-block { 
    flex: 0.7; 
    position: relative; 
}

.image-border-deco {
    position: absolute;
    width: 100%; height: 100%;
    border: 7px solid var(--alfa-accent-yellow); 
    top: 20px; left: -20px; 
    border-radius: 20px;
    z-index: 0;
}

.main-image-wrapper {
    position: relative;
    z-index: 1;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.12);
}

.main-image-wrapper img { 
    width: 100%; 
    height: auto; 
    max-height: 500px; 
    object-fit: cover;
    display: block; 
    transition: transform 0.5s; 
}

.floating-info-card {
    position: absolute;
    bottom: 20px; right: 20px; 
    background: #fff;
    padding: 12px 20px; 
    border-radius: 15px;
    display: flex; align-items: center; gap: 10px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.15);
    animation: float 3s ease-in-out infinite;
}
.floating-info-card i { font-size: 1.4rem; color: var(--alfa-accent-yellow); }
.floating-info-card span { font-size: 0.85rem; }

/* İçerik Bloğu */
.premium-content-block { 
    flex: 1.3; 
}

.content-tag-wrapper { display: flex; align-items: center; gap: 8px; margin-bottom: 15px; }
.content-tag-wrapper .dot { width: 8px; height: 8px; background: var(--alfa-accent-yellow); border-radius: 50%; }
.tag-text { font-weight: 700; text-transform: uppercase; letter-spacing: 1.5px; color: var(--color-muted); font-size: 0.75rem; }

.main-title { 
    font-size: 2.4rem; 
    color: var(--alfa-primary-blue); 
    line-height: 1.2; 
    font-weight: 800; 
    margin-bottom: 20px; 
}

.accent-p { 
    font-size: 1.05rem; 
    font-weight: 600; 
    color: #333; 
    margin-bottom: 20px; 
    line-height: 1.5; 
}
.rich-text p { margin-bottom: 12px; color: var(--color-muted); line-height: 1.7; font-size: 0.95rem; }

/* Özellik Kartları */
.icon-features-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 15px; margin-top: 30px; }
.i-feat-card { display: flex; align-items: center; gap: 12px; padding: 15px; background: var(--color-soft-white); border-radius: 12px; }
.i-icon { width: 40px; height: 40px; background: #fff; border-radius: 10px; display: flex; align-items: center; justify-content: center; color: var(--alfa-primary-blue); font-size: 1rem; }
.i-text h4 { font-size: 0.9rem; color: var(--alfa-primary-blue); margin: 0; }
.i-text p { font-size: 0.8rem; color: var(--color-muted); margin: 0; }

/* İstatistikler (Counter) */
.counter-section { background: var(--alfa-primary-blue); padding: 50px 0; color: #fff; }
.counter-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; text-align: center; }
.c-number { font-size: 2.5rem; font-weight: 800; color: var(--alfa-accent-yellow); }
.c-label { font-size: 0.85rem; opacity: 0.7; text-transform: uppercase; letter-spacing: 1px; }

/* Animasyon ve Mobil Uyumluluk */
@keyframes float { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-8px); } }

@media (max-width: 992px) {
    .premium-wrapper { flex-direction: column; gap: 40px; }
    .main-title { font-size: 2rem; }
    .image-border-deco { display: none; }
    .counter-grid { grid-template-columns: 1fr 1fr; }
}