/* --- About Us Page Specific Styles --- */

.hero-mini {
    height: 35vh;
    min-height: 250px;
}

@media (min-width: 992px) {
    .hero-mini {
        height: 35vh;
        min-height: 300px;
    }
}

@media (min-width: 1440px) {
    .hero-mini {
        height: 35vh;
        min-height: 350px;
    }
}

.gm-message-content {
    display: flex;
    align-items: center;
    gap: 4rem;
    padding: 2rem 0;
}

.gm-img-wrapper {
    flex: 0 0 320px;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    border: 1px solid rgba(0,0,0,0.05);
}

.gm-photo {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.gm-img-wrapper:hover .gm-photo {
    transform: scale(1.08);
}

.message-text {
    flex: 1;
}

.message-text p {
    font-size: clamp(1.1rem, 1.5vw, 1.3rem);
    line-height: 1.8;
    margin-bottom: 2rem;
    color: var(--text);
    font-style: italic;
    position: relative;
    padding-left: 2rem;
}

.message-text p::before {
    content: '"';
    position: absolute;
    left: -1rem;
    top: -1.5rem;
    font-size: 6rem;
    color: var(--accent);
    opacity: 0.15;
    font-family: 'Georgia', serif;
}

.gm-signature {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(0,0,0,0.05);
}

.gm-signature h4 {
    color: var(--primary);
    font-size: 1.6rem;
    margin-bottom: 0.2rem;
    font-weight: 700;
}

.gm-signature span {
    color: var(--text);
    opacity: 0.7;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
}

@media (max-width: 992px) {
    .gm-message-content {
        flex-direction: column;
        text-align: center;
        gap: 2rem;
        padding: 1rem 0;
    }
    .gm-img-wrapper {
        flex-basis: auto;
        width: 100%;
        max-width: 320px;
        margin: 0 auto;
    }
    .message-text p {
        padding-left: 0;
        font-size: 1.15rem;
    }
    .message-text p::before {
        left: 50%;
        transform: translateX(-50%);
        top: -1.5rem;
        font-size: 4rem;
    }
    .gm-signature {
        margin-top: 2rem;
    }
}

/* --- Mission & Vision --- */
.mv-box {
    padding: 2rem 0;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    height: 100%;
}

.mv-icon {
    font-size: 4rem;
    color: var(--primary);
    margin-bottom: 1.5rem;
    display: block;
}

.mv-box h3 {
    font-size: 2.2rem;
    margin-bottom: 1.25rem;
    color: var(--primary);
    font-weight: 800;
}

.mv-box p {
    font-size: 1.35rem;
    line-height: 1.8;
    color: var(--text);
    max-width: 600px;
    margin: 0 auto;
}

@media (max-width: 768px) {
    .hero-mini {
        height: auto;
        min-height: 350px;
        padding: 120px 1.5rem 60px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .hero-content h1 {
        font-size: 2.5rem;
    }

    .gm-img-wrapper {
        max-width: 260px;
    }

    .grid-3 {
        grid-template-columns: 1fr !important;
        gap: 1.5rem;
    }

    #journey .grid-2 {
        text-align: center;
        gap: 2rem;
    }

    .mv-box {
        padding: 1.5rem 0;
    }
    
    .mv-icon {
        font-size: 2.8rem;
    }

    .mv-box h3 {
        font-size: 1.75rem;
    }

    .mv-box p {
        font-size: 1.05rem;
    }

    .gm-signature h4 {
        font-size: 1.4rem;
    }

    .section-header {
        margin-bottom: 2.5rem;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 2.2rem;
    }
    
    .message-text p {
        font-size: 1.05rem;
    }

    .gm-img-wrapper {
        max-width: 220px;
    }

    h2 {
        font-size: 1.8rem !important;
    }

    .gm-signature {
        padding-top: 1.5rem;
    }

    .gm-signature h4 {
        font-size: 1.3rem;
    }
}
