/* ========================================
   VISION & MISSION BOXES STYLES
   ======================================== */

.corporate-content {
    background-color: var(--color-gray-50);
}

.vm-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-8);
}

.vm-box {
    position: relative;
    display: flex;
    flex-direction: column;
    background: var(--color-white);
    border-radius: var(--radius-2xl);
    overflow: hidden;
    height: 100%;
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-base);
}

.vm-box:hover {
    transform: translateY(-10px) scale(1.02) !important;
    box-shadow: var(--shadow-2xl);
}

/* Image Container */
.vm-image {
    position: relative;
    width: 100%;
    height: 200px;
    overflow: hidden;
}

.vm-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.vm-box:hover .vm-image img {
    transform: scale(1.05);
}

/* Gradient Overlay on Image */
.vm-image::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 50%;
    background: linear-gradient(to top, rgba(0, 27, 67, 0.5) 0%, transparent 100%);
    pointer-events: none;
}

/* Content Area - Left Aligned */
.vm-content {
    padding: var(--space-8);
    text-align: left;
    flex: 1;
}

.vm-title {
    font-family: var(--font-primary);
    font-size: var(--text-2xl);
    font-weight: var(--font-semibold);
    color: var(--color-secondary);
    margin-bottom: var(--space-4);
}

.vm-text {
    font-family: var(--font-primary);
    font-size: var(--text-base);
    color: var(--color-gray-600);
    line-height: var(--leading-relaxed);
}

/* ========================================
   VALUES SECTION - NO ICON, LEFT ALIGNED
   ======================================== */

.values-section {
    margin-top: var(--space-16);
    padding-top: var(--space-16);
    border-top: 1px solid var(--color-gray-200);
}

.values-title {
    font-family: var(--font-primary);
    font-size: var(--text-3xl);
    font-weight: var(--font-bold);
    color: var(--color-secondary);
    text-align: center;
    margin-bottom: var(--space-10);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-6);
}

.value-box {
    position: relative;
    display: flex;
    flex-direction: column;
    background: var(--color-white);
    border-radius: var(--radius-2xl);
    overflow: hidden;
    height: 100%;
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-base);
}

.value-box:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: var(--shadow-2xl);
}

/* Value Image Container */
.value-image {
    position: relative;
    width: 100%;
    height: 140px;
    overflow: hidden;
}

.value-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.value-box:hover .value-image img {
    transform: scale(1.05);
}

/* Gradient Overlay on Value Image */
.value-image::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 50%;
    background: linear-gradient(to top, rgba(0, 27, 67, 0.5) 0%, transparent 100%);
    pointer-events: none;
}

/* Value Content Area - Left Aligned */
.value-content {
    padding: var(--space-6);
    text-align: left;
    flex: 1;
}

.value-title {
    font-family: var(--font-primary);
    font-size: var(--text-lg);
    font-weight: var(--font-semibold);
    color: var(--color-secondary);
    margin-bottom: var(--space-2);
}

.value-text {
    font-family: var(--font-primary);
    font-size: var(--text-sm);
    color: var(--color-gray-500);
    line-height: var(--leading-relaxed);
}

/* ========================================
   RESPONSIVE
   ======================================== */

@media (max-width: 1024px) {
    .vm-grid {
        gap: var(--space-6);
    }

    .vm-image {
        height: 180px;
    }

    .values-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .vm-grid {
        grid-template-columns: 1fr;
        gap: var(--space-6);
    }

    .vm-image {
        height: 200px;
    }

    .vm-content {
        padding: var(--space-6);
    }

    .vm-title {
        font-size: var(--text-xl);
    }

    .vm-text {
        font-size: var(--text-sm);
    }

    /* Values Responsive */
    .values-section {
        margin-top: var(--space-12);
        padding-top: var(--space-12);
    }

    .values-title {
        font-size: var(--text-2xl);
    }

    .values-grid {
        grid-template-columns: 1fr;
        gap: var(--space-5);
    }

    .value-image {
        height: 180px;
    }

    .value-content {
        padding: var(--space-5);
    }
}

@media (max-width: 480px) {
    .vm-image {
        height: 160px;
    }

    .vm-content {
        padding: var(--space-5);
    }

    /* Values Responsive */
    .value-image {
        height: 150px;
    }

    .value-content {
        padding: var(--space-4);
    }

    .value-title {
        font-size: var(--text-base);
    }

    .value-text {
        font-size: var(--text-xs);
    }
}