/**
 * Component Styles: Recruit About Us
 *
 * Styles for the recruitment about us section with statistics
 *
 * @package RIKAI_Marketing
 * @since 1.0.0
 */

/* ==========================================================================
   Feature Image
   ========================================================================== */

.recruit-about-feature-image {
    position: relative;
    width: 100%;
    max-width: 480px;
    margin: 0 auto;
    margin-top: -40%;
}

.recruit-about-feature-image img {
    width: 100%;
    height: auto;
    border-radius: 50%;
    object-fit: cover;
    aspect-ratio: 1 / 1;
}

/* ==========================================================================
   Tagline
   ========================================================================== */

.recruit-about-tagline {
    margin-top: 25px;
    font-size: 24px;
    font-weight: 600;
    line-height: 1.2;
}

/* ==========================================================================
   Description
   ========================================================================== */

.recruit-about-description {
    line-height: 2;
    font-weight: 600;
}

/* ==========================================================================
   Statistics Grid
   ========================================================================== */

.recruit-about-statistics {
    margin-top: 40px;
}

.statistic-card {
    background: #ffffff;
    border: 2px solid var(--primary-color);
    border-radius: 8px;
    color: var(--primary-color);
    padding: 30px 20px;
    text-align: center;
    transition: all 0.3s ease;
    min-height: 280px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.statistic-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(51, 144, 214, 0.15);
}

/* Icon */
.statistic-icon {
    margin-bottom: 20px;
}

.statistic-icon img {
    width: 80px;
    height: 80px;
    object-fit: contain;
}

/* Title */
.statistic-title {
    font-weight: 600;
    letter-spacing: 0.05em;
}

/* Value */
.statistic-value {
    font-size: 40px;
    font-weight: 700;
    line-height: 1;
}
.statistic-value--unit {
    font-size: 20px;
    font-weight: 700;
}

/* Subtitle */
.statistic-subtitle {
    font-weight: 900;
}

/* ==========================================================================
   Location Card (Item 3)
   ========================================================================== */

.statistic-card-location .location-list {
    width: 100%;
    margin-top: 15px;
}

.location-item .location-name {
    font-size: 40px;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 4px;
}

.location-list .location-item:last-child {
    margin-top: 10px;
}

.location-list .location-item:last-child .location-name {
    font-size: 30px;
}

.location-detail {
    line-height: 1.4;
    font-weight: 700;
}

/* ==========================================================================
   Responsive Styles
   ========================================================================== */

/* Tablet */
@media (max-width: 991px) {
    .recruit-about-feature-image {
        width: 300px;
        max-width: 300px;
        margin-top: -200%;
        margin-left: -100%;
    }

    .statistic-card {
        min-height: 250px;
    }

    .statistic-value {
        font-size: 28px;
    }

    .location-name {
        font-size: 20px;
    }
}

/* Mobile */
@media (max-width: 767px) {
    .recruit-about-feature-image {
        max-width: 350px;
        margin: 0 auto;
    }

    .recruit-about-tagline {
        margin-top: 20px;
    }

    .recruit-about-tagline p {
        font-size: 16px;
    }

    .recruit-about-description {
        margin-top: 15px;
    }

    .recruit-about-description p {
        font-size: 15px;
    }

    .recruit-about-statistics {
        margin-top: 30px;
    }

    .statistic-card {
        min-height: auto;
        padding: 25px 15px;
    }

    .statistic-icon img {
        width: 50px;
        height: 50px;
    }

    .statistic-title {
        font-size: 13px;
    }

    .statistic-value {
        font-size: 24px;
    }

    .statistic-subtitle {
        font-size: 13px;
    }

    .location-name {
        font-size: 18px;
    }

    .location-detail {
        font-size: 13px;
    }
}

/* Small Mobile */
@media (max-width: 575px) {
    .recruit-about-statistics .col-sm-6 {
        flex: 0 0 100%;
        max-width: 100%;
    }
}
