/* =========================
   SERVICES PAGE ONLY
   (SAFE REWRITE - NO GLOBAL BREAKS)
========================= */


/* =========================
   PAGE BACKGROUNDS
========================= */

.services-section {
    background: #ffffff;
}

.how,
.services-trust {
    background: #f8fafc;
}

.why-services {
    background: #ffffff;
}


/* =========================
   HERO BADGE
========================= */

.services-hero .badge {
    display: inline-block;

    background: #e6fffb;
    color: #0f766e;

    padding: 6px 12px;
    border-radius: 10px;

    font-weight: 600;
    font-size: 0.85rem;

    margin-bottom: 16px;
}


/* =========================
   HERO BUTTON FIX (IMPORTANT)
========================= */

.services-hero .hero-actions {
    display: flex;
    gap: 12px;
    align-items: center;
    flex-wrap: wrap;
}

.services-hero .hero-actions .btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    white-space: nowrap;
}


/* =========================
   SECTION TITLE
========================= */

.section-title {
    text-align: center;
    font-size: 2.2rem;
    font-weight: 800;

    margin-bottom: 50px;

    color: #0f172a;
    letter-spacing: -0.5px;
}


/* =========================
   SERVICES GRID
========================= */

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
}

.service-card {
    background: #ffffff;
    padding: 26px;

    border-radius: 18px;

    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.06);

    transition: 0.25s ease;
}

.service-card:hover {
    transform: translateY(-5px);

    box-shadow: 0 18px 45px rgba(15, 23, 42, 0.12);
}

.service-card h3 {
    font-size: 1.1rem;

    margin-bottom: 10px;

    color: #0f172a;
}

.service-card p {
    color: #64748b;
    line-height: 1.6;
}


/* =========================
   RESPONSIVE TABLET
========================= */

@media (max-width: 960px) {

    .services-grid {
        grid-template-columns: 1fr 1fr;
    }

    .how-grid {
        grid-template-columns: 1fr;
    }

    .services-trust .trust-grid {
        grid-template-columns: 1fr 1fr;
    }
}


/* =========================
   RESPONSIVE MOBILE
========================= */

@media (max-width: 600px) {

    .services-grid {
        grid-template-columns: 1fr;
    }

    .section-title {
        font-size: 1.8rem;
    }

    /* HERO FIX FOR MOBILE */
    .services-hero .hero-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .services-hero .hero-actions .btn {
        width: 100%;
    }
}