/* ============================================
   PREMIUM ABOUT PAGE STYLES
   ============================================ */

/* Main Section Background Wrapper */
.about-premium-wrapper {
    background: var(--bg-grey);
    padding: 6rem 0;
    margin-top: -60px;
    position: relative;
    z-index: 5;
}

/* About Grid Cards (Kurumsal, Misyon, Vizyon) */
.about-cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 6rem;
}

.about-glass-card {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 32px;
    padding: 3rem 2.5rem;
    text-align: center;
    transition: var(--transition);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.about-glass-card:hover {
    transform: translateY(-15px);
    background: var(--white);
    box-shadow: 0 30px 60px rgba(38, 151, 255, 0.15);
    border-color: var(--primary-color);
}

.card-icon-glow {
    width: 80px;
    height: 80px;
    background: var(--primary-grad);
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--white);
    margin: 0 auto 2rem;
    box-shadow: 0 15px 30px rgba(38, 151, 255, 0.3);
    transition: var(--transition);
}

.about-glass-card:hover .card-icon-glow {
    transform: scale(1.1) rotate(10deg);
}

.about-glass-card h3 {
    font-size: 1.5rem;
    color: var(--secondary-color);
    margin-bottom: 1.2rem;
    font-weight: 800;
}

.about-glass-card p {
    font-size: 1rem;
    color: #666;
    line-height: 1.7;
}

/* Why Us Section - Dashboard Look */
.why-us-dashboard {
    background: var(--secondary-color);
    border-radius: 40px;
    padding: 5rem;
    color: var(--white);
    position: relative;
    overflow: hidden;
    margin-bottom: 6rem;
}

.why-us-dashboard::before {
    content: '';
    position: absolute;
    top: -100px;
    left: -100px;
    width: 300px;
    height: 300px;
    background: var(--primary-color);
    filter: blur(150px);
    opacity: 0.15;
}

.why-us-header {
    text-align: center;
    margin-bottom: 4rem;
}

.why-us-header h2 {
    font-size: 2.5rem;
    margin-top: 1rem;
}

.why-grid-corp {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.why-stat-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 2.5rem 2rem;
    border-radius: 24px;
    text-align: center;
    transition: var(--transition);
}

.why-stat-card:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--primary-color);
    transform: scale(1.05);
}

.why-stat-card i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    display: block;
}

.why-stat-card h4 {
    font-size: 1.25rem;
    margin-bottom: 0.8rem;
    font-weight: 700;
}

.why-stat-card p {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.5;
}

/* Detail Section Refined */
.about-detail-premium {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
    padding: 6rem 0;
}

.detail-img-layer {
    position: relative;
    padding-right: 30px;
    padding-bottom: 30px;
}

.detail-img-layer img {
    width: 100%;
    border-radius: 32px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
}

.img-badge-premium {
    position: absolute;
    bottom: 0;
    right: 0;
    background: var(--primary-grad);
    padding: 2rem;
    border-radius: 24px;
    color: var(--white);
    text-align: center;
    box-shadow: 0 20px 40px rgba(38, 151, 255, 0.4);
    z-index: 2;
}

.img-badge-premium span {
    display: block;
    font-size: 2.5rem;
    font-weight: 900;
    line-height: 1;
}

.img-badge-premium p {
    font-size: 0.9rem;
    font-weight: 600;
    margin-top: 0.5rem;
    letter-spacing: 1px;
}

.about-premium-content h2 {
    font-size: 2.8rem;
    color: var(--secondary-color);
    margin: 1rem 0 1.5rem;
    line-height: 1.2;
}

.about-premium-content p {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 2rem;
}

.premium-checklist {
    list-style: none;
    padding: 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.premium-checklist li {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-weight: 700;
    color: var(--secondary-color);
}

.premium-checklist li i {
    width: 30px;
    height: 30px;
    background: rgba(38, 151, 255, 0.1);
    color: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 0.8rem;
}

/* Responsive Premium About */
@media (max-width: 1100px) {
    .about-cards-grid {
        grid-template-columns: 1fr 1fr;
    }

    .why-grid-corp {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 900px) {
    .about-detail-premium {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .about-cards-grid {
        grid-template-columns: 1fr;
    }

    .why-us-dashboard {
        padding: 3rem 2rem;
    }

    .why-grid-corp {
        grid-template-columns: 1fr;
    }

    .premium-checklist {
        grid-template-columns: 1fr;
    }
}