/* ==========================
   SERVICES PAGE
========================== */

.services-card {
    background: rgba(255,255,255,.04);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255,255,255,.08);
    width: 85%;
    margin: 25px auto;
    padding: 45px;
    border-radius: 35px;
    text-align: center;
    box-shadow: 0 10px 25px rgba(0,0,0,.18);
}


    /* ==========================
   TITLE
========================== */

    .services-card h1 {
        color: white;
        font-size: 38px;
        font-weight: 900;
        margin-bottom: 15px;
        text-shadow: 0 0 8px rgba(168,216,255,.85), 0 0 18px rgba(168,216,255,.55), 0 0 30px rgba(120,190,255,.35);
    }


/* ==========================
   INTRO
========================== */

.services-intro {
    color: #CFEFFF;
    font-size: 20px;
    font-weight: 800;
    margin-bottom: 35px;
}


/* ==========================
   GRID
========================== */

.services-grid {
    display: grid;
    grid-template-columns: repeat(2,1fr);
    gap: 22px;
    margin-top: 35px;
    align-items: start;
}


/* ==========================
   SERVICE BOX
========================== */

.service-box {
    background: #FFF8EE;
    border-radius: 30px;
    padding: 24px;
    min-height: 230px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    box-shadow: 0 8px 18px rgba(0,0,0,.16);
    transition: .3s;
}

    .service-box:hover {
        transform: translateY(-4px);
        box-shadow: 0 0 18px rgba(248,165,27,.35), 0 10px 25px rgba(0,0,0,.18);
    }


    /* ==========================
   SERVICE TITLE
========================== */

    .service-box h2 {
        color: #1C3F82;
        font-size: 23px;
        font-weight: 900;
        margin: 0 0 14px;
    }


    /* ==========================
   BODY TEXT
========================== */

    .service-box p {
        color: #35548c;
        font-size: 17px;
        font-weight: 700;
        line-height: 1.5;
        margin: 6px 0;
    }


/* ==========================
   PRICE
========================== */

.price {
    color: #f8a51b !important;
    font-size: 23px !important;
    font-weight: 900 !important;
    margin: 8px 0 !important;
    text-shadow: 0 0 8px rgba(248,165,27,.25);
}


/* ==========================
   EXTRA PET NOTE
========================== */

.note {
    font-size: 15px !important;
    color: #6b7fb3 !important;
    font-style: italic;
    margin-top: 10px !important;
}


/* ==========================
   CONTACT BUTTON
========================== */

.contact-button {
    margin-top: 35px;
}


/* ==========================
   MOBILE
========================== */

@media(max-width:768px) {

    .services-grid {
        grid-template-columns: 1fr;
    }

    .services-card {
        width: 92%;
        padding: 25px;
    }
}
