/* ============================================
   About Page - Specific Styles
   Extends new-top-style.css
   ============================================ */

/* Active nav */
.about-nav-active {
    color: var(--primary-color) !important;
    font-weight: 600 !important;
}

/* ===== Hero ===== */
.about-hero {
    padding: 160px 0 80px;
    text-align: center;
    background: linear-gradient(180deg, #f0f9ff 0%, #ffffff 100%);
}

.about-hero__label {
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.about-hero__title {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.4;
    margin-bottom: 20px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.about-hero__highlight {
    color: var(--primary-color);
}

.about-hero__description {
    color: var(--text-light);
    font-size: 1rem;
    max-width: 560px;
    margin: 0 auto;
    line-height: 1.8;
}

/* ===== Profile ===== */
.about-profile {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 50px;
    align-items: start;
}

.about-profile__photo {
    width: 100%;
    aspect-ratio: 3 / 4;
    border-radius: 20px;
    overflow: hidden;
    background: linear-gradient(135deg, #e0f2fe, #f0f9ff);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.about-profile__photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-profile__name {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 4px;
}

.about-profile__role {
    font-size: 0.9rem;
    color: var(--primary-color);
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.about-profile__bio {
    font-size: 0.95rem;
    color: var(--text-light);
    line-height: 1.9;
    margin-bottom: 15px;
}

.about-profile__sns {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 10px;
}

.about-sns-btn {
    display: inline-block;
    padding: 7px 18px;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    transition: all 0.3s;
}

.about-sns-btn:hover {
    background: var(--primary-color);
    color: var(--white);
}

/* ===== Numbers ===== */
.about-numbers__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.about-number__card {
    background: var(--white);
    padding: 30px 15px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border: 1px solid #f3f4f6;
    transition: transform 0.3s;
}

.about-number__card:hover {
    transform: translateY(-3px);
}

.about-number__value {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--primary-color);
    line-height: 1.2;
    margin-bottom: 4px;
}

.about-number__unit {
    font-size: 0.85rem;
    color: var(--text-light);
    font-weight: 500;
}

/* ===== Skills ===== */
.about-skills__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
    gap: 20px;
}

.about-skill__card {
    background: var(--white);
    padding: 25px 20px;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.04);
    border: 1px solid #f3f4f6;
    transition: all 0.3s;
}

.about-skill__card:hover {
    border-color: var(--primary-color);
    transform: translateY(-3px);
}

.about-skill__icon {
    font-size: 2rem;
    margin-bottom: 10px;
    display: block;
}

.about-skill__name {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 6px;
}

.about-skill__desc {
    font-size: 0.8rem;
    color: var(--text-light);
    line-height: 1.5;
}

/* ===== Awards ===== */
.about-awards__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    margin-bottom: 40px;
}

.about-award__card {
    background: var(--white);
    padding: 25px;
    border-radius: 16px;
    display: flex;
    align-items: flex-start;
    gap: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.04);
    border: 1px solid #f3f4f6;
    transition: transform 0.3s;
}

.about-award__card:hover {
    transform: translateY(-3px);
}

.about-award__card--featured {
    background: var(--white);
    border: 1px solid #f3f4f6;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.04);
}

.about-award__icon {
    font-size: 1.8rem;
    flex-shrink: 0;
}

.about-award__info h3 {
    font-size: 1rem;
    margin-bottom: 3px;
}

.about-award__info p {
    font-size: 0.85rem;
    color: var(--text-light);
}

/* Media sub-section */
.about-media__title {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--text-color);
}

.about-media__list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.about-media__tag {
    display: inline-block;
    padding: 8px 16px;
    background: var(--white);
    border-radius: 50px;
    font-size: 0.85rem;
    color: var(--text-color);
    border: 1px solid #f3f4f6;
}

/* ===== Clients ===== */
.about-clients__list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
}

.about-client__tag {
    display: inline-block;
    padding: 12px 24px;
    background: var(--white);
    border-radius: 50px;
    font-size: 0.9rem;
    color: var(--text-color);
    font-weight: 500;
    border: 1px solid #f3f4f6;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.03);
    transition: all 0.3s;
}

.about-client__tag:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
}

.about-client__tag--more {
    background: transparent;
    color: var(--text-light);
    border: 1px dashed #d1d5db;
    box-shadow: none;
}

/* ===== Services Bridge ===== */
.about-services__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
}

.about-service__card {
    background: var(--white);
    border-radius: 20px;
    padding: 35px 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border: 1px solid #f3f4f6;
    transition: all 0.3s;
    display: flex;
    flex-direction: column;
}

.about-service__card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-color);
}

/* Service card buttons - outline by default, filled on hover */
.about-service__card .btn--outline {
    display: block;
    text-align: center;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    background: transparent;
    transition: all 0.3s;
}

.about-service__card .btn--outline:hover {
    background: var(--primary-color);
    color: #ffffff;
}

.about-service__icon {
    font-size: 2rem;
    margin-bottom: 15px;
}

.about-service__name {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.about-service__desc {
    font-size: 0.9rem;
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 20px;
    flex-grow: 1;
}

/* ===== Responsive ===== */
@media (max-width: 768px) {
    .about-hero__title {
        font-size: 1.8rem;
    }

    .about-profile {
        grid-template-columns: 1fr;
    }

    .about-profile__photo {
        max-width: 240px;
        margin: 0 auto;
    }

    .about-numbers__grid {
        grid-template-columns: 1fr 1fr;
    }

    .about-skills__grid {
        grid-template-columns: 1fr 1fr;
    }

    .about-services__grid {
        grid-template-columns: 1fr;
    }
}
