/* Project Features Grid Styles */

.project-services-area {
    padding: 100px 0;
    background-color: #fff;
}

.project-services-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 60px;
}

.service-title-wrap {
    max-width: 600px;
}

.service-subtitle {
    font-size: 14px;
    font-weight: 300;
    text-transform: uppercase;
    color: #666;
    margin-bottom: 15px;
    display: block;
}

.service-main-title {
    font-size: 48px;
    font-weight: 700;
    line-height: 1.2;
    color: #111;
    font-family: var(--font_recoleta);
}

.service-discover-btn {
    background-color: #A3D95B;
    color: #111;
    padding: 15px 30px;
    border-radius: 50px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    text-decoration: none;
}

.service-discover-btn:hover {
    background-color: #8BC34A;
    transform: translateY(-2px);
}

.project-services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.service-card {
    border-radius: 20px;
    padding: 40px;
    min-height: 350px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: transform 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
}

/* Card Variants */
.card-green {
    background-color: #F0FDFA;
    /* Updated to match screenshot light green/blue */
}

.card-purple {
    background-color: #F3F4FD;
}

.card-blue {
    background-color: #F0FDFA;
}

.card-pink {
    background-color: #FDF2F8;
}

.card-orange {
    background-color: #FFF7ED;
}

.card-yellow {
    background-color: #FEFCE8;
}

.card-number {
    background-color: #000;
    color: #fff;
    width: 60px;
    height: 60px;
    border-top-left-radius: 20px;
    border-bottom-right-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: 400;
    position: absolute;
    top: 0;
    left: 0;
    font-family: var(--font_dmsans);
}

.service-card {
    border-radius: 20px;
    padding: 100px 40px 60px 40px;
    min-height: 340px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: transform 0.3s ease;
    position: relative;
    overflow: hidden;
}

.card-content h3 {
    font-size: 28px;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 20px;
    color: #111;
    font-family: var(--font_recoleta);
}

.card-content p {
    font-size: 16px;
    line-height: 1.6;
    color: #666;
    margin-bottom: 30px;
    font-family: var(--font_dmsans);
}

.learn-more-link {
    font-size: 16px;
    font-weight: 400;
    color: #111;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.learn-more-link:hover {
    text-decoration: underline;
}

@media only screen and (max-width: 991px) {
    .project-services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .project-services-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 30px;
    }

    .service-main-title {
        font-size: 36px;
    }
}

@media only screen and (max-width: 767px) {
    .project-services-grid {
        grid-template-columns: 1fr;
    }
}