/* ===================================
   PAGE HERO
=================================== */

.page-hero {
    background: var(--primary);
    padding: 0.7rem 3rem;
    color: #fff;
}

.page-hero h1 {
    font-size: 1.4rem;
    font-weight: 600;
}


/* ==============================
   SERVICES PAGE
================================= */

.page-title {
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 2.5rem;
}

/* GRID */
.services-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

/* CARD */
.service-card {
    background: #fff;
    padding: 2rem;
    border: 1px solid #e5e7eb;
    border-radius: 14px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.06);
    position: relative;
    overflow: hidden;
    transition: 0.3s ease;
    min-width: 0;
}

.service-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.08);
    /* box-shadow: 0 12px 28px rgba(0,0,0,0.06); */
    border-color: var(--accent);

}


/* subtle animated top line */
.service-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    height: 3px;
    width: 100%;
    background: var(--accent);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

.service-card:hover::before {
    transform: scaleX(1);
}



.service-card h3 {
    font-size: 1.35rem;
    margin-bottom: 1rem;
    color: var(--primary);
}

.service-card p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--gray);
}

/* HIGHLIGHT STRIP */
.service-highlight {
    background: var(--primary);
    padding: 1.2rem 0;
}

.service-highlight h2 {
    text-align: center;
    color: #fff !important;
    font-size: 1rem;
    font-weight: 500;
    margin-bottom: 0rem !important;
}

/* ==============================
   RESPONSIVE
================================= */

@media (max-width: 992px) {

    .services-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

}

@media (max-width: 768px) {

    .page-title {
        font-size: 1.6rem;
        margin-bottom: 2rem;
    }

    .service-card {
        padding: 1.3rem;
        border-radius: 12px;
    }

    .service-card h3 {
        font-size: 1.15rem;
    }

    .service-card p {
        font-size: 0.9rem;
    }

    .service-highlight {
        padding: 2rem 1rem;
    }

    .service-highlight h2 {
        font-size: 1.1rem;
    }

}
