/* ===========================================
   Mission Vision Page Styles
   =========================================== */

:root {
    --mv-primary: #ff5e14;
    --mv-secondary: #010e2a;
    --mv-light: #fff5ef;
    --mv-gradient: linear-gradient(135deg, #ff5e14 0%, #ff7b3d 100%);
    --mv-dark-gradient: linear-gradient(135deg, #010e2a 0%, #021a4d 100%);
}

/* Section Common */
.mv-section {
    padding: 90px 0;
    position: relative;
    overflow: hidden;
}

.mv-section-light {
    background: linear-gradient(180deg, #ffffff 0%, #fffaf6 100%);
}

.mv-section-tinted {
    background: linear-gradient(180deg, #fff5ef 0%, #ffe8da 100%);
    position: relative;
}

.mv-section-tinted::before,
.mv-section-tinted::after {
    content: '';
    position: absolute;
    width: 350px;
    height: 350px;
    border-radius: 50%;
    pointer-events: none;
    opacity: 0.4;
}

.mv-section-tinted::before {
    top: -100px;
    left: -100px;
    background: radial-gradient(circle, rgba(255, 94, 20, 0.15) 0%, transparent 70%);
}

.mv-section-tinted::after {
    bottom: -100px;
    right: -100px;
    background: radial-gradient(circle, rgba(255, 94, 20, 0.12) 0%, transparent 70%);
}

/* Badge */
.mv-badge {
    display: inline-block;
    padding: 6px 20px;
    background: var(--mv-gradient);
    color: white;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    border-radius: 30px;
    margin-bottom: 1.25rem;
    box-shadow: 0 6px 18px rgba(255, 94, 20, 0.35);
}

.mv-section-title {
    font-size: 2.4rem;
    font-weight: 800;
    color: var(--mv-secondary);
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 0.85rem;
    display: inline-block;
}

.mv-section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 70px;
    height: 4px;
    background: var(--mv-gradient);
    border-radius: 2px;
}

/* Wave decoration under title */
.mv-section-title::before {
    content: '';
    position: absolute;
    bottom: -14px;
    left: 50%;
    transform: translateX(-50%);
    width: 130px;
    height: 12px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 130 12'%3E%3Cpath d='M0 6 Q 16 0 32 6 T 64 6 T 96 6 T 130 6' stroke='%23ff5e14' stroke-width='2' fill='none' opacity='0.4'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
}

/* ===========================================
   Mission / Vision / Values Block
   =========================================== */
.mv-block {
    position: relative;
    z-index: 1;
}

/* Image Wrapper - LARGER HEIGHT */
.mv-block-image-wrapper {
    width: 100%;
    height: 380px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    border-bottom: 1px solid rgba(255, 94, 20, 0.1);
    position: relative;
    cursor: zoom-in;
}

.mv-block-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(1, 14, 42, 0.18);
    transition: all 0.4s ease;
    cursor: zoom-in;
}

.mv-block-image:hover {
    transform: translateY(-8px);
    box-shadow: 0 30px 70px rgba(255, 94, 20, 0.3);
}

.mv-block-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.6s ease;
}

.mv-block-image:hover img {
    transform: scale(1.08);
}

/* Image overlay decoration */
.mv-block-image::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 60%, rgba(1, 14, 42, 0.35));
    pointer-events: none;
}

/* Zoom Icon Overlay */
.mv-block-image::before {
    content: '\F4DE';
    font-family: "bootstrap-icons";
    position: absolute;
    bottom: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    background: var(--mv-gradient);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    box-shadow: 0 5px 20px rgba(255, 94, 20, 0.4);
    opacity: 0;
    transform: scale(0.5);
    transition: all 0.3s ease;
    z-index: 3;
}

.mv-block-image:hover::before {
    opacity: 1;
    transform: scale(1);
}

/* Floating icon on image */
.mv-floating-icon {
    position: absolute;
    bottom: -25px;
    right: 25px;
    width: 70px;
    height: 70px;
    background: var(--mv-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.8rem;
    box-shadow: 0 12px 30px rgba(255, 94, 20, 0.45);
    z-index: 2;
    border: 4px solid white;
    animation: mvBounce 3s ease-in-out infinite;
}

@keyframes mvBounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}

/* Content side */
.mv-block-content p {
    color: #475569;
    line-height: 1.8;
    font-size: 1rem;
    margin-bottom: 1rem;
}

