/* ==========================================================================
   About Page Styles
   ========================================================================== */

/* Page Header */
.about-header {
    padding: 6rem 0 0rem;
    background-color: transparent;
    border-bottom: none;
}

.header-content {
    border-bottom: 1px solid var(--color-border);
    padding-bottom: 3rem;
    margin-bottom: 2rem;
}

.page-title {
    font-size: 3.5rem;
    color: var(--color-accent-gold);
}

.page-subtitle {
    font-size: 1.25rem;
    max-width: 800px;
    margin: 0 auto;
}

/* About Section Grid */
.about-section {
    padding-top: 2rem;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

/* Image Wrapper & Badge */
.about-image-wrapper {
    position: relative;
    border-radius: 8px;
    overflow: visible;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
}

.about-image-wrapper img {
    border-radius: 8px;
    width: 100%;
    aspect-ratio: 4/5;
    object-fit: cover;
    border: 1px solid var(--color-border);
}

.experience-badge {
    position: absolute;
    bottom: -30px;
    right: -30px;
    background-color: var(--color-accent-gold);
    color: var(--color-bg-dark);
    padding: 2rem;
    border-radius: 50%;
    width: 160px;
    height: 160px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
    animation: pulse badge-pulse 3s infinite ease-in-out;
}

.experience-badge .years {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 0.25rem;
}

.experience-badge .label {
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Content Area */
.about-content {
    color: var(--color-text-muted);
}

.about-content p {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.about-content h2 {
    color: var(--color-text-main);
    margin-bottom: 2rem;
}

/* Credentials */
.credentials-list {
    margin-top: 3rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.credential-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    background-color: var(--color-bg-card);
    padding: 1.5rem;
    border-radius: 8px;
    border-left: 4px solid var(--color-accent-gold);
}

.credential-item i {
    color: var(--color-accent-gold);
    font-size: 2rem;
}

.credential-item span {
    color: var(--color-text-main);
    font-weight: 500;
    font-size: 1.1rem;
}

/* Stats Section */
.stats-section {
    padding: 5rem 0;
    border-top: 1px solid var(--color-border);
    border-bottom: 1px solid var(--color-border);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    text-align: center;
    gap: 2rem;
}

.stat-number {
    font-family: var(--font-heading);
    font-size: 4rem;
    color: var(--color-accent-gold);
    margin-bottom: 0.5rem;
}

.stat-label {
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Responsive */
@media (max-width: 992px) {
    .about-grid {
        grid-template-columns: 1fr;
        gap: 5rem;
    }

    .about-image-wrapper {
        max-width: 500px;
        margin: 0 auto;
    }

    .experience-badge {
        bottom: -20px;
        right: 0px;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .page-title {
        font-size: 2.5rem;
    }

    .experience-badge {
        width: 120px;
        height: 120px;
        padding: 1rem;
    }

    .experience-badge .years {
        font-size: 1.8rem;
    }

    .experience-badge .label {
        font-size: 0.7rem;
    }

    .stat-number {
        font-size: 3rem;
    }

    .stats-grid {
        grid-template-columns: 1fr 1fr;
    }
}