/* =========================
   About Hero Video
========================= */
.about-hero-video .about-hero-vid {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

.about-hero-play-btn {
    position: absolute;
    bottom: 40px;
    right: 60px;
    width: 56px;
    height: 56px;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 2;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.2s ease;
}

.about-hero-play-btn:hover {
    transform: scale(1.1);
}

.about-hero-play-btn img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

/* =========================
   Stats Section
========================= */
.about-stats-section {
    background-color: #ffffff;
    padding: 60px 0;
}

.about-stats-grid {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0;
}

.about-stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex: 1;
}

.stat-left {
    align-items: flex-start;
}

.stat-center {
    align-items: center;
}

.stat-right {
    align-items: flex-end;
}

.stat-number {
    font-family: var(--font-secondary);
    font-size: 70px;
    font-weight: var(--fw-bold);
    color: #4F637E;
    line-height: 1;
    margin-bottom: 8px;
}

.stat-label {
    font-family: var(--font-primary);
    font-size: 18px;
    font-weight: 400;
    color: var(--color-text);
    line-height: normal;
}

.about-stat-divider {
    width: 1px;
    height: 40px;
    background-color: rgba(0,0,0,0.15);
    margin: 0 80px;
    flex-shrink: 0;
}

/* =========================
   About Content Section
========================= */
.about-content-section {
    background-color: #ffffff;
}

.about-content-grid {
    display: grid;
    grid-template-columns: 601px 1fr;
    gap: 50px;
    align-items: center;
}

.about-content-image {
    width: 100%;
    height: 579px;
    overflow: hidden;
    flex-shrink: 0;
}

.about-content-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.about-content-heading {
    font-family: var(--font-secondary);
    font-size: 38px;
    font-weight: var(--fw-bold);
    color: #4f637e;
    line-height: 1.2;
    margin-bottom: 28px;
    width: 100%;
    max-width: 493px;
}

.about-content-body {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.about-content-body p {
    font-family: var(--font-primary);
    font-size: 16px;
    color: var(--color-text);
    line-height: 1.8;
    text-align : justify;
}

/* =========================
   Building Infrastructure Cards
========================= */
.about-features-section .why-choose-card {
    align-items: flex-start;
}

.about-features-section .why-choose-card-title,
.about-features-section .why-choose-card-text {
    width: 100%;
    text-align: justify;
}

/* =========================
   Responsive
========================= */
@media (max-width: 1280px) {
    .about-content-grid {
        grid-template-columns: 1fr 1fr;
    }

    .about-content-image {
        height: 480px;
    }
}

@media (max-width: 1024px) {
    .about-page-hero {
        height: 500px;
    }

    .about-hero-title {
        font-size: 40px;
    }

    .about-stats-grid {
        gap: 0;
    }

    .about-stat-divider {
        margin: 0 40px;
    }

    .stat-number {
        font-size: 54px;
    }

    .about-content-grid {
        grid-template-columns: 1fr;
        gap: 36px;
    }

    .about-content-image {
        height: 400px;
    }

    .about-content-heading {
        font-size: 30px;
    }
}

@media (max-width: 768px) {
    .about-hero-play-btn {
        width: auto;
        height: auto;
        bottom: 20px;
        right: 20px;
    }

    .about-content-heading br {
        display: none;
    }

    .about-content-heading {
        max-width: 100%;
        font-size: 28px;
    }

    .about-page-hero {
        height: 380px;
    }

    .about-hero-title {
        font-size: 34px;
    }

    .about-stats-section,
    .about-content-section,
    .why-choose-section,
    .mvv-section {
        padding: var(--section-gap) 0 !important;
    }

    .about-stats-grid {
        flex-direction: column;
        gap: 32px;
        align-items: center;
        text-align: center;
    }

    .about-stat-item,
    .stat-left,
    .stat-center,
    .stat-right {
        align-items: center;
    }

    .about-stat-divider {
        width: 60px;
        height: 1px;
        margin: 0;
    }

    .stat-number {
        font-size: 48px;
    }

    .about-content-image {
        height: 300px;
    }

    .about-content-heading {
        font-size: 26px;
    }
}

@media (max-width: 480px) {
    .about-hero-play-btn {
        width: 32px;
        height: 32px;
        bottom: 16px;
        right: 16px;
    }

    .about-page-hero {
        height: 280px;
    }

    .about-hero-title {
        font-size: 28px;
    }

    .stat-number {
        font-size: 40px;
    }

    .stat-label {
        font-size: 15px;
    }

    .about-content-image {
        height: 240px;
    }

    .about-content-heading {
        font-size: 22px;
    }

    .about-content-body p {
        font-size: 15px;
    }
}
