/* ================================================
   ABOUT SECTION
   ================================================ */

.about {
    background: var(--white);
}

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

.about-image {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.about-image img {
    width: 100%;
    border-radius: var(--radius-lg);
}

.experience-badge {
    position: absolute;
    bottom: 30px;
    right: 30px;
    background: var(--secondary);
    color: var(--white);
    padding: 20px 25px;
    border-radius: var(--radius);
    text-align: center;
    box-shadow: var(--shadow-lg);
    border: 1px solid rgba(201, 168, 76, 0.3);
}

.exp-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1;
    color: var(--gold);
}

.exp-text {
    font-size: 0.85rem;
    font-weight: 300;
    line-height: 1.3;
}

.about-content p {
    color: var(--text-light);
    margin-bottom: 15px;
}

.about-highlights {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin: 30px 0;
}

.highlight {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    background: var(--light);
    border-radius: var(--radius-sm);
    transition: all var(--transition);
}

.highlight:hover {
    background: var(--primary-light);
}

.highlight i {
    color: var(--gold-text);
    font-size: 1.2rem;
    width: 20px;
    text-align: center;
}

.highlight span {
    font-weight: 500;
    font-size: 0.9rem;
}