.services-page {
    margin-left: 250px;
    width: calc(100% - 250px);
}

.services-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 40px 20px;
}

/* HERO */

.services-hero {
    text-align: center;
    padding: 60px 20px 30px;
}

.services-hero h1 {
    font-family: 'CinzelCustom', serif;
    color: #B09E80;
}

.services-intro {
    max-width: 700px;
    margin: 10px auto;
}

/* ================================
   CARDS
================================ */

.service-card {
    position: relative;
    overflow: hidden;

    background: #f4f4f4;
    border-radius: 12px;
    padding: 26px;
    margin-bottom: 30px;

    box-shadow: 0 14px 30px rgba(0,0,0,0.08);
    transition: transform 0.25s ease, box-shadow 0.25s ease;

    display: flex;
    flex-direction: column;
    min-height: 200px;
}

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.12);
}

.service-card h3,
.service-description,
.service-note,
.card-footer {
    max-width: 55%;
}

.service-card h3 {
    font-family: 'CinzelCustom', serif;
    color: #B09E80;
}

.service-description {
    margin: 10px 0 15px;
}

.service-note {
    font-size: 0.85rem;
    color: #777;
    font-style: italic;
}

/* ================================
   FOOTER (price area)
================================ */

.card-footer {
    position: absolute;
    bottom: 18px;
    right: 42%;   /* allineato alla sfumatura */
    text-align: right;
}

.service-price {
    font-size: 0.9rem;
    color: #716551;
}

/* ================================
   IMAGE LAYER (RIGHT SIDE)
================================ */

.service-card-image {
    position: absolute;
    top: 0;
    right: 0;
    width: 42%;
    height: 100%;
    pointer-events: none;
    opacity: 0.9;
}

.service-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.service-card-image::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to left,
        rgba(244,244,244,0) 0%,
        rgba(244,244,244,0.65) 45%,
        rgba(244,244,244,1) 75%
    );
}

/* CONTENT ABOVE IMAGE */

.service-card > *:not(.service-card-image) {
    position: relative;
    z-index: 2;
}

/* ================================
   MOBILE
================================ */

@media (max-width: 768px) {
    .services-page {
        margin-left: 0;
        width: 100%;
    }

    .service-card-image {
        display: none;
    }

    .card-footer {
        position: static;
        margin-top: 12px;
        text-align: left;
    }
}
