/* ========================================
   ABOUT PAGE
======================================== */
.about-content {
    padding: 80px 0;
}

.about-story {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-bottom: 100px;
}

.about-img {
    position: relative;
}

.about-img img {
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
}

.experience-badge {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: var(--logo-red);
    color: var(--white);
    width: 120px;
    height: 120px;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-lg);
    animation: pulse 2s infinite;
}

.experience-badge span {
    font-family: 'Playfair Display', serif;
    font-size: 36px;
    font-weight: 700;
}

.experience-badge small {
    font-size: 14px;
}

.about-text h2 {
    font-size: 36px;
    color: var(--secondary);
    margin-bottom: 20px;
}

.about-text>p {
    color: var(--gray);
    margin-bottom: 16px;
    font-size: 16px;
}

.about-features {
    margin-top: 32px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.about-feature {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.about-feature i {
    width: 48px;
    height: 48px;
    background: rgba(225, 37, 27, 0.1);
    color: var(--logo-red);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
}

.about-feature h4 {
    font-size: 18px;
    margin-bottom: 4px;
}

.about-feature p {
    color: var(--gray);
    font-size: 14px;
}

/* Team Section */
.team-section {
    padding: 80px 0;
    background: var(--white);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 32px;
}

.team-card {
    text-align: center;
    padding: 24px;
    border-radius: 20px;
    background: var(--cream);
    transition: var(--transition);
}

.team-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow);
}

.team-img {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 20px;
    border: 4px solid var(--white);
    box-shadow: var(--shadow);
}

.team-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.team-card h4 {
    font-size: 20px;
    margin-bottom: 4px;
}

.team-card>span {
    color: var(--primary);
    font-weight: 600;
    font-size: 14px;
}

.team-card>p {
    color: var(--gray);
    font-size: 14px;
    margin-top: 8px;
}

/* Locations */
.locations-section {
    padding: 80px 0;
}

.locations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 24px;
}

.location-card {
    text-align: center;
    padding: 32px 24px;
    background: var(--white);
    border-radius: 16px;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.location-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.location-card i {
    font-size: 32px;
    color: var(--primary);
    margin-bottom: 12px;
}

.location-card h4 {
    font-size: 18px;
    margin-bottom: 4px;
}

.location-card p {
    color: var(--gray);
    font-size: 14px;
}

