.services-hero {
    position: relative;
    min-height: 520px;
    display: flex;
    align-items: center;
    overflow: hidden;
    background:
        linear-gradient(90deg,
            rgba(3, 9, 18, 0.96) 0%,
            rgba(3, 9, 18, 0.74) 48%,
            rgba(3, 9, 18, 0.2) 100%),
        url("../../../assets/img/services-mechanic-hero.jpg") center 58%/cover no-repeat;
}

.services-hero::before {
    content: '';
    position: absolute;
    inset: auto -14% -20% auto;
    width: 360px;
    height: 360px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 196, 0, 0.28), transparent 72%);
    filter: blur(26px);
    animation: heroGlow 10s ease-in-out infinite alternate;
}

.services-hero::after {
    content: "";
    position: absolute;
    inset: auto 0 0;
    height: 6px;
    background: linear-gradient(90deg, #ffc400, #f5a800);
}

.services-hero-content {
    position: relative;
    z-index: 1;
    padding-top: 80px;
    padding-bottom: 80px;
    color: #ffffff;
}

.services-label {
    display: inline-block;
    margin-bottom: 14px;
    color: #ffc400;
    font-size: 0.9rem;
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.services-hero h1 {
    max-width: 700px;
    margin-bottom: 20px;
    font-size: clamp(2.5rem, 6vw, 5rem);
    font-weight: 800;
    line-height: 1;
}

.services-hero p {
    max-width: 620px;
    margin-bottom: 30px;
    color: rgba(255, 255, 255, 0.9);
    font-size: clamp(1rem, 1.7vw, 1.25rem);
    line-height: 1.7;
}

.services-main-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 26px;
    border-radius: 999px;
    background: linear-gradient(135deg, #25d366 0%, #1ebc59 100%);
    color: #ffffff;
    font-weight: 800;
    text-decoration: none;
    box-shadow: 0 14px 32px rgba(37, 211, 102, 0.25);
    transition: transform 0.28s ease, box-shadow 0.28s ease, background 0.28s ease;
}

.services-main-button:hover {
    transform: translateY(-4px) scale(1.01);
    box-shadow: 0 18px 38px rgba(37, 211, 102, 0.32);
    background: linear-gradient(135deg, #2fe07d 0%, #25d366 100%);
    color: #ffffff;
}

.services-section {
    padding: 90px 0;
    background: linear-gradient(180deg, #f7f9fc 0%, #eef3f8 100%);
}

.section-heading {
    max-width: 760px;
    margin: 0 auto 50px;
    text-align: center;
}

.section-heading>span {
    color: #d99c00;
    font-size: 0.88rem;
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.section-heading h2 {
    margin: 12px 0 18px;
    color: #111923;
    font-size: clamp(2rem, 4vw, 3.2rem);
    font-weight: 800;
}

.section-heading p {
    color: #687384;
    font-size: 1.05rem;
    line-height: 1.75;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 28px;
}

.service-card {
    display: flex;
    flex-direction: column;
    min-height: 100%;
    overflow: hidden;
    border: 1px solid #e3e7ed;
    border-radius: 24px;
    background: #ffffff;
    box-shadow: 0 16px 38px rgba(12, 23, 38, 0.08);
    transition: transform 0.3s cubic-bezier(.2, .8, .2, 1), box-shadow 0.3s ease, border-color 0.3s ease;
}

.service-card:hover {
    transform: translateY(-8px);
    border-color: rgba(255, 196, 0, 0.7);
    box-shadow: 0 22px 50px rgba(12, 23, 38, 0.14);
}

.service-image-wrap {
    height: 210px;
    overflow: hidden;
}

.service-image-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.service-card:hover .service-image-wrap img {
    transform: scale(1.06);
}

.service-icon {
    width: 74px;
    height: 74px;
    display: grid;
    place-items: center;
    margin: -36px 24px 0;
    border-radius: 50%;
    background: #111923;
    color: #ffc400;
    font-size: 1.8rem;
    border: 4px solid #ffffff;
    transition: transform 0.25s ease, background-color 0.25s ease;
}

.service-card:hover .service-icon {
    transform: rotate(-5deg) scale(1.06);
    background: #ffc400;
    color: #111923;
}

.service-card-content {
    display: flex;
    flex: 1;
    flex-direction: column;
    padding: 24px 28px 30px;
}

.service-card h3 {
    margin-bottom: 14px;
    color: #111923;
    font-size: 1.25rem;
    font-weight: 800;
}

.service-card p {
    flex: 1;
    margin-bottom: 24px;
    color: #687384;
    line-height: 1.72;
}

.service-card a {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    color: #bb8500;
    font-weight: 800;
    text-decoration: none;
    transition: color 0.2s ease;
}

.service-card a:hover {
    color: #256fe8;
}

.service-card a i {
    transition: transform 0.2s ease;
}

.service-card a:hover i {
    transform: translateX(5px);
}

.service-benefits {
    padding: 70px 0;
    background: linear-gradient(135deg, #0c1118 0%, #121b27 100%);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 30px;
}

.benefits-grid article {
    padding: 25px;
    color: #ffffff;
    text-align: center;
}

.benefits-grid i {
    margin-bottom: 18px;
    color: #ffc400;
    font-size: 2.4rem;
}

.benefits-grid h3 {
    margin-bottom: 10px;
    font-size: 1.3rem;
    font-weight: 800;
}

.benefits-grid p {
    margin: 0;
    color: rgba(255, 255, 255, 0.73);
}

.services-contact {
    padding: 75px 0;
    background: linear-gradient(120deg, #fbc000 0%, #ffd968 55%, #ffe9a6 100%);
}

.services-contact-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.services-contact span {
    color: #604900;
    font-size: 0.87rem;
    font-weight: 800;
    letter-spacing: 1.6px;
    text-transform: uppercase;
}

.services-contact h2 {
    margin: 8px 0 12px;
    color: #111923;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
}

.services-contact p {
    max-width: 650px;
    margin: 0;
    color: #4c421e;
}

.services-contact-actions {
    display: flex;
    flex-direction: column;
    flex-shrink: 0;
    gap: 13px;
}

.service-call-button,
.service-whatsapp-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-width: 260px;
    padding: 14px 22px;
    border-radius: 999px;
    font-weight: 800;
    text-decoration: none;
    transition: transform 0.2s ease;
}

.service-call-button {
    background: #111923;
    color: #ffffff;
}

.service-whatsapp-button {
    background: #25d366;
    color: #ffffff;
}

.service-call-button:hover,
.service-whatsapp-button:hover {
    transform: translateY(-4px) scale(1.01);
    color: #ffffff;
}

@keyframes heroGlow {
    from {
        transform: translate3d(0, 0, 0) scale(1);
    }

    to {
        transform: translate3d(-20px, 16px, 0) scale(1.08);
    }
}

@media (max-width: 992px) {
    .services-grid,
    .benefits-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 768px) {
    .services-hero {
        min-height: 460px;
    }

    .services-hero-content {
        padding-top: 60px;
        padding-bottom: 60px;
    }

    .services-grid,
    .benefits-grid {
        grid-template-columns: 1fr;
    }

    .services-contact-content {
        flex-direction: column;
        align-items: flex-start;
    }

    .services-contact-actions {
        width: 100%;
    }

    .service-call-button,
    .service-whatsapp-button {
        width: 100%;
        min-width: 0;
    }
}

@media (max-width: 576px) {
    .services-hero {
        min-height: 420px;
    }

    .services-hero h1 {
        font-size: 2.2rem;
    }

    .services-hero p {
        font-size: 1rem;
    }

    .services-main-button {
        width: 100%;
        justify-content: center;
    }

    .service-card {
        border-radius: 18px;
    }

    .service-image-wrap {
        height: 180px;
    }

    .service-card-content {
        padding: 20px 22px 24px;
    }
}
