/* ==========================================================================
   About Page Layout Stylesheet
   ========================================================================== */

/* Layout Helper Grid */
.grid-2-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}

/* Section Labels & Headings */
.section-label {
    text-transform: uppercase;
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--accent);
    letter-spacing: 1.5px;
    margin-bottom: 12px;
}
.section-label.center { text-align: center; }

.section-title {
    font-size: 2.25rem;
    font-weight: 800;
    line-height: 1.25;
    color: var(--text-main);
    margin-bottom: 24px;
    letter-spacing: -0.5px;
}
.section-title.center { text-align: center; }

/* --- 1. Hero Section --- */
.about-hero {
    position: relative;
    padding: 100px 0 120px 0;
    background: linear-gradient(135deg, rgba(0, 122, 135, 0.03) 0%, rgba(255, 255, 255, 1) 100%);
    border-bottom: 1px solid var(--border);
    overflow: hidden;
}

.about-hero__content {
    max-width: 900px;
}

.about-hero__badge {
    display: inline-block;
    padding: 6px 16px;
    background: rgba(0, 122, 135, 0.08);
    color: var(--primary);
    border-radius: 100px;
    font-size: 0.9rem;
    font-weight: 700;
    margin-bottom: 24px;
}

.about-hero__title {
    font-size: 3rem;
    font-weight: 800;
    line-height: 1.2;
    color: var(--text-main);
    letter-spacing: -1px;
}

/* Background Visual Accents */
.about-hero__shape {
    position: absolute;
    border-radius: 50%;
    z-index: -1;
    filter: blur(60px);
    opacity: 0.4;
}
.about-hero__shape--1 {
    width: 300px;
    height: 300px;
    background: var(--accent);
    top: -50px;
    right: -50px;
}
.about-hero__shape--2 {
    width: 250px;
    height: 250px;
    background: var(--primary);
    bottom: -80px;
    left: 10%;
}

/* --- 2. Our Mission Section --- */
.about-mission {
    padding: 100px 0;
    background: var(--white);
}

.about-mission__description {
    font-size: 1.05rem;
    color: var(--text-muted);
    margin-bottom: 20px;
    line-height: 1.7;
}

.about-mission__cta {
    display: flex;
    gap: 16px;
    margin-top: 32px;
}

/* Professional Modern Image Display Frame */
.about-mission__image-wrapper {
    position: relative;
    padding: 12px;
}

.about-mission__img {
    width: 100%;
    height: 480px;
    object-fit: cover;
    border-radius: 16px;
    box-shadow: var(--shadow-md);
    position: relative;
    z-index: 2;
}

.image-backdrop {
    position: absolute;
    top: 32px;
    right: -12px;
    bottom: -12px;
    left: 32px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    border-radius: 16px;
    z-index: 1;
    opacity: 0.15;
}

/* Dynamic Fallback Container Styles */
.image-placeholder {
    width: 100%;
    height: 480px;
    background: linear-gradient(135deg, rgba(0, 122, 135, 0.1) 0%, rgba(0, 163, 180, 0.05) 100%);
    border-radius: 16px;
    border: 2px dashed var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    position: relative;
}

.image-placeholder i {
    font-size: 4rem;
    color: var(--primary);
    opacity: 0.6;
}

/* --- 3. Our Values Section --- */
.about-values {
    padding: 100px 0;
    background: var(--bg-light);
    border-top: 1px solid var(--border);
}

.about-values__header {
    max-width: 650px;
    margin: 0 auto 60px auto;
}

.about-values__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.value-card {
    background: var(--white);
    padding: 32px 24px;
    border-radius: 12px;
    border: 1px solid var(--border);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.value-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
    border-color: rgba(0, 122, 135, 0.3);
}

.value-card__icon-box {
    width: 52px;
    height: 52px;
    border-radius: 10px;
    background: rgba(0, 122, 135, 0.06);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    margin-bottom: 24px;
    transition: var(--transition);
}

.value-card:hover .value-card__icon-box {
    background: var(--primary);
    color: var(--white);
}

.value-card__title {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text-main);
    margin-bottom: 12px;
}

.value-card__text {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.6;
}

/* --- 4. Responsive Viewport Adaptations --- */
@media (max-width: 1024px) {
    .about-values__grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }
}

@media (max-width: 768px) {
    .grid-2-col {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .about-hero {
        padding: 60px 0 80px 0;
    }

    .about-hero__title {
        font-size: 2.25rem;
    }

    .section-title {
        font-size: 1.85rem;
    }

    .about-mission__image-wrapper {
        order: -1; /* Pushes picture back on top over mobile copy layouts */
    }

    .about-mission__img, 
    .image-placeholder {
        height: 320px;
    }

    .about-mission__cta {
        flex-direction: column;
        gap: 12px;
    }
    
    .about-mission__cta .btn {
        width: 100%;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .about-values__grid {
        grid-template-columns: 1fr;
    }
}