/* ---- SERVIZI STYLES ---- */

/* ── Services V7 (Refined Minimalism) ────── */
.serv-hero-minimal {
    padding: 120px 0 80px;
    background-size: cover;
    background-position: center;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: var(--white);
    min-height: 50vh;
}

.serv-hero-minimal::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.7));
    z-index: 1;
}

.serv-hero-minimal .container {
    position: relative;
    z-index: 5;
    max-width: 800px;
}

.services-grid-minimal {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    padding: 60px 0 40px;
}

.service-card-minimal {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid var(--border-light);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    display: flex;
    flex-direction: column;
}

.service-card-minimal:hover {
    transform: translateY(-8px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.06);
    border-color: var(--gold-light);
}

.service-card-min-img {
    height: 240px;
    overflow: hidden;
}

.service-card-min-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1s ease;
}

.service-card-minimal:hover .service-card-min-img img {
    transform: scale(1.05);
}

.service-card-min-body {
    padding: 35px;
    text-align: center;
}

.service-card-min-body h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--dark);
}

.service-card-min-body p {
    font-size: 0.95rem;
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 25px;
}

@media (max-width: 991px) {
    .services-grid-minimal {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .services-grid-minimal {
        grid-template-columns: 1fr;
    }
}


/* -------------------------------------- */

/* ── Service Block (numbered, servizi page) ────── */
.service-block {
    padding: 80px 0;
}

.service-block:nth-child(even) .grid-2 {
    direction: rtl;
}

.service-block:nth-child(even) .grid-2>* {
    direction: ltr;
}

.service-block .service-number {
    font-family: var(--font-serif);
    font-size: 4rem;
    font-weight: 300;
    color: var(--gold-bg);
    line-height: 1;
    margin-bottom: 8px;
}

.service-block h2 {
    margin-bottom: 16px;
}

.service-block p {
    margin-bottom: 20px;
}

.service-block img {
    width: 100%;
    height: 380px;
    object-fit: cover;
    border-radius: var(--radius-lg);
}

.service-bullets {
    margin-bottom: 24px;
}

.service-bullet {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 6px 0;
    font-size: 0.92rem;
    font-weight: 500;
}

.service-bullet::before {
    content: '';
    width: 28px;
    height: 2px;
    background: var(--gold);
    flex-shrink: 0;
}


/* -------------------------------------- */

