
/* ======================= */
/* SERVICES SECTION        */
/* ======================= */
.services-section {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    padding: 40px 20px;
    text-align: center;
}

.services-section h2 {
    font-size: 38px;
    margin-bottom: 30px;
    color: white;
    text-align: center;
}

.services-container {
    display: flex;
    gap: 25px;
    flex-wrap: wrap;
    justify-content: center;
}

/* ======================= */
/* SERVICE BOXES           */
/* ======================= */
.service-box {
    background: var(--brand-yellow);
    color: var(--brand-green);
    border-radius: 20px;
    padding: 20px 15px;
    max-width: 250px;
    flex: 1 1 200px;
    text-align: center;
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
    display: flex;
    flex-direction: column;
    align-items: center;

    /* ======================= */
    /* HOVER EFFECT            */
    /* ======================= */
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-box:hover {
    transform: translateY(-8px) scale(1.03); /* lifts and slightly enlarges */
    box-shadow: 0 12px 25px rgba(0,0,0,0.25);
    cursor: pointer;
}

.service-box i {
    font-size: 32px;
    margin-bottom: 10px;
    color: var(--brand-green);
}

.service-box h3 {
    font-size: 20px;
    margin-bottom: 8px;
}

.service-box p {
    font-size: 14px;
    margin-bottom: 8px;
}

/* ======================= */
/* PREMIUM PRICE STYLE      */
/* ======================= */

/* FRIENDLIER PREMIUM PRICE STYLE */
.service-price {
    margin-top: auto;
    padding-top: 16px;
    text-align: center;
    width: 100%;
    border-top: 1px solid rgba(0,0,0,0.08);  /* softer divider */
}

.service-price .amount {
    display: block;
    font-size: 32px;      /* slightly smaller */
    font-weight: 700;     /* less bold */
    color: #4493d5;
    letter-spacing: 0.5px;
}

.service-price .per-hour {
    display: block;
    font-size: 14px;
    font-weight: 400;     /* lighter = friendlier */
    color: #4493d5;
    margin-top: 4px;
    letter-spacing: 0.5px;
    text-transform: none; /* remove forced styling */
}
