/* ===== PAGINA SECONDARIA: RISTRUTTURAZIONE BAGNO VICINO A ME ===== */

.bath-hero {
    padding: 150px 0 90px;
    background:
        linear-gradient(135deg, rgba(26, 46, 64, 0.96), rgba(42, 64, 85, 0.96)),
        linear-gradient(180deg, #1A2E40 0%, #2a4055 100%);
    color: white;
    position: relative;
    z-index: 1;
}

.bath-hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 80px;
    background: linear-gradient(to top, #1A2E40, transparent);
    pointer-events: none;
    z-index: 2;
    opacity: 0.4;
}

.bath-hero__grid {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
    gap: 56px;
    align-items: center;
}

.bath-hero h1 {
    font-size: 4rem;
    line-height: 1.08;
    color: white;
    margin-bottom: 24px;
    font-family: 'Playfair Display', serif;
}

.bath-hero__lead {
    font-size: 1.14rem;
    line-height: 1.8;
    color: rgba(255,255,255,0.86);
    max-width: 760px;
    margin-bottom: 32px;
}

.bath-hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-bottom: 32px;
}

.bath-hero__list {
    list-style: none;
    display: grid;
    gap: 14px;
    padding: 0;
    margin: 0;
}

.bath-hero__list li {
    display: flex;
    align-items: center;
    gap: 12px;
    color: rgba(255,255,255,0.92);
    font-size: 1rem;
}

.bath-hero__list i {
    color: var(--oro);
    flex-shrink: 0;
}

.bath-hero__image {
    border-radius: 28px;
    overflow: hidden;
    box-shadow: 22px 22px 0 rgba(230,126,34,0.28);
    min-height: 520px;
    background: rgba(255,255,255,0.08);
}

.bath-hero__image img {
    width: 100%;
    height: 100%;
    min-height: 520px;
    object-fit: cover;
}

.bath-intro {
    background: var(--sfondo);
    position: relative;
    z-index: 1;
}

.bath-intro::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 80px;
    background: linear-gradient(to bottom, var(--sfondo), transparent);
    pointer-events: none;
    z-index: 2;
    opacity: 0.4;
}

.bath-intro::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 80px;
    background: linear-gradient(to top, var(--sfondo), transparent);
    pointer-events: none;
    z-index: 2;
    opacity: 0.4;
}

.bath-intro__grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 28px;
}

.bath-intro__card {
    background: white;
    border: 1px solid var(--grigio);
    border-radius: 24px;
    padding: 32px 28px;
    transition: all 0.3s ease;
}

.bath-intro__card:hover {
    transform: translateY(-8px);
    border-color: var(--terracotta);
    box-shadow: 0 20px 40px rgba(26,46,64,0.08);
}

.bath-intro__card i {
    font-size: 1.8rem;
    color: var(--terracotta);
    margin-bottom: 18px;
}

.bath-intro__card h3 {
    font-size: 1.6rem;
    margin-bottom: 12px;
    font-family: 'Playfair Display', serif;
}

.bath-intro__card p {
    color: var(--testo-chiaro);
    font-size: 1rem;
}

.bath-services {
    background: white;
    position: relative;
    z-index: 1;
}

.bath-services::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 80px;
    background: linear-gradient(to bottom, white, transparent);
    pointer-events: none;
    z-index: 2;
    opacity: 0.4;
}

.bath-services::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 80px;
    background: linear-gradient(to top, white, transparent);
    pointer-events: none;
    z-index: 2;
    opacity: 0.4;
}

.bath-services__header {
    margin-bottom: 52px;
}

.bath-services__grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
}

.bath-service {
    border: 1px solid var(--grigio);
    border-radius: 24px;
    padding: 30px 26px;
    background: var(--sfondo);
    transition: all 0.3s ease;
}

.bath-service:hover {
    border-color: var(--terracotta);
    transform: translateY(-6px);
}

.bath-service h3 {
    font-size: 1.45rem;
    margin-bottom: 12px;
    font-family: 'Playfair Display', serif;
}

.bath-service p {
    color: var(--testo-chiaro);
}

.bath-process {
    background: linear-gradient(135deg, #f8f4ef 0%, #ffffff 100%);
    position: relative;
    z-index: 1;
}

.bath-process::before,
.bath-process::after {
    content: '';
    position: absolute;
    left: 0;
    width: 100%;
    height: 80px;
    background: linear-gradient(to bottom, #f8f4ef, transparent);
    pointer-events: none;
    z-index: 2;
    opacity: 0.4;
}
.bath-process::before {
    top: 0;
}
.bath-process::after {
    bottom: 0;
    background: linear-gradient(to top, #f8f4ef, transparent);
}

.bath-process__grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 24px;
}

.bath-step {
    background: white;
    border: 1px solid var(--grigio);
    border-radius: 24px;
    padding: 28px 24px;
    height: 100%;
}

.bath-step__num {
    display: inline-flex;
    width: 54px;
    height: 54px;
    border-radius: 50%;
    align-items: center;
    justify-content: center;
    background: var(--terracotta);
    color: white;
    font-weight: 700;
    margin-bottom: 18px;
}

.bath-step h3 {
    font-size: 1.35rem;
    margin-bottom: 10px;
    font-family: 'Playfair Display', serif;
}

.bath-step p {
    color: var(--testo-chiaro);
}

.bath-types {
    background: var(--blu);
    color: white;
    position: relative;
    z-index: 1;
}

.bath-types::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 80px;
    background: linear-gradient(to bottom, var(--blu), transparent);
    pointer-events: none;
    z-index: 2;
    opacity: 0.4;
}

.bath-types::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 80px;
    background: linear-gradient(to top, var(--blu), transparent);
    pointer-events: none;
    z-index: 2;
    opacity: 0.4;
}

