/* Our Values Section - Premium Modern Design */
.values-section {
    padding: 60px 0;
    background: #f7fafc;
    position: relative;
    overflow: hidden;
}

.section-bg-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.values-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 1;
}

/* Simple Header */
.simple-header {
    text-align: center;
    margin-bottom: 2rem;
}

.simple-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-dark);
    position: relative;
    display: inline-block;
}

.simple-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(135deg, var(--primary-orange), var(--light-orange));
    border-radius: 2px;
}

/* Values Introduction */
.values-intro {
    text-align: center;
    margin-bottom: 3rem;
}

.values-description {
    max-width: 700px;
    margin: 0 auto;
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--text-light);
    background: var(--white);
    padding: 1.5rem 2rem;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    border-left: 4px solid var(--primary-orange);
}

/* Values Grid */
.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

/* Value Cards */
.value-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 20px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    border: 1px solid #e2e8f0;
}

.value-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, var(--primary-orange) 0%, transparent 70%);
    opacity: 0;
    transition: all 0.4s ease;
    z-index: 0;
}

.value-card:hover::before {
    opacity: 0.05;
}

.value-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
    border-color: var(--primary-blue);
}

/* Value Icons */
.value-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, #fef7ed, #fed7aa);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 1;
    transition: all 0.3s ease;
}

.value-card:hover .value-icon {
    background: linear-gradient(135deg, var(--primary-blue), var(--light-blue));
    transform: scale(1.1);
}

.value-icon i {
    font-size: 2rem;
    color: var(--primary-orange);
    transition: all 0.3s ease;
}

.value-card:hover .value-icon i {
    color: var(--white);
}

/* Value Titles */
.value-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
    transition: all 0.3s ease;
}

.value-card:hover .value-title {
    color: var(--primary-orange);
}

/* Value Descriptions */
.value-description {
    font-size: 0.95rem;
    line-height: 1.7;
    color: var(--text-light);
    position: relative;
    z-index: 1;
    transition: all 0.3s ease;
}

.value-card:hover .value-description {
    color: var(--text-dark);
}

/* Special styling for specific cards */
.value-card:nth-child(1) .value-icon {
    background: linear-gradient(135deg, #dbeafe, #93c5fd);
}

.value-card:nth-child(2) .value-icon {
    background: linear-gradient(135deg, #d1fae5, #86efac);
}

.value-card:nth-child(3) .value-icon {
    background: linear-gradient(135deg, #fef3c7, #fcd34d);
}

.value-card:nth-child(4) .value-icon {
    background: linear-gradient(135deg, #e0e7ff, #a5b4fc);
}

.value-card:nth-child(5) .value-icon {
    background: linear-gradient(135deg, #fce7f3, #f9a8d4);
}

.value-card:nth-child(6) .value-icon {
    background: linear-gradient(135deg, #ecfdf5, #6ee7b7);
}

.value-card:nth-child(7) .value-icon {
    background: linear-gradient(135deg, #fef2f2, #fca5a5);
}

.value-card:nth-child(8) .value-icon {
    background: linear-gradient(135deg, #f0f9ff, #7dd3fc);
}

/* Animation effects */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-on-scroll {
    animation: fadeInUp 0.6s ease-out;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .values-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    .values-section {
        padding: 50px 0;
    }
    
    .simple-title {
        font-size: 2rem;
    }
    
    .values-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .value-card {
        padding: 2rem;
    }
    
    .values-description {
        padding: 1.25rem 1.5rem;
        font-size: 1rem;
    }
    
    .value-icon {
        width: 70px;
        height: 70px;
    }
    
    .value-icon i {
        font-size: 1.8rem;
    }
    
    .value-title {
        font-size: 1.3rem;
    }
}

@media (max-width: 480px) {
    .values-container {
        padding: 0 15px;
    }
    
    .value-card {
        padding: 1.5rem;
    }
    
    .values-description {
        padding: 1.25rem;
    }
}