/* =============================================
   ABOUT HERO SECTION
   ============================================= */
.about-hero {
    height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background: linear-gradient(to right, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.3)),
                url("/static/core/images/about.webp");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: #fff;
    text-align: center;
}

.about-breadcrumbs {
    margin-bottom: 20px;
    font-size: 0.9rem;
}

.about-breadcrumbs a {
    color: var(--accent);
    transition: opacity 0.3s ease;
    text-decoration: none;
}

.about-breadcrumbs a:hover {
    opacity: 0.8;
    text-decoration: underline;
}

.about-breadcrumbs span {
    color: #fff;
    margin-left: 5px;
}

.about-hero-content {
    max-width: 850px;
    margin: 0 auto;
    padding: 0 20px;
}

.about-hero-title {
    font-size: clamp(2.5rem, 5vw, 3.8rem);
    font-weight: 800;
    margin-bottom: 15px;
    line-height: 1.1;
}

.about-hero-subtitle {
    font-size: clamp(1.1rem, 2vw, 1.6rem);
    margin-bottom: 35px;
    font-weight: 300;
}

@media (max-width: 991px) {
    .about-hero {
        height: 50vh;
        padding: 0 20px;
    }
}

@media (max-width: 576px) {
    .about-hero {
        height: auto;
        padding: 80px 20px;
    }
    .about-hero-title { font-size: 2.2rem; }
}


/* =============================================
   WHO WE ARE SECTION
   ============================================= */
.about-intro-section {
    padding: 70px 40px;
    background-color: var(--bg-light);
}

.about-intro-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
    flex-wrap: wrap;
    max-width: 1150px;
    margin: 0 auto;
}

.about-intro-image {
    flex: 1 1 400px;
}

.about-intro-img {
    width: 100%;
    height: 480px;
    object-fit: cover;
    object-position:  center 20%;
    border-radius: var(--radius-card);
    box-shadow: var(--shadow-soft);
    display: block;
}

.about-intro-text {
    flex: 1 1 500px;
}

.about-intro-header {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 20px;
    color: var(--primary);
    line-height: 1.2;
}

.about-intro-text p {
    font-size: 1.1rem;
    margin-bottom: 15px;
    line-height: 1.6;
    color: var(--text);
}

.about-signature {
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid #ddeaff;
}

.about-signature p {
    font-size: 1rem;
    color: var(--primary);
    margin-bottom: 4px;
    line-height: 1.5;
}

@media screen and (max-width: 992px) {
    .about-intro-section {
        padding: 55px 30px;
    }
    .about-intro-container {
        flex-direction: column;
        align-items: center;
        gap: 30px;
    }
    .about-intro-text {
        order: 1;
        flex: 1 1 100%;
        width: 100%;
    }
    .about-intro-image {
        order: 2;
        flex: 1 1 100%;
        width: 100%;
    }
    .about-intro-header {
        font-size: 2rem;
    }
    .about-intro-img {
        aspect-ratio: 3 / 4;
        height: auto;
        max-width: 500px;
        margin: 0 auto;
        object-position: center center;
    }
}

@media screen and (max-width: 576px) {
    .about-intro-section {
        padding: 40px 20px;
        text-align: center;
    }
    .about-intro-container {
        flex-direction: column;
        align-items: center;
        gap: 30px;
    }
    .about-intro-text {
        order: 1;
        flex: 1 1 100%;
        width: 100%;
    }
    .about-intro-image {
        order: 2;
        flex: 1 1 100%;
        width: 100%;
    }
    .about-intro-img {
        aspect-ratio: 3 / 4;
        height: auto;
        border-radius: 12px;
    }
    .about-intro-header {
        font-size: 1.75rem;
    }
    .about-signature {
        text-align: center;
    }
}


/* =============================================
   MISSION VISION VALUES SECTION
   ============================================= */
.about-mvv-section {
    width: 100%;
}

/* Mission and Vision — dark navy top */
.about-mv-top {
    background: linear-gradient(135deg, #1a3a63 0%, #2c5aa0 100%);
    padding: 70px 20px;
}

.about-mv-container {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 0;
    flex-wrap: wrap;
}

.about-mv-item {
    flex: 1 1 300px;
    text-align: center;
    padding: 20px 50px;
}

.about-mv-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px auto;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: #ffffff;
}

.about-mv-item h3 {
    color: #ffffff;
    font-size: 1.4rem;
    font-weight: 800;
    margin-bottom: 14px;
}

.about-mv-item p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1rem;
    line-height: 1.7;
}

.about-mv-divider {
    width: 1px;
    background: rgba(255, 255, 255, 0.2);
    align-self: stretch;
    margin: 20px 0;
    flex-shrink: 0;
}

