/* ==============================
   Pagina Hub Trattamenti Roma EUR
============================== */

.treatments-hub-section-label {
    display: inline-block;
    margin-bottom: 16px;
    font-family: var(--title-font);
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--theme-color);
}

.treatments-hub-hero-area {
    position: relative;
    overflow: hidden;
}

.treatments-hub-hero-content .sec-text,
.treatments-hub-list-area .sec-text,
.treatments-hub-info-area .sec-text {
    font-size: 18px;
    line-height: 1.75;
    color: var(--body-color);
}

.treatments-hub-hero-question {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 12px;
}

.treatments-hub-hero-buttons {
    display: flex;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
}

.treatments-hub-whatsapp-btn {
    background: var(--theme-color);
    color: var(--title-color);
}

.treatments-hub-whatsapp-btn:hover {
    color: var(--title-color);
}

.treatments-hub-hero-trust {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}

.treatments-hub-hero-trust-item {
    display: flex;
    align-items: center;
    gap: 9px;
    padding: 13px 15px;
    border-radius: 50px;
    background: #ffffff;
    font-size: 15px;
    font-weight: 500;
    color: var(--body-color);
}

.treatments-hub-hero-trust-item i {
    width: 24px;
    height: 24px;
    min-width: 24px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--theme-color);
    color: var(--title-color);
    font-size: 11px;
}

.treatments-hub-hero-image {
    position: relative;
    border-radius: 34px;
    overflow: hidden;
}

.treatments-hub-hero-image img {
    width: 100%;
    height: 680px;
    object-fit: cover;
    display: block;
}

.treatments-hub-hero-floating-card {
    position: absolute;
    left: 28px;
    right: 28px;
    bottom: 28px;
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 24px 26px;
    border-radius: 24px;
    background: #ffffff;
    box-shadow: 0 18px 45px rgba(10, 12, 0, 0.16);
}

.treatments-hub-hero-floating-card i {
    width: 54px;
    height: 54px;
    min-width: 54px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--theme-color);
    color: var(--title-color);
    font-size: 20px;
}

.treatments-hub-hero-floating-card strong {
    display: block;
    font-family: var(--title-font);
    font-size: 18px;
    font-weight: 700;
    color: var(--title-color);
}

.treatments-hub-hero-floating-card span {
    display: block;
    font-size: 15px;
    color: var(--body-color);
}

/* Griglia trattamenti */
.treatments-hub-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}

.treatments-hub-card {
    height: 100%;
    padding: 38px 30px;
    border-radius: 28px;
    background: var(--smoke-color);
    transition: all 0.35s ease;
}

.treatments-hub-card:hover {
    transform: translateY(-8px);
}

.treatments-hub-card-icon {
    width: 64px;
    height: 64px;
    margin-bottom: 34px;
    border-radius: 50%;
    background: var(--theme-color);
    display: flex;
    align-items: center;
    justify-content: center;
}

.treatments-hub-card-icon i {
    color: var(--title-color);
    font-size: 24px;
}

.treatments-hub-card h3 {
    font-size: 23px;
    font-weight: 700;
    margin-bottom: 12px;
}

.treatments-hub-card p {
    font-size: 16px;
    line-height: 1.7;
    color: var(--body-color);
    margin-bottom: 26px;
}

.treatments-hub-card .link-btn {
    margin-top: auto;
    font-size: 13px;
}

/* Info */
.treatments-hub-info-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
}

.treatments-hub-info-card {
    height: 100%;
    padding: 34px 28px;
    border-radius: 26px;
    background: #ffffff;
    transition: all 0.35s ease;
}

.treatments-hub-info-card:hover {
    transform: translateY(-6px);
}

.treatments-hub-info-card i {
    display: inline-flex;
    margin-bottom: 28px;
    color: var(--theme-color);
    font-size: 42px;
}

.treatments-hub-info-card h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 10px;
}

.treatments-hub-info-card p {
    font-size: 16px;
    line-height: 1.65;
    margin-bottom: 0;
    color: var(--body-color);
}

/* FAQ */
.treatments-hub-faq-accordion .accordion-card.style2 {
    background: var(--smoke-color);
    border-radius: 22px;
    margin-bottom: 14px;
    overflow: hidden;
    border: 1px solid rgba(10, 12, 0, 0.06);
}