.mv-block-content .lead {
    color: var(--mv-secondary);
    font-weight: 600;
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.mv-block-list {
    list-style: none;
    padding: 0;
    margin: 1.25rem 0 0;
}

.mv-block-list li {
    padding: 0.55rem 0 0.55rem 2rem;
    color: #475569;
    line-height: 1.6;
    position: relative;
    font-size: 0.98rem;
    transition: transform 0.25s ease;
}

.mv-block-list li:hover {
    transform: translateX(6px);
}

.mv-block-list li::before {
    content: '\F26A';
    font-family: "bootstrap-icons";
    position: absolute;
    left: 0;
    top: 8px;
    color: var(--mv-primary);
    font-size: 1.1rem;
    font-weight: bold;
}

/* ===========================================
   CORE VALUES GRID
   =========================================== */
.mv-values-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-top: 3rem;
}

.mv-value-card {
    background: white;
    border-radius: 16px;
    padding: 2rem 1.5rem;
    text-align: center;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.06);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.mv-value-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--mv-gradient);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.mv-value-card:hover {
    transform: translateY(-12px);
    border-color: rgba(255, 94, 20, 0.2);
    box-shadow: 0 20px 45px rgba(255, 94, 20, 0.2);
}

.mv-value-card:hover::before {
    transform: scaleX(1);
}

.mv-value-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.25rem;
    background: rgba(255, 94, 20, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--mv-primary);
    font-size: 2rem;
    transition: all 0.4s ease;
    position: relative;
}

.mv-value-card:hover .mv-value-icon {
    background: var(--mv-gradient);
    color: white;
    transform: rotateY(360deg);
    box-shadow: 0 10px 28px rgba(255, 94, 20, 0.4);
}

.mv-value-title {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--mv-secondary);
    margin-bottom: 0.6rem;
}

.mv-value-desc {
    font-size: 0.9rem;
    color: #6c757d;
    line-height: 1.55;
    margin: 0;
}

/* ===========================================
   GOALS / OBJECTIVES SECTION
   =========================================== */
.mv-goals-section {
    background: var(--mv-dark-gradient);
    padding: 70px 0;
    position: relative;
    overflow: hidden;
}

.mv-goals-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255, 94, 20, 0.2) 0%, transparent 70%);
    border-radius: 50%;
}

.mv-goals-section .mv-section-title {
    color: white;
}

.mv-goals-section .mv-section-title::after {
    background: var(--mv-gradient);
}

.mv-goal-card {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 14px;
    padding: 1.75rem 1.5rem;
    text-align: center;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    height: 100%;
    position: relative;
    z-index: 1;
}

.mv-goal-card:hover {
    background: rgba(255, 94, 20, 0.15);
    border-color: var(--mv-primary);
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(255, 94, 20, 0.3);
}

.mv-goal-card i {
    font-size: 2.5rem;
    color: var(--mv-primary);
    margin-bottom: 1rem;
    display: block;
}

.mv-goal-card h5 {
    color: white;
    font-weight: 700;
    margin-bottom: 0.5rem;
    font-size: 1.05rem;
}

.mv-goal-card p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.88rem;
    margin: 0;
    line-height: 1.5;
}

/* ===========================================
   ANIMATIONS
   =========================================== */
@keyframes mvFadeUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes mvFadeRight {
    from { opacity: 0; transform: translateX(-40px); }
    to { opacity: 1; transform: translateX(0); }
}

@keyframes mvFadeLeft {
    from { opacity: 0; transform: translateX(40px); }
    to { opacity: 1; transform: translateX(0); }
}

.mv-animate-up { animation: mvFadeUp 0.7s ease-out backwards; }
.mv-animate-right { animation: mvFadeRight 0.7s ease-out backwards; }
.mv-animate-left { animation: mvFadeLeft 0.7s ease-out backwards; }

.mv-delay-100 { animation-delay: 0.1s; }
.mv-delay-200 { animation-delay: 0.2s; }
.mv-delay-300 { animation-delay: 0.3s; }
.mv-delay-400 { animation-delay: 0.4s; }

/* ===========================================
   RESPONSIVE
   =========================================== */
@media (max-width: 991.98px) {
    .mv-section {
        padding: 60px 0;
    }
    
    .mv-section-title {
        font-size: 2rem;
    }
    
    .mv-block-image img {
        height: 320px;
    }
    
    .mv-values-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 767.98px) {
    .mv-section {
        padding: 50px 0;
    }
    
    .mv-section-title {
        font-size: 1.65rem;
    }
    
    .mv-block-image img {
        height: 260px;
    }
    
    .mv-floating-icon {
        width: 56px;
        height: 56px;
        font-size: 1.4rem;
        bottom: -20px;
        right: 20px;
    }
    
    .mv-block-content {
        margin-top: 2.5rem;
    }
}

@media (max-width: 575.98px) {
    .mv-values-grid {
        grid-template-columns: 1fr;
    }
    
    .mv-section-title {
        font-size: 1.5rem;
    }
}
