/* ================================================
   ABOUT PAGE CSS - Prestige Growth Media
   ================================================ */

/* ---- About Hero Section ---- */
.about-hero {
    padding: 80px 0 70px;
    background: #fff;
    overflow: hidden;
}

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

/* Left Content */
.about-hero-label {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--red);
    margin-bottom: 18px;
}

.about-hero-title {
    font-size: clamp(32px, 4.5vw, 52px);
    font-weight: 900;
    line-height: 1.15;
    color: var(--black);
    margin-bottom: 22px;
}

.about-hero-title span {
    color: var(--red);
}

.about-hero-desc {
    font-size: 16px;
    color: var(--gray);
    line-height: 1.85;
    margin-bottom: 36px;
    max-width: 520px;
}

.about-hero-badges {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
    margin-top: 36px;
}

.about-badge-item {
    display: flex;
    align-items: center;
    gap: 10px;
}

.about-badge-icon {
    width: 44px;
    height: 44px;
    background: #fff5f5;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--red);
    font-size: 18px;
    flex-shrink: 0;
}

.about-badge-text {
    font-size: 14px;
    font-weight: 700;
    color: var(--black);
    line-height: 1.3;
}

/* Right Image */
.about-hero-img-wrap {
    position: relative;
}

.about-hero-img-box {
    width: 100%;
    border-radius: 24px;
    overflow: hidden;
    background: linear-gradient(135deg, #f0f4ff, #e8f0fe);
    position: relative;
}

.about-hero-img-box img {
    width: 100%;
    height: 520px;
    object-fit: cover;
    object-position: center top;
    display: block;
}

/* "Ideas Strategy Growth" badge */
.about-hero-badge-corner {
    position: absolute;
    top: 24px;
    right: -16px;
    background: #fff;
    border-radius: 14px;
    padding: 16px 20px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.14);
    text-align: center;
    z-index: 2;
}

.about-hero-badge-corner .badge-line {
    display: block;
    font-size: 14px;
    font-weight: 800;
    color: var(--black);
    line-height: 1.4;
}

.about-hero-badge-corner .badge-line.red {
    color: var(--red);
    font-style: italic;
    font-size: 15px;
}


/* ---- Our Story Section ---- */
.our-story-section {
    padding: 90px 0;
    background: #f8f9fa;
}

.our-story-inner {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 70px;
    align-items: center;
}

/* Story Left: Office Image */
.story-img-wrap {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
}

.story-img-box {
    width: 100%;
    height: 460px;
    border-radius: 20px;
    overflow: hidden;
    position: relative;
}

.story-img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.story-img-box:hover img {
    transform: scale(1.03);
}

/* Watch Story Overlay Card */
.watch-story-card {
    position: absolute;
    bottom: 24px;
    left: 24px;
    background: #fff;
    border-radius: 14px;
    padding: 14px 20px;
    display: flex;
    align-items: center;
    gap: 14px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.15);
    cursor: pointer;
    transition: transform 0.3s ease;
    text-decoration: none;
}

.watch-story-card:hover {
    transform: translateY(-3px);
}

.watch-play-btn {
    width: 44px;
    height: 44px;
    background: var(--red);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 16px;
    flex-shrink: 0;
}

.watch-text h5 {
    font-size: 14px;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 2px;
}

.watch-text p {
    font-size: 12px;
    color: var(--gray);
}

/* Story Right: Content */
.story-label {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--red);
    margin-bottom: 16px;
}

.story-title {
    font-size: clamp(28px, 4vw, 44px);
    font-weight: 900;
    line-height: 1.2;
    color: var(--black);
    margin-bottom: 24px;
}

.story-title span {
    color: var(--red);
}

.story-desc {
    font-size: 15px;
    color: var(--gray);
    line-height: 1.85;
    margin-bottom: 16px;
}


/* ---- Stats Bar Section ---- */
.about-stats-section {
    background: #fff;
    padding: 50px 0;
    border-top: 1px solid #f0f0f0;
    border-bottom: 1px solid #f0f0f0;
}

.about-stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
}

.about-stat-item {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 30px 36px;
    border-right: 1px solid #f0f0f0;
    transition: background 0.3s ease;
}

.about-stat-item:last-child {
    border-right: none;
}

.about-stat-item:hover {
    background: #fff5f5;
}

