.about-hero {
    padding: 120px 0;
    background: linear-gradient(135deg, var(--dark-navy) 0%, var(--primary-navy) 100%);
    color: var(--white);
}

.about-hero-content {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 60px;
    align-items: center;
}

.about-photo {
    width: 100%;
    max-width: 360px;
    height: 460px;
    border-radius: 30px;
    object-fit: cover;
    object-position: center 18%;
    box-shadow: 0 24px 60px rgba(26, 38, 112, 0.35);
    border: 5px solid rgba(197, 165, 114, 0.45);
}

.about-title {
    font-family: 'Poppins', 'Inter', sans-serif;
    font-size: 3.5rem;
    font-weight: 900;
    margin-bottom: 25px;
    line-height: 1.1;
}

.about-subtitle {
    font-size: 1.4rem;
    color: var(--secondary-gold);
    margin-bottom: 30px;
    font-weight: 600;
}

.about-description {
    font-size: 1.2rem;
    line-height: 1.7;
    opacity: 0.9;
    margin-bottom: 35px;
}

.about-stats {
    display: flex;
    gap: 40px;
    margin-bottom: 35px;
}

.stat {
    text-align: center;
}

.stat h3 {
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--primary-gold);
    margin-bottom: 5px;
}

.stat p {
    font-size: 1rem;
    opacity: 0.8;
}

.experience-section {
    padding: 100px 0;
    background: var(--white);
}

.section-title {
    color: var(--dark-navy);
    font-family: 'Poppins', 'Inter', sans-serif;
    font-size: 3rem;
    font-weight: 900;
    text-align: center;
    margin-bottom: 60px;
}

.timeline {
    position: relative;
    padding-left: 30px;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 15px;
    top: 0;
    height: 100%;
    width: 3px;
    background: linear-gradient(180deg, var(--primary-gold), var(--secondary-gold));
}

.timeline-item {
    position: relative;
    margin-bottom: 50px;
    padding-left: 50px;
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: -22px;
    top: 10px;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-gold), var(--secondary-gold));
    box-shadow: 0 0 0 4px var(--white), 0 0 0 8px var(--primary-gold);
}

.timeline-year {
    color: var(--primary-gold);
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.timeline-title {
    color: var(--dark-navy);
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.timeline-description {
    color: var(--gray-600);
    font-size: 1.1rem;
    line-height: 1.6;
}

.skills-section {
    padding: 100px 0;
    background: linear-gradient(180deg, var(--gray-100) 0%, var(--white) 100%);
}

.skill-card {
    background: var(--white);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
    height: 100%;
    border: 1px solid var(--gray-200);
}

.skill-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.skill-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-gold), var(--secondary-gold));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    color: var(--white);
    font-size: 2rem;
}

.skill-title {
    color: var(--dark-navy);
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.skill-description {
    color: var(--gray-600);
    font-size: 1rem;
    line-height: 1.6;
}

.values-section {
    padding: 100px 0;
    background: var(--dark-navy);
    color: var(--white);
}

.values-title {
    color: var(--white);
    font-family: 'Poppins', 'Inter', sans-serif;
    font-size: 3rem;
    font-weight: 900;
    text-align: center;
    margin-bottom: 60px;
}

.value-item {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    border: 1px solid rgba(197, 165, 114, 0.2);
    backdrop-filter: blur(10px);
    height: 100%;
}

.value-icon {
    width: 70px;
    height: 70px;
    background: var(--primary-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    color: var(--white);
    font-size: 1.8rem;
}

.value-title {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--primary-gold);
}

.value-description {
    font-size: 1rem;
    line-height: 1.6;
    opacity: 0.9;
}

@media (max-width: 991px) {
    .about-hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
    }

    .about-title {
        font-size: 2.5rem;
    }

    .about-stats {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .about-stats {
        flex-direction: column;
        gap: 20px;
    }

    .section-title {
        font-size: 2.5rem;
    }

    .values-title {
        font-size: 2.5rem;
    }
}
