/* Modern Core Values Cards */
.core-values-modern-section {
    background: white;
    padding: 100px 0;
}

.core-value-card-modern {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    border-radius: 24px;
    padding: 2.4rem 2.1rem;
    box-shadow: 0 14px 34px rgba(16, 24, 40, 0.08);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    height: 100%;
    border: 1px solid rgba(31, 106, 58, 0.12);
    position: relative;
    overflow: hidden;
}

.core-value-card-modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: linear-gradient(90deg, #C9A227, #D4AF37);
    z-index: 1;
}

.core-value-card-modern:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(31, 106, 58, 0.25);
    border-color: rgba(31, 106, 58, 0.25);
}

.core-value-icon-modern {
    display: flex;
    align-items: center;
    justify-content: center;
    color: #1F6A3A;
    font-size: 2.5rem;
    margin: 0 auto 1.2rem;
    transition: all 0.4s ease;
    position: relative;
}

.core-value-card-modern:hover .core-value-icon-modern {
    transform: scale(1.1);
    color: #16522D;
}

.core-value-card-modern h4 {
    color: #16522D;
    font-weight: 700;
    font-size: 1.35rem;
    margin-bottom: 1rem;
    text-align: center;
}

.core-value-card-modern p {
    color: #6c757d;
    line-height: 1.75;
    text-align: center;
    font-size: 1rem;
}
