.values-section {
    background: linear-gradient(135deg, var(--cream-bg) 0%, #ffffff 100%);
    padding: 6rem 0;
    position: relative;
    overflow: hidden;
}

.values-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.values-header {
    text-align: center;
    margin-bottom: 4rem;
}

.values-title {
    font-size: 3rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
}

.title-underline {
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, var(--accent-teal), var(--accent-orange));
    border-radius: 2px;
}

.values-subtitle {
    font-size: 1.2rem;
    color: var(--text-medium);
    max-width: 500px;
    margin: 0 auto;
}

.values-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
    margin-bottom: 4rem;
}

.values-image {
    position: sticky;
    top: 2rem;
}

.image-container {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-strong);
    background: white;
    padding: 2rem;
}

.values-main-image {
    width: 100%;
    height: auto;
    border-radius: 15px;
    transition: var(--transition-slow);
    filter: grayscale(0.1);
}

.value-spotlight {
    position: absolute;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(56, 178, 172, 0.3) 0%, transparent 70%);
    pointer-events: none;
    opacity: 0;
    transition: var(--transition-slow);
    transform: scale(0);
}

.value-spotlight.active {
    opacity: 1;
    transform: scale(1);
}

.value-spotlight[data-value="integrity"] {
    top: 30%;
    left: 20%;
}

.value-spotlight[data-value="excellence"] {
    top: 60%;
    left: 70%;
}

.value-spotlight[data-value="support"] {
    top: 80%;
    left: 40%;
}

.values-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.value-item {
    display: flex;
    gap: 1.5rem;
    padding: 2rem;
    background: white;
    border-radius: 15px;
    box-shadow: var(--shadow);
    transition: var(--transition);
    cursor: pointer;
    opacity: 0;
    transform: translateX(50px);
    border-left: 4px solid transparent;
}

.value-item.active {
    border-left-color: var(--accent-teal);
    transform: translateX(0);
    box-shadow: var(--shadow-hover);
}

.value-item:nth-child(1) { animation: slideInRight 0.6s ease 0.2s forwards; }
.value-item:nth-child(2) { animation: slideInRight 0.6s ease 0.4s forwards; }
.value-item:nth-child(3) { animation: slideInRight 0.6s ease 0.6s forwards; }
.value-item:nth-child(4) { animation: slideInRight 0.6s ease 0.8s forwards; }
.value-item:nth-child(5) { animation: slideInRight 0.6s ease 1s forwards; }

@keyframes slideInRight {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.value-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.value-item.active:hover {
    transform: translateY(-5px) translateX(0);
}

.value-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--accent-teal), var(--accent-orange));
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    flex-shrink: 0;
    transition: var(--transition);
}

.value-item:hover .value-icon {
    transform: scale(1.1) rotate(5deg);
}

.value-text h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.value-text p {
    color: var(--text-medium);
    line-height: 1.6;
}

.values-commitment {
    max-width: 800px;
    margin: 0 auto;
}

.commitment-card {
    display: flex;
    align-items: center;
    gap: 2rem;
    padding: 3rem;
    background: linear-gradient(135deg, var(--accent-teal), var(--accent-orange));
    border-radius: 20px;
    color: white;
    box-shadow: var(--shadow-strong);
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s ease 1.2s forwards;
}

.commitment-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    flex-shrink: 0;
}

.commitment-text h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.commitment-text p {
    font-size: 1.1rem;
    line-height: 1.6;
    opacity: 0.9;
}

/* Responsive Design */
@media screen and (max-width: 968px) {
    .values-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .values-image {
        position: static;
        order: 2;
    }
    
    .values-list {
        order: 1;
    }
    
    .commitment-card {
        flex-direction: column;
        text-align: center;
        padding: 2rem;
    }
}

@media screen and (max-width: 640px) {
    .values-section {
        padding: 4rem 0;
    }
    
    .values-title {
        font-size: 2.2rem;
    }
    
    .value-item {
        flex-direction: column;
        text-align: center;
        padding: 1.5rem;
    }
    
    .value-icon {
        align-self: center;
    }
    
    .image-container {
        padding: 1rem;
    }
    
    .value-spotlight {
        width: 60px;
        height: 60px;
    }
}