.treatments-hub-faq-accordion .accordion-card.style2 .accordion-button {
    background: var(--smoke-color);
    color: var(--title-color);
    font-family: var(--title-font);
    font-size: 20px;
    font-weight: 600;
    line-height: 1.45;
    padding: 26px 72px 26px 30px;
    border-radius: 0;
    box-shadow: none;
}

.treatments-hub-faq-accordion .accordion-card.style2 .accordion-button::after {
    width: 38px;
    height: 38px;
    min-width: 38px;
    border-radius: 50%;
    background-color: var(--theme-color);
    background-position: center;
    background-size: 14px;
    position: absolute;
    right: 24px;
}

.treatments-hub-faq-accordion .accordion-body {
    padding: 0 30px 28px 30px;
}

.treatments-hub-faq-accordion .faq-text {
    margin: 0;
    font-size: 18px;
    line-height: 1.75;
}

/* CTA finale */
.treatments-hub-final-cta-box {
    padding: 58px 54px;
    border-radius: 34px;
    background: linear-gradient(135deg, #cc3366 0%, #cc3366 45%, #28c7c7 100%);
    position: relative;
    overflow: hidden;
}

.treatments-hub-final-cta-box::before {
    content: "";
    position: absolute;
    top: -120px;
    right: -120px;
    width: 320px;
    height: 320px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.16);
}

.treatments-hub-final-cta-box > .row {
    position: relative;
    z-index: 2;
}

.treatments-hub-final-cta-box h2 {
    color: #ffffff;
    font-size: 44px;
    font-weight: 700;
    margin-bottom: 18px;
}

.treatments-hub-final-cta-box p {
    max-width: 760px;
    color: rgba(255, 255, 255, 0.88);
    font-size: 18px;
    line-height: 1.75;
    margin-bottom: 0;
}

.treatments-hub-final-buttons {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.treatments-hub-final-dark-btn {
    background: var(--title-color);
    color: #ffffff;
}

.treatments-hub-final-dark-btn:hover {
    color: #ffffff;
}

/* Responsive */
@media (max-width: 1199px) {
    .treatments-hub-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .treatments-hub-hero-image img {
        height: 580px;
    }
}

@media (max-width: 991px) {
    .treatments-hub-hero-image img {
        height: auto;
    }

    .treatments-hub-final-buttons {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .treatments-hub-final-cta-box h2 {
        font-size: 34px;
    }
}

@media (max-width: 767px) {
    .treatments-hub-hero-trust,
    .treatments-hub-grid,
    .treatments-hub-info-grid {
        grid-template-columns: 1fr;
    }

    .treatments-hub-hero-buttons,
    .treatments-hub-final-buttons {
        flex-direction: column;
        align-items: stretch;
    }

    .treatments-hub-hero-buttons .btn,
    .treatments-hub-final-buttons .btn {
        width: 100%;
    }
}

@media (max-width: 575px) {
    .treatments-hub-hero-content .sec-text,
    .treatments-hub-list-area .sec-text,
    .treatments-hub-info-area .sec-text {
        font-size: 16px;
    }

    .treatments-hub-hero-question {
        font-size: 23px;
    }

    .treatments-hub-hero-image {
        border-radius: 24px;
    }

    .treatments-hub-hero-floating-card {
        position: relative;
        left: auto;
        right: auto;
        bottom: auto;
        margin-top: 14px;
        border-radius: 22px;
    }

    .treatments-hub-card {
        padding: 32px 24px;
    }

    .treatments-hub-card h3 {
        font-size: 21px;
    }

    .treatments-hub-faq-accordion .accordion-card.style2 .accordion-button {
        font-size: 17px;
        padding: 22px 62px 22px 22px;
    }

    .treatments-hub-faq-accordion .accordion-body {
        padding: 0 22px 24px 22px;
    }

    .treatments-hub-faq-accordion .faq-text {
        font-size: 16px;
    }

    .treatments-hub-final-cta-box {
        padding: 38px 24px;
        border-radius: 24px;
    }

    .treatments-hub-final-cta-box h2 {
        font-size: 28px;
    }

    .treatments-hub-final-cta-box p {
        font-size: 16px;
    }
}