/* Prevent selection and dragging */
.mnl-about-story img,
.mnl-about-mission video,
.mnl-about-team img {
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none;
    -webkit-user-drag: none;
    user-drag: none;
    pointer-events: none;
}

/* Base Styles */
body {
    font-family: 'Roboto', sans-serif;
    background: #ffffff;
    color: #1d1d1f;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* ===================================== */
/* HERO SECTION */
/* ===================================== */
.mnl-about-hero {
    padding: 140px 0 100px;
    background: linear-gradient(135deg, #000000 0%, #1d1d1f 100%);
    text-align: center;
}

.mnl-about-hero-content {
    max-width: 900px;
    margin: 0 auto;
}

.mnl-about-hero-title {
    font-size: 4rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 25px;
    letter-spacing: -1px;
    line-height: 1.1;
}

.mnl-about-hero-subtitle {
    font-size: 1.5rem;
    color: #cccccc;
    font-weight: 400;
    line-height: 1.5;
}

/* ===================================== */
/* SECTION HEADERS */
/* ===================================== */
.mnl-section-header {
    text-align: center;
    margin-bottom: 70px;
}

.mnl-section-title {
    font-size: 3rem;
    font-weight: 700;
    color: #000000;
    margin-bottom: 20px;
    letter-spacing: -0.5px;
}

.mnl-section-description {
    font-size: 1.25rem;
    color: #6e6e73;
    font-weight: 400;
}

/* ===================================== */
/* STORY SECTION */
/* ===================================== */
.mnl-about-story {
    padding: 100px 0;
    background: #ffffff;
}

.mnl-story-content-col {
    padding: 40px;
}

.mnl-story-content {
    max-width: 500px;
}

.mnl-story-title {
    font-size: 2.75rem;
    font-weight: 700;
    color: #000000;
    margin-bottom: 30px;
    letter-spacing: -0.5px;
}

.mnl-story-text {
    font-size: 1.125rem;
    line-height: 1.8;
    color: #424245;
    margin-bottom: 25px;
}

.mnl-story-media {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
}

.mnl-story-image {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 24px;
}

/* ===================================== */
/* MISSION SECTION */
/* ===================================== */
.mnl-about-mission {
    padding: 100px 0;
    background: #f5f5f7;
}

.mnl-mission-content-col {
    padding: 40px;
}

.mnl-mission-content {
    max-width: 500px;
}

.mnl-mission-title {
    font-size: 2.75rem;
    font-weight: 700;
    color: #000000;
    margin-bottom: 30px;
    letter-spacing: -0.5px;
}

.mnl-mission-text {
    font-size: 1.125rem;
    line-height: 1.8;
    color: #424245;
    margin-bottom: 25px;
}

.mnl-mission-media {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
}

.mnl-mission-video {
    width: 100%;
    height: auto;
    display: block;
}

.mnl-video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10;
    cursor: default;
}

/* Disable video controls */
.mnl-mission-video::-webkit-media-controls {
    display: none !important;
}

/* ===================================== */
/* CORE VALUES SECTION */
/* ===================================== */
.mnl-about-values {
    padding: 100px 0;
    background: #f5f5f7;
}

.mnl-value-card {
    padding: 40px 30px;
    text-align: center;
    transition: all 0.3s ease;
    margin-bottom: 30px;
}

.mnl-value-card:hover {
    transform: translateY(-8px);
}

.mnl-value-icon {
    width: 80px;
    height: 80px;
    background: #000000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 32px;
    color: #ffffff;
    transition: all 0.3s ease;
}

.mnl-value-card:hover .mnl-value-icon {
    background: #1d1d1f;
    transform: scale(1.1);
}

.mnl-value-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #000000;
    margin-bottom: 15px;
    letter-spacing: -0.3px;
}

.mnl-value-description {
    font-size: 1rem;
    line-height: 1.7;
    color: #6e6e73;
    margin: 0;
}

/* ===================================== */
/* TEAM SECTION */
/* ===================================== */
.mnl-about-team {
    padding: 100px 0;
    background: #ffffff;
}

.mnl-team-content-col {
    padding: 40px;
}

.mnl-team-content {
    max-width: 500px;
}

.mnl-team-title {
    font-size: 2.75rem;
    font-weight: 700;
    color: #000000;
    margin-bottom: 30px;
    letter-spacing: -0.5px;
}

