/* Mission Section Styles */
.mission-section {
    position: relative;
    background-color: #141414;
    /* Standard dark background matching Hero */
    color: #fff;
    overflow: hidden;
    padding: 0;
    margin: 0;
}

.mission-container {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    margin: 0;
    height: 100vh;
    /* Full viewport height */
}

/* Left Column: Text & Logo */
.mission-text-col {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 60px 5%;
    /* Spacing around text */
    background: transparent;
    /* No specific background, blends with section #111 */
    min-width: 50%;
    box-sizing: border-box;
}

.mission-title {
    font-family: 'Manrope', sans-serif;
    font-size: 36px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 32px;
    line-height: 1.2;
}

.mission-description {
    font-family: 'Manrope', sans-serif;
    font-size: 18px;
    line-height: 1.6;
    color: #e0e0e0;
    margin-bottom: 60px;
    max-width: 650px;
}

.mission-description p {
    margin-bottom: 24px;
}

.mission-description p:last-child {
    margin-bottom: 0;
}

.mission-logo-wrapper {
    display: flex;
    justify-content: center;
    /* Centered in the left column */
    width: 100%;
    margin-top: 160px;
}

.mission-logo {
    max-width: 100px;
    height: auto;
    /* Gold color filter */
    filter: brightness(0) saturate(100%) invert(84%) sepia(15%) saturate(1478%) hue-rotate(344deg) brightness(88%) contrast(90%);
    opacity: 1;
}

/* Right Column: Image */
.mission-image-col {
    flex: 1;
    min-width: 50%;
    position: relative;
    overflow: hidden;
    min-height: 500px;
}

.mission-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.8s ease;
}

.mission-image-col:hover .mission-image {
    transform: scale(1.05);
}

/* Responsive */
@media (max-width: 992px) {
    .mission-container {
        flex-direction: column;
        min-height: auto;
    }

    .mission-text-col {
        width: 100%;
        padding: 60px 20px;
        order: 1;
        min-height: 100vh;
        /* Full height on mobile too */
        background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('../img/project.jpg');
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
        /* Center content card */
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .mission-image-col {
        display: none;
        /* Hide image column on mobile as it becomes background */
    }

    .mission-content-card {
        background: hsla(0, 0%, 100%, .1);
        -webkit-backdrop-filter: blur(25px);
        backdrop-filter: blur(25px);
        border-radius: 30px;
        color: #fff;
        padding: 30px 20px;
        box-shadow: 0 10px 30px rgba(22, 65, 98, .05), inset 0 1px 0 hsla(0, 0%, 100%, .2);
        max-width: 600px;
        width: 100%;
        text-align: center;
        /* Center text inside card */
    }

    .mission-title {
        font-size: 24px;
        margin-bottom: 24px;
    }

    .mission-description {
        font-size: 15px;
        margin-bottom: 30px;
        color: #fff;
    }

    .mission-logo-wrapper {
        margin-top: 40px;
        /* Reduced margin in card */
    }

    .mission-logo {
        max-width: 60px;
        /* Requested 60px for mobile */
    }
}