.bath-types .section-title,
.bath-types .small-label,
.bath-types h2,
.bath-types h3 {
    color: white;
}

.bath-types__wrap {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 0.9fr);
    gap: 52px;
    align-items: center;
}

.bath-types__content p {
    color: rgba(255,255,255,0.82);
    font-size: 1.08rem;
    margin-bottom: 28px;
}

.bath-types__list {
    list-style: none;
    display: grid;
    gap: 14px;
    padding: 0;
    margin: 0;
}

.bath-types__list li {
    display: flex;
    align-items: center;
    gap: 12px;
    color: rgba(255,255,255,0.92);
}

.bath-types__list i {
    color: var(--oro);
    flex-shrink: 0;
}

.bath-types__image {
     margin-top: 40px;
    border-radius: 28px;
    overflow: hidden;
    box-shadow: 22px 22px 0 rgba(230,126,34,0.26);
    min-height: 460px;
    background: rgba(255,255,255,0.08);
}

.bath-types__image img {
    width: 100%;
    height: 100%;
    min-height: 460px;
    object-fit: cover;
}

.bath-faq {
    background:
        radial-gradient(circle at top center, rgba(255,255,255,0.10), transparent 42%),
        linear-gradient(180deg, #183149 0%, #1A2E40 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.bath-faq::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 80px;
    background: linear-gradient(to bottom, #1A2E40, transparent);
    pointer-events: none;
    z-index: 2;
    opacity: 0.4;
}

.bath-faq::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 80px;
    background: linear-gradient(to top, #1A2E40, transparent);
    pointer-events: none;
    z-index: 2;
    opacity: 0.4;
}

.bath-faq__header {
    margin-bottom: 40px;
}

.bath-faq__grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
    align-items: stretch;
}

.bath-faq__item {
    background: rgba(255,255,255,0.92);
    border: 1px solid rgba(255,255,255,0.28);
    border-radius: 28px;
    padding: 30px 30px;
    box-shadow:
        0 14px 34px rgba(8, 20, 32, 0.16),
        0 1px 0 rgba(255,255,255,0.55) inset;
    backdrop-filter: blur(8px);
    transition:
        transform 0.28s ease,
        box-shadow 0.28s ease,
        border-color 0.28s ease,
        background 0.28s ease;
}

.bath-faq__item:hover {
    transform: translateY(-4px);
    box-shadow:
        0 22px 44px rgba(8, 20, 32, 0.20),
        0 1px 0 rgba(255,255,255,0.65) inset;
    border-color: rgba(230,126,34,0.22);
    background: rgba(255,255,255,0.97);
}

.bath-faq__item h3 {
    font-size: 1.22rem;
    line-height: 1.35;
    margin-bottom: 12px;
    color: #1A2E40;
    font-family: 'Playfair Display', serif;
}

.bath-faq__item p {
    color: #4c6785;
    line-height: 1.7;
    margin: 0;
}

.bath-content-seo {
    background: white;
}

.bath-content-seo__text {
    max-width: 980px;
    display: grid;
    gap: 18px;
}

.bath-content-seo__text p {
    color: var(--testo-chiaro);
    font-size: 1.08rem;
    line-height: 1.9;
}

.bath-contact {
    border-top: 1px solid var(--grigio);
    position: relative;
    z-index: 1;
}

.bath-contact::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 80px;
    background: linear-gradient(to bottom, white, transparent);
    pointer-events: none;
    z-index: 2;
    opacity: 0.4;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1100px) {
    .bath-hero__grid,
    .bath-types__wrap {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .bath-process__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .bath-services__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .bath-intro__grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 900px) {
    .bath-hero {
        padding: 128px 0 72px;
    }

    .bath-hero h1 {
        font-size: 2.8rem;
    }

    .bath-faq__grid,
    .bath-services__grid,
    .bath-process__grid {
        grid-template-columns: 1fr;
    }

    .bath-hero__image,
    .bath-hero__image img,
    .bath-types__image,
    .bath-types__image img {
        min-height: 360px;
    }
}

@media (max-width: 768px) {
    .bath-hero {
        padding: 116px 0 64px;
    }

    .bath-hero h1 {
        font-size: 2.2rem;
        line-height: 1.12;
    }

    .bath-hero__lead {
        font-size: 1rem;
        line-height: 1.75;
    }

    .bath-hero__actions {
        display: grid;
        grid-template-columns: 1fr;
    }

    .bath-hero__actions .btn {
        width: 100%;
        text-align: center;
    }

   .bath-intro__card,
.bath-service,
.bath-step,
.bath-faq__item {
    padding: 22px 18px;
}
}

@media (max-width: 576px) {
    .bath-hero {
        padding: 104px 0 56px;
    }

    .bath-hero h1 {
        font-size: 1.82rem;
    }

    .bath-hero__image,
    .bath-hero__image img,
    .bath-types__image,
    .bath-types__image img {
        min-height: 280px;
    }

    .bath-intro__card h3,
    .bath-service h3 {
        font-size: 1.3rem;
    }

    .bath-step h3,
    .bath-faq__item h3 {
        font-size: 1.2rem;
    }

    .bath-content-seo__text p {
        font-size: 1rem;
        line-height: 1.8;
    }
    .bath-faq__grid {
    gap: 16px;
}

.bath-faq__item {
    border-radius: 22px;
}
}