.mnl-team-text {
    font-size: 1.125rem;
    line-height: 1.8;
    color: #424245;
    margin-bottom: 25px;
}

.mnl-team-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 14px 28px;
    background: #000000;
    color: #ffffff;
    text-decoration: none;
    border-radius: 10px;
    font-size: 1rem;
    font-weight: 600;
    transition: all 0.3s ease;
    margin-top: 10px;
}

.mnl-team-cta-btn:hover {
    background: #1d1d1f;
    color: #ffffff;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.mnl-team-cta-btn i {
    transition: transform 0.3s ease;
}

.mnl-team-cta-btn:hover i {
    transform: translateX(4px);
}

.mnl-team-media {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
}

.mnl-team-image {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 24px;
}

/* ===================================== */
/* STATS SECTION */
/* ===================================== */
.mnl-about-stats {
    padding: 80px 0;
    background: #000000;
    color: #ffffff;
}

.mnl-stat-card {
    text-align: center;
    padding: 20px;
}

.mnl-stat-number {
    font-size: 3.5rem;
    font-weight: 900;
    color: #ffffff;
    margin-bottom: 10px;
    letter-spacing: -1px;
}

.mnl-stat-label {
    font-size: 1.125rem;
    color: #cccccc;
    font-weight: 400;
    margin: 0;
}

/* ===================================== */
/* RESPONSIVE DESIGN */
/* ===================================== */

/* Tablet */
@media (max-width: 991px) {
    .mnl-about-hero {
        padding: 100px 0 80px;
    }

    .mnl-about-hero-title {
        font-size: 3rem;
    }

    .mnl-about-hero-subtitle {
        font-size: 1.25rem;
    }

    .mnl-about-story,
    .mnl-about-mission,
    .mnl-about-values,
    .mnl-about-team {
        padding: 80px 0;
    }

    .mnl-story-content-col,
    .mnl-mission-content-col,
    .mnl-team-content-col {
        padding: 30px 20px;
    }

    .mnl-story-media-col,
    .mnl-mission-media-col,
    .mnl-team-media-col {
        margin-bottom: 40px;
    }

    .mnl-section-title {
        font-size: 2.5rem;
    }

    .mnl-story-title,
    .mnl-mission-title,
    .mnl-team-title {
        font-size: 2.25rem;
    }
}

/* Mobile */
@media (max-width: 767px) {
    .mnl-about-hero {
        padding: 80px 0 60px;
    }

    .mnl-about-hero-title {
        font-size: 2.25rem;
        letter-spacing: -0.5px;
    }

    .mnl-about-hero-subtitle {
        font-size: 1.125rem;
    }

    .mnl-about-story,
    .mnl-about-mission,
    .mnl-about-values,
    .mnl-about-team {
        padding: 60px 0;
    }

    .mnl-story-content-col,
    .mnl-mission-content-col,
    .mnl-team-content-col {
        padding: 20px;
        text-align: center;
    }

    .mnl-story-content,
    .mnl-mission-content,
    .mnl-team-content {
        max-width: 100%;
    }

    .mnl-section-header {
        margin-bottom: 50px;
    }

    .mnl-section-title {
        font-size: 2rem;
    }

    .mnl-section-description {
        font-size: 1.125rem;
    }

    .mnl-story-title,
    .mnl-mission-title,
    .mnl-team-title {
        font-size: 2rem;
    }

    .mnl-story-text,
    .mnl-mission-text,
    .mnl-team-text {
        font-size: 1rem;
    }

    .mnl-value-card {
        padding: 30px 20px;
    }

    .mnl-value-icon {
        width: 70px;
        height: 70px;
        font-size: 28px;
    }

    .mnl-value-title {
        font-size: 1.375rem;
    }

    .mnl-team-cta-btn {
        width: 100%;
        justify-content: center;
    }

    .mnl-stat-number {
        font-size: 2.5rem;
    }

    .mnl-stat-label {
        font-size: 1rem;
    }

    .mnl-about-stats {
        padding: 60px 0;
    }

    .mnl-stat-card {
        margin-bottom: 30px;
    }
}

/* Extra Small Mobile */
@media (max-width: 576px) {
    .mnl-about-hero-title {
        font-size: 2rem;
    }

    .mnl-section-title {
        font-size: 1.75rem;
    }

    .mnl-story-title,
    .mnl-mission-title,
    .mnl-team-title {
        font-size: 1.75rem;
    }

    .mnl-stat-number {
        font-size: 2.25rem;
    }
}