/* ===== About Page Styles ===== */

/* Page Header */
.page-header {
    background: linear-gradient(135deg, #1a1a1a 0%, #000 100%);
    padding: 80px 0 60px;
    text-align: center;
    border-bottom: 3px solid #FFD700;
}

.page-header h1 {
    color: #FFD700;
    font-size: 48px;
    margin-bottom: 16px;
    font-weight: 700;
}

.page-header p {
    color: #e0e0e0;
    font-size: 18px;
}

/* About Section - Biz Kimiz */
.about-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.about-grid {
    display: grid;
    grid-template-columns: minmax(280px, 350px) minmax(400px, 2fr);
    gap: 60px;
    align-items: start;
}

.about-image {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    padding-top: 20px;
}

.image-wrapper {
    width: 300px;
    height: 300px;
    background: linear-gradient(135deg, #FFD700, #FFA500);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 20px 60px rgba(255, 215, 0, 0.3);
}

.image-wrapper i {
    font-size: 130px;
    color: #1a1a1a;
}

.about-content {
    text-align: left;
}

.about-content .section-badge {
    background: linear-gradient(135deg, #FFD700, #FFA500);
    color: #1a1a1a;
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 700;
    display: inline-block;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.about-content h2 {
    color: #1a1a1a;
    font-size: 30px;
    font-weight: 700;
    margin-bottom: 25px;
    line-height: 1.3;
}

.about-content p {
    color: #333;
    font-size: 15px;
    line-height: 1.8;
    margin-bottom: 16px;
}

/* Mission Vision Section */
.mission-vision {
    padding: 80px 0;
    background: white;
}

.mv-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.mv-card {
    background: #f8f9fa;
    padding: 32px;
    border-radius: 12px;
    border-left: 4px solid #FFD700;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.mv-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 32px rgba(255, 215, 0, 0.15);
}

.mv-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #FFD700, #FFA500);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.mv-icon i {
    font-size: 28px;
    color: #1a1a1a;
}

.mv-card h3 {
    color: #1a1a1a;
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 16px;
}

.mv-card p {
    color: #555;
    font-size: 15px;
    line-height: 1.8;
}

/* Statistics Section */
.stats-section {
    background: linear-gradient(135deg, #1a1a1a 0%, #000 100%);
    padding: 60px 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

.stat-item {
    text-align: center;
    padding: 24px;
}

.stat-number {
    color: #FFD700;
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 12px;
    display: block;
}

.stat-label {
    color: #e0e0e0;
    font-size: 16px;
    font-weight: 500;
}

/* Certificates Section */
.certificates-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header .section-badge {
    background: linear-gradient(135deg, #FFD700, #FFA500);
    color: #1a1a1a;
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 700;
    display: inline-block;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.section-header h2 {
    color: #1a1a1a;
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 16px;
}

.section-header p {
    color: #555;
    font-size: 16px;
}

.certificates-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
}

.cert-item {
    background: white;
    padding: 40px 28px;
    border-radius: 12px;
    border: 2px solid #e0e0e0;
    transition: all 0.3s ease;
    text-align: center;
}

.cert-item:hover {
    border-color: #FFD700;
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(255, 215, 0, 0.2);
}

.cert-item i {
    font-size: 48px;
    color: #FFD700;
    margin-bottom: 16px;
}

.cert-item h4 {
    color: #1a1a1a;
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 8px;
}

.cert-item p {
    color: #666;
    font-size: 14px;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, #FFD700, #FFA500);
    padding: 80px 0;
}

.cta-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.cta-content h2 {
    color: #1a1a1a;
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 16px;
}

.cta-content p {
    color: #1a1a1a;
    font-size: 18px;
    margin-bottom: 32px;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-buttons .btn {
    padding: 16px 32px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 8px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
}

.cta-buttons .btn-primary {
    background: #1a1a1a;
    color: #FFD700;
    border: 2px solid #1a1a1a;
}

.cta-buttons .btn-primary:hover {
    background: #000;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}

.cta-buttons .btn-outline {
    background: transparent;
    color: #1a1a1a;
    border: 2px solid #1a1a1a;
}

.cta-buttons .btn-outline:hover {
    background: #1a1a1a;
    color: #FFD700;
    transform: translateY(-2px);
}

/* ===== Responsive Design ===== */

/* Tablet Large - Above 768px stays in 2-column */
@media (max-width: 1024px) {
    .about-grid {
        grid-template-columns: 280px 1fr;
        gap: 40px;
    }

    .certificates-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Tablet - 768px and below goes to single column */
@media (max-width: 768px) {
    .about-grid {
        grid-template-columns: 1fr !important;
        gap: 40px;
        text-align: center;
    }

    .about-image {
        justify-content: center;
    }

    .about-content {
        text-align: center;
    }

    .mv-grid {
        grid-template-columns: 1fr;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .certificates-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Mobile - 600px */
@media (max-width: 600px) {
    .page-header h1 {
        font-size: 36px;
    }

    .page-header {
        padding: 60px 0 40px;
    }

    .about-section,
    .mission-vision,
    .certificates-section,
    .cta-section {
        padding: 60px 0;
    }

    .about-content h2 {
        font-size: 26px;
    }

    .image-wrapper {
        width: 220px;
        height: 220px;
    }

    .image-wrapper i {
        font-size: 90px;
    }

    .stat-number {
        font-size: 36px;
    }

    .cta-content h2 {
        font-size: 28px;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: stretch;
    }

    .cta-buttons .btn {
        justify-content: center;
    }
}

/* Mobile Small - 480px */
@media (max-width: 480px) {

    .stats-grid,
    .certificates-grid {
        grid-template-columns: 1fr;
    }

    .image-wrapper {
        width: 180px;
        height: 180px;
    }

    .image-wrapper i {
        font-size: 75px;
    }

    .about-content h2 {
        font-size: 24px;
    }

    .about-content p {
        font-size: 15px;
    }
}