/* ========================================
   ABOUT PAGE STYLES
   ======================================== */

.about-hero {
    padding: 120px 0 80px;
    background: var(--section-alt-bg);
}

.about-hero h1 {
    font-size: 56px;
    margin-bottom: 25px;
}

.about-hero p {
    font-size: 20px;
    color: var(--body-color);
    max-width: 700px;
}

.about-content {
    padding: 80px 0;
}

.about-section {
    margin-bottom: 60px;
}

.about-section h2 {
    font-size: 38px;
    margin-bottom: 25px;
}

.about-section h3 {
    font-size: 28px;
    margin-bottom: 20px;
    color: var(--brand-primary);
}

.about-section p {
    font-size: 17px;
    line-height: 1.8;
    color: var(--body-color);
    margin-bottom: 20px;
}

.about-image {
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.about-image img {
    width: 100%;
    height: auto;
}

/* Team Section */
.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.team-member {
    text-align: center;
    padding: 30px;
    background: var(--section-alt-bg);
    border-radius: var(--radius-md);
    transition: var(--transition-base);
}

.team-member:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-md);
}

.team-member-image {
    width: 150px;
    height: 150px;
    border-radius: var(--radius-round);
    overflow: hidden;
    margin: 0 auto 20px;
}

.team-member-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.team-member h4 {
    font-size: 20px;
    margin-bottom: 8px;
}

.team-member .role {
    color: var(--brand-primary);
    font-size: 14px;
    margin-bottom: 15px;
}

/* Values Section */
.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.value-item {
    text-align: center;
    padding: 40px 30px;
}

.value-item .icon {
    font-size: 56px;
    color: var(--brand-primary);
    margin-bottom: 20px;
}

.value-item h3 {
    font-size: 22px;
    margin-bottom: 15px;
}

.value-item p {
    color: var(--body-color);
    line-height: 1.7;
}

/* ===================================
   My Way Cards
====================================== */
.about-way-card {
    cursor: default;
}

.about-way-img {
    display: block;
    transition: transform 0.6s ease;
    transform-origin: center center;
}

.about-way-card:hover .about-way-img {
    transform: scale(1.05);
}

.about-way-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.82) 0%, rgba(0,0,0,0.18) 55%, transparent 100%);
    transition: background 0.4s ease;
}

.about-way-card:hover .about-way-overlay {
    background: linear-gradient(to top, rgba(171,101,48,0.88) 0%, rgba(0,0,0,0.3) 60%, transparent 100%);
}

/* ===================================
   Supporting You — Badge Tags
====================================== */
.badge-tag {
    display: flex;
    align-items: center;
    padding: 6px 0;
    border-bottom: 1px solid #f0f0f0;
}
.badge-tag:last-child {
    border-bottom: none;
}

.about-tags-badge {
    z-index: 2;
}

/* ===================================
   Progress Bars
====================================== */
.about-progress {
    background-color: #e8e8e8 !important;
}

/* ===================================
   Responsive
====================================== */
@media (max-width: 767px) {
    .about-hero h1 {
        font-size: 36px;
    }
    
    .about-section h2 {
        font-size: 28px;
    }
    
    .team-grid,
    .values-grid {
        grid-template-columns: 1fr;
    }

    .about-way-img {
        height: 280px !important;
    }

    .about-tags-badge {
        display: none !important;
    }

    .py-80px {
        padding-top: 50px !important;
        padding-bottom: 50px !important;
    }
}
