/* * * * * * * * * * * * * * * * * *\
/*         SERVICES PAGE           *|
\* * * * * * * * * * * * * * * * * */

/* Category header */
.fm-category-header {
    padding: 1.25rem 0 0.75rem;
    border-bottom: 1px solid rgba(106, 138, 146, 0.2);
    margin-bottom: 1.5rem;
}

.fm-category-header h2 {
    margin-bottom: 0;
}

/* Prestation card */
.fm-prestation-card {
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid rgba(106, 138, 146, 0.2);
    transition: box-shadow 0.3s ease, transform 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.fm-prestation-card:hover {
    box-shadow: 0 10px 36px rgba(106, 138, 146, 0.2);
    transform: translateY(-4px);
}

.fm-prestation-img {
    height: 210px;
    overflow: hidden;
    flex-shrink: 0;
}

.fm-prestation-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
    display: block;
}

.fm-prestation-card:hover .fm-prestation-img img {
    transform: scale(1.06);
}

.fm-prestation-body {
    padding: 1.75rem;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.fm-prestation-badge {
    display: inline-block;
    font-family: "Montserrat", serif;
    font-size: 0.68rem;
    letter-spacing: 0.15rem;
    text-transform: uppercase;
    color: var(--fm-primary-color);
    background: rgba(106, 138, 146, 0.1);
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    margin-bottom: 0.75rem;
}

.fm-prestation-body h3 {
    font-size: 1.1rem;
    margin-bottom: 0.75rem;
}

.fm-prestation-body p {
    color: #666;
    font-size: 0.93rem;
    line-height: 1.7;
    flex: 1;
    margin-bottom: 1.25rem;
}

.fm-prestation-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding-top: 1.25rem;
    border-top: 1px solid rgba(106, 138, 146, 0.15);
    margin-top: auto;
}

.fm-prestation-price {
    font-family: "Montserrat", serif;
    font-weight: 700;
    font-size: 1.2rem;
    color: var(--fm-primary-color);
}

.fm-prestation-duration {
    font-size: 0.82rem;
    color: #999;
    margin-top: 0.15rem;
}

.fm-prestation-duration i {
    margin-right: 0.2rem;
}

/* Bullet list */
.fm-bullet-list {
    padding-left: 1.25rem;
    margin: 1rem 0 1.5rem;
    color: #555;
    line-height: 1.9;
}

.fm-bullet-list li {
    margin-bottom: 0.25rem;
}

/* Check list */
.fm-check-list {
    list-style: none;
    padding: 0;
    margin: 1rem 0 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    color: #444;
    line-height: 1.7;
}

.fm-check-list li {
    padding-left: 2rem;
    position: relative;
}

.fm-check-list li::before {
    content: "✔️";
    position: absolute;
    left: 0;
    font-size: 0.85rem;
    top: 0.1rem;
}

/* Tarif block */
.fm-tarif-block {
    background: rgba(106, 138, 146, 0.07);
    border: 1px solid rgba(106, 138, 146, 0.2);
    border-radius: 10px;
    padding: 2rem 2.5rem;
    margin: 2rem 0 3rem;
}

.fm-tarif-block h3 {
    margin-bottom: 0.75rem;
    font-size: 1.15rem;
}

.fm-tarif-block p {
    color: #555;
    margin-bottom: 0;
    line-height: 1.7;
}

.fm-price-tag {
    display: inline-flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 0.25rem;
}

.fm-price-amount {
    font-family: "Montserrat", serif;
    font-size: 2rem;
    font-weight: 700;
    color: var(--fm-primary-color);
    line-height: 1;
}

.fm-price-note {
    font-size: 0.8rem;
    color: #888;
    text-align: right;
}

/* Supplement footer (pack nutrition) */
.fm-prestation-footer-list {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
    padding-top: 1.25rem;
    border-top: 1px solid rgba(106, 138, 146, 0.15);
    margin-top: auto;
}

.fm-supplement-line {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.9rem;
    color: #555;
}

.fm-supplement-line strong {
    color: var(--fm-primary-color);
    font-family: "Montserrat", serif;
    font-weight: 700;
}