.about-stat-icon {
    width: 60px;
    height: 60px;
    background: #fff5f5;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--red);
    font-size: 26px;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.about-stat-item:hover .about-stat-icon {
    background: var(--red);
    color: #fff;
}

.about-stat-num {
    font-size: clamp(32px, 4vw, 46px);
    font-weight: 900;
    color: var(--black);
    line-height: 1;
    margin-bottom: 4px;
}

.about-stat-num span {
    color: var(--red);
}

.about-stat-label {
    font-size: 13px;
    color: var(--gray);
    font-weight: 500;
}


/* ---- Values Section ---- */
.values-section {
    background: #fff;
    padding: 90px 0;
}

.values-header {
    text-align: center;
    margin-bottom: 60px;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.value-card {
    padding: 36px 28px;
    border: 1.5px solid #efefef;
    border-radius: 16px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.value-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--red);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.value-card:hover::after {
    transform: scaleX(1);
}

.value-card:hover {
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
    border-color: transparent;
    transform: translateY(-5px);
}

.value-icon {
    width: 64px;
    height: 64px;
    background: #fff5f5;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--red);
    font-size: 26px;
    margin-bottom: 22px;
    transition: all 0.3s ease;
}

.value-card:hover .value-icon {
    background: var(--red);
    color: #fff;
}

.value-card h3 {
    font-size: 19px;
    font-weight: 800;
    color: var(--black);
    margin-bottom: 12px;
}

.value-card p {
    font-size: 14px;
    color: var(--gray);
    line-height: 1.7;
}


/* ---- About CTA Section ---- */
.about-cta-section {
    background: linear-gradient(135deg, var(--red) 0%, #8b0000 100%);
    padding: 90px 0;
    position: relative;
    overflow: hidden;
}

.about-cta-section::before {
    content: '';
    position: absolute;
    top: -80px;
    right: -60px;
    width: 350px;
    height: 350px;
    background: rgba(255,255,255,0.05);
    border-radius: 50%;
}

.about-cta-section::after {
    content: '';
    position: absolute;
    bottom: -80px;
    left: -40px;
    width: 280px;
    height: 280px;
    background: rgba(255,255,255,0.04);
    border-radius: 50%;
}

.about-cta-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    position: relative;
    z-index: 1;
}

.about-cta-label {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.65);
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 14px;
}

.about-cta-label::before {
    content: '';
    width: 6px;
    height: 6px;
    background: rgba(255,255,255,0.6);
    border-radius: 50%;
    display: inline-block;
}

.about-cta-title {
    font-size: clamp(28px, 4vw, 46px);
    font-weight: 900;
    color: #fff;
    line-height: 1.2;
    margin-bottom: 14px;
}

.about-cta-desc {
    font-size: 16px;
    color: rgba(255,255,255,0.8);
}

/* CTA right - person silhouette */
.about-cta-graphic {
    position: absolute;
    right: 220px;
    top: 50%;
    transform: translateY(-50%);
    color: rgba(255,255,255,0.1);
    font-size: 120px;
    pointer-events: none;
}


/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1100px) {
    .about-hero-inner,
    .our-story-inner {
        gap: 50px;
    }

    .about-stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .about-stat-item:nth-child(2) {
        border-right: none;
    }

    .about-stat-item:nth-child(3) {
        border-right: 1px solid #f0f0f0;
        border-top: 1px solid #f0f0f0;
    }

    .about-stat-item:nth-child(4) {
        border-top: 1px solid #f0f0f0;
    }

    .values-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 900px) {
    .about-hero-inner {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .about-hero-img-box img {
        height: 380px;
    }

    .about-hero-badge-corner {
        right: 10px;
        top: 10px;
    }

    .our-story-inner {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .story-img-box {
        height: 350px;
    }

    .about-cta-inner {
        flex-direction: column;
        text-align: center;
    }

    .about-cta-graphic {
        display: none;
    }

    .about-cta-label {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .about-stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .about-stat-item {
        padding: 24px 20px;
        border-right: none;
        border-bottom: 1px solid #f0f0f0;
    }

    .values-grid {
        grid-template-columns: 1fr 1fr;
    }

    .about-hero-badges {
        gap: 20px;
    }
}

@media (max-width: 576px) {
    .about-hero-img-box img {
        height: 300px;
    }

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

    .about-stat-item {
        border-right: none;
        border-bottom: 1px solid #f0f0f0;
    }

    .values-grid {
        grid-template-columns: 1fr;
    }

    .story-img-box {
        height: 260px;
    }

    .watch-story-card {
        position: static;
        margin-top: 16px;
        border-radius: 12px;
        box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    }

    .story-img-wrap {
        display: flex;
        flex-direction: column;
    }
}
