:root {
    --primary-orange: var(--berry-crush-light);
    --dark-bg: #1a1a1a;
}

.services-wrapper {
    background-color: #fff;
    padding-bottom: 80px;
}

.services-header {
    background: linear-gradient(rgba(0, 0, 0, 0.596), rgba(0, 0, 0, 0.596)), 
                url('../images/back-us-cards.webp'); 
    background-size: cover;
    background-position: center;
    padding: 100px 0 180px 0; 
    color: white;
}

.container-services {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.header-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 40px;
    align-items: center;
}

.sub-label {
    color: #ff91bf;
    font-weight: 600;
    font-size: 1rem;
    letter-spacing: 1px;
    display: block;
    margin-bottom: 15px;
}

.main-title {
    font-size: 2.5rem;
    color: #fff;
    line-height: 1.1;
    margin: 0;
}

.main-title strong {
    font-weight: 800;
}

.header-desc {
    color: #ffffff;
    font-size: 1.05rem;
    line-height: 1.6;
}

.services-cards-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    margin-top: -100px; 
}

.service-card {
    background: white;
    padding: 40px 30px;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 250px;
    border-bottom: 4px solid transparent;
}

.service-card:hover {
    transform: translateY(-10px);
    border-bottom: 4px solid var(--primary-orange);
}

.card-icon img {
    width: 50px;
    height: 50px;
    margin-bottom: 25px;
    filter: sepia(1) saturate(5) hue-rotate(350deg); 
}

.service-card h3 {
    font-size: 1.2rem;
    color: #222;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 30px;
}

.btn-circle-arrow {
    width: 40px;
    height: 40px;
    background: #f5f5f5;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #333;
    text-decoration: none;
    transition: 0.3s;
}

.service-card:hover .btn-circle-arrow {
    background: var(--primary-orange);
    color: white;
}

@media (max-width: 991px) {
    .header-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .services-cards-grid {
        grid-template-columns: repeat(2, 1fr);
        margin-top: -50px;
    }
    .main-title { font-size: 2.2rem; }
}

@media (max-width: 576px) {
    .services-cards-grid {
        grid-template-columns: 1fr;
    }
    .services-header { padding: 60px 0 120px 0; }
}