.gm-services-section {
    width: 100%;
    padding: 60px 0;
}

.gm-services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.gm-service-card {
    position: relative;
    border-radius: 16px;
    padding: 40px 30px 35px;
    min-height: 280px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-decoration: none;
}

.gm-service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}

.gm-service-card--blue {
    background: linear-gradient(135deg, #5bb8d6 0%, #3a9bc7 50%, #2d8ab8 100%);
    color: #fff;
}

.gm-service-card--white {
    background: #ffffff;
    color: #1a1a2e;
    border: 1px solid #e8edf2;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

.gm-service-card--white .gm-service-card__title {
    color: #1a1a2e;
}

.gm-service-card--white .gm-service-card__desc {
    color: #4a5568;
}

.gm-service-card--white .gm-service-card__link {
    color: #2d8ab8;
}

.gm-service-card--white .gm-service-card__link:hover {
    color: #1a6f96;
}

.gm-service-card--white .gm-service-card__link svg {
    fill: #2d8ab8;
}

.gm-service-card--white .gm-service-card__link:hover svg {
    fill: #1a6f96;
}

.gm-service-card__wave {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
}

.gm-service-card__wave svg {
    position: absolute;
    width: 100%;
    height: 100%;
}

.gm-service-card__content {
    position: relative;
    z-index: 1;
}

.gm-service-card__icon {
    width: 56px;
    height: 56px;
    border-radius: 12px;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.gm-service-card__icon svg {
    width: 28px;
    height: 28px;
    fill: #2d8ab8;
}

.gm-service-card--blue .gm-service-card__icon svg {
    fill: #2d8ab8;
}

.gm-service-card__title {
    font-size: 22px;
    font-weight: 700;
    margin: 0 0 12px;
    line-height: 1.3;
}

.gm-service-card__desc {
    font-size: 15px;
    line-height: 1.6;
    margin: 0;
    opacity: 0.9;
}

.gm-service-card__link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 16px;
    font-weight: 600;
    margin-top: 20px;
    text-decoration: none;
    color: #fff;
    transition: gap 0.3s ease;
}

.gm-service-card__link:hover {
    gap: 12px;
}

.gm-service-card__link svg {
    width: 18px;
    height: 18px;
    fill: #fff;
    transition: transform 0.3s ease;
}

.gm-service-card__link:hover svg {
    transform: translateX(3px);
}

@media (max-width: 992px) {
    .gm-services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .gm-services-grid {
        grid-template-columns: 1fr;
    }

    .gm-service-card {
        min-height: auto;
        padding: 30px 24px 28px;
    }
}