/* Values — light background below */
.about-values-bottom {
    background-color: #f0f6ff;
    padding: 70px 20px;
}

.about-values-container {
    max-width: 1200px;
    margin: 0 auto;
}

.about-values-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 50px auto;
}

.about-values-header h2 {
    color: var(--primary);
    font-size: 2.2rem;
    font-weight: 800;
    margin-bottom: 12px;
}

.about-values-header p {
    color: var(--text-light);
    font-size: 1.05rem;
    line-height: 1.6;
}

.about-values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.about-value-card {
    background: linear-gradient(160deg, #ffffff 60%, #f0f6ff 100%);
    border: 1px solid #ddeaff;
    border-top: 4px solid var(--secondary);
    border-radius: 16px;
    padding: 36px 28px;
    text-align: center;
    box-shadow: 0 4px 18px rgba(0, 80, 180, 0.07);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.about-value-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 32px rgba(0, 80, 180, 0.13);
}

.about-value-icon {
    width: 65px;
    height: 65px;
    margin: 0 auto 18px auto;
    background: rgba(26, 183, 91, 0.08);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    color: var(--secondary);
}

.about-value-card h4 {
    color: var(--primary);
    font-size: 1.2rem;
    font-weight: 800;
    margin-bottom: 12px;
}

.about-value-card p {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.65;
}

@media screen and (max-width: 992px) {
    .about-mv-top {
        padding: 55px 20px;
    }
    .about-mv-item {
        padding: 20px 30px;
    }
    .about-mv-divider {
        display: none;
    }
    .about-values-bottom {
        padding: 55px 20px;
    }
    .about-values-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .about-values-header h2 {
        font-size: 1.8rem;
    }
}

@media screen and (max-width: 600px) {
    .about-mv-top {
        padding: 40px 16px;
    }
    .about-mv-item {
        padding: 20px 16px;
    }
    .about-values-bottom {
        padding: 40px 16px;
    }
    .about-values-grid {
        grid-template-columns: 1fr;
    }
    .about-value-card {
        padding: 28px 20px;
    }
    .about-values-header h2 {
        font-size: 1.5rem;
    }
}


/* =============================================
   STATS SECTION
   ============================================= */
.about-stats-section {
    background: #ffffff;
    padding: 50px 20px;
    border-top: 1px solid #e0ecff;
    border-bottom: 1px solid #e0ecff;
}

.about-stats-container {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
}

.about-stat-item {
    flex: 1 1 200px;
    text-align: center;
    padding: 10px 30px;
}

.about-stat-number {
    display: block;
    font-size: 3rem;
    font-weight: 800;
    color: var(--primary);
    line-height: 1;
    margin-bottom: 8px;
}

.about-stat-label {
    display: block;
    font-size: 0.9rem;
    color: var(--text-light);
    font-weight: 500;
    letter-spacing: 0.3px;
}

.about-stat-divider {
    width: 1px;
    height: 50px;
    background: #ddeaff;
    flex-shrink: 0;
}

@media screen and (max-width: 768px) {
    .about-stat-divider {
        display: none;
    }
    .about-stat-item {
        flex: 1 1 45%;
        padding: 16px 10px;
    }
    .about-stat-number {
        font-size: 2.2rem;
    }
}

@media screen and (max-width: 400px) {
    .about-stat-item {
        flex: 1 1 100%;
    }
}


/* =============================================
   FINAL CTA SECTION
   ============================================= */
.about-final-cta {
    width: 100%;
    background-color: #ffffff;
    overflow: hidden;
    font-family: var(--font);
}

.about-cta-wrapper {
    display: flex;
    flex-wrap: wrap;
    height: 400px;
}

.about-cta-image-side {
    flex: 1.2;
    min-width: 400px;
    height: 100%;
}

.about-cta-image-side img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: bottom center;
    display: block;
}

.about-cta-action-side {
    flex: 1;
    min-width: 400px;
    height: 100%;
    background-color: #0a192f;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 30px 5%;
    text-align: center;
}

.about-action-content {
    max-width: 420px;
}

.about-cta-title {
    font-size: 2.1rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: #ffffff;
    line-height: 1.2;
}

.about-cta-phone-block {
    margin-bottom: 25px;
}

.about-phone-label {
    display: block;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.8rem;
    color: var(--accent);
    margin-bottom: 5px;
}

.about-phone-number {
    font-size: 1.8rem;
    font-weight: 600;
    color: #ffffff;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.about-phone-number:hover {
    opacity: 0.8;
}

.about-service-area-note {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.5);
    font-style: italic;
    margin-top: 15px;
}

@media (max-width: 850px) {
    .about-cta-wrapper { height: auto; }
    .about-cta-image-side { height: 300px; min-width: 100%; }
    .about-cta-action-side { padding: 50px 20px; min-width: 100%; }
}