/* ---MAIN STYLES--- */

.treatments01 {
    padding: 6vw;
}

.treatments01 .row {
    display: grid;
    gap: 6vw;
    justify-content: center;
    grid-template-columns: 1.5fr 1fr;
}

.treatments01 .row .item1 {
    display: flex;
    flex-direction: column;
    gap: 1vw;
    justify-content: center;
}

.treatments01 .row .item1 span {
    font-size: 1.2vw;
    color: var(--grey);
}

.treatments01 .row .item1 h1 {
    font-size: 2.5vw;
    font-weight: 700;
    color: var(--blue);
}

.treatments01 .row .item1 p {
    font-size: 1.2vw;
    
    color: var(--grey);
}

.treatments01 .media_item {
    position: relative;
    height: 35vw;
    overflow: hidden;
    border-radius: 1vw;
}

@media (max-width: 996px) {
    .treatments01 {
        padding: 0 6vw 12vw 6vw;
    }

    .treatments01 .row .item1 {
        align-items: center;
        text-align: center;
        gap: 3vw;
        order: 2;
    }

    .treatments01 .row {
        grid-template-columns: 1fr;
    }

    .treatments01 .row .item1 span {
        font-size: 4vw;
    }

    .treatments01 .row .item1 h1 {
        font-size: 6vw;
    }

    .treatments01 .row .item1 p {
        font-size: 4vw;
    }
    .treatments01 .media_item {
        height: 70vw;
        border-radius: 3vw;
    }
}



/* ---WHY CHOOSE STYLES */

.choose-section {
    padding: 0 6vw;
}

.choose-header {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.6vw;
    margin-bottom: 3vw;
}

.choose-title {
    width: 70%;
    font-size: 3vw;
    font-weight: 700;
    color: var(--blue);
}

.choose-subtitle {
    font-size: 1vw;
    color: var(--grey);
}

.choose-card {
    background-color: var(--blueLight2);
    border-radius: 16px;
    padding: 2vw;
    display: flex;
    flex-direction: column;
    gap: 1vw;
}

.choose-card-top {
    display: flex;
    align-items: center;
    gap: 1vw;
}

.choose-num {
    flex-shrink: 0;
    width: 2.2vw;
    height: 2.2vw;
    background: var(--blueLight);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75vw;
    font-weight: 700;
}

.choose-card-title {
    font-size: 1vw;
    font-weight: 700;
    color: var(--blue);
}

.choose-card-desc {
    font-size: 1vw;
    color: var(--grey);
}

.choose-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5vw;
}

@media (max-width: 996px) {
    .choose-section {
        padding: 12vw 6vw 0 6vw;
        overflow: hidden;
    }

    .choose-header {
        gap: 3vw;
        margin-bottom: 6vw;
    }

    .choose-label {
        font-size: 4vw;
    }

    .choose-title {
        font-size: 6vw;
    }

    .choose-subtitle {
        font-size: 4vw;
    }

    .choose-grid {
        display: none;
    }

    .choose-card {
        width: 90%;
        border-radius: 14px;
        padding: 20vw 10vw;
        gap: 3vw;
        height: 100%;
        border: .5vw solid var(--white)
    }

    .choose-card-top {
        gap: 3vw;
        align-items: flex-start;
    }

    .choose-num {
        width: 9vw;
        height: 9vw;
        font-size: 3.5vw;
        flex-shrink: 0;
    }

    .choose-card-title {
        font-size: 4vw;
    }

    .choose-card-desc {
        font-size: 4vw;
    }
}


/* ---BLOCK STYLES--- */

.block_section {
    padding: 6vw 6vw 0 6vw;
    display: flex;
    flex-direction: column;
    gap: 3vw;
}

.block_section .block_box {
    padding: 2vw;
    background-color: var(--blueLight2);
    border-radius: 16px;
    display: flex;
    flex-direction: column;
    gap: 2vw;
}

.block_section .title_box {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1vw;
}

.block_section .title_box h2 {
    width: 50%;
    font-size: 2vw;
    font-weight: 700;
    color: var(--blue);
    text-align: center;
}

.block_section .title_box p {
    width: 70%;
    text-align: center;
}

.block_section .cards_box {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5vw;
}

.block_section .card_item {
    width: calc(100% / 3 - 1.5vw);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1vw;
    padding: 1.5vw;
    border-radius: 1.5vw;
    background: #EEF5FD;
}

.block_section .media_box {
    position: relative;
    width: 100%;
    height: 15vw;
    border-radius: .75vw;
    overflow: hidden;
}

.block_section .info_box {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: .5vw;
}

.block_section .info_box h3 {
    font-size: 1.2vw;
    font-weight: 700;
    color: var(--blue);
    text-align: center;
}

.block_section .info_box p {
    text-align: center;
}

@media (max-width: 996px) {
    .block_section {
        padding: 12vw 6vw;
    }

    .block_section .block_box {
        padding: 5vw;
        gap: 5vw;
    }

    .block_section .title_box {
        gap: 3vw;
    }

    .block_section .title_box h2 {
        width: 100%;
        font-size: 6vw;
    }

    .block_section .title_box p {
        width: 100%;
        font-size: 4vw;
    }

    .block_section .cards_box {
        display: flex;
        flex-direction: column;
        gap: 6vw;
    }

    .block_section .card_item {
        width: 100%;
        padding: 3vw;
        border-radius: 3vw;
        gap: 5vw;
    }

    .block_section .media_box {
        height: 60vw;
        border-radius: 3vw;
    }

    .block_section .info_box {
        gap: 1.5vw;
    }

    .block_section .info_box h3 {
        font-size: 4vw;
    }

    .block_section .info_box p {
        font-size: 4vw;
    }
}



/* ---TREATMENTS 03 STYLES--- */

.treatments03 {
    padding: 6vw;
}

.treatments03 .row {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    justify-content: center;
    gap: 3vw;
}

.treatments03 .row.reverse {
    grid-template-columns: 1.5fr 1fr;
}

.treatments03 .row .item1 {
    display: grid;
    align-content: center;
}

.treatments03 .row.reverse .item1 {
    order: 2;
}

.treatments03 .media_item {
    position: relative;
    height: 30vw;
    overflow: hidden;
}

.treatments03 .row .item2 {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: .5vw;
}

.treatments03 .row .item2 span {
    font-size: 1.2vw;
    color: var(--grey);
}

.treatments03 .row .item2 h2,
.treatments03 .row .item2 h3 {
    width: 70%;
    font-size: 2.5vw;
    font-weight: 700;
    color: var(--blue);
}

.treatments03 .row .item2 p {
    font-size: 1.2vw;
    
    color: var(--grey);
}

.treatments03 .row .list {
    display: flex;
    flex-direction: column;
    gap: .3vw;
}

.treatments03 .row .item1 img {
    border-radius: 20px;
}

@media (max-width: 996px) {
    .treatments03 {
        padding: 12vw 6vw;
        background: var(--blueLight2);
    }

    .treatments03 .row,
    .treatments03 .row.reverse {
        grid-template-columns: 1fr;
    }

    .treatments03 .row .item1 {
        display: grid;
        align-content: center;
    }

    .treatments03 .row.reverse .item1 {
        order: 1;
    }

    .treatments03 .media_item {
        position: relative;
        height: 70vw;
    }

    .treatments03 .row .item1 {
        order: 1;
    }

    .treatments03 .row .item2 {
        align-items: center;
        text-align: center;
        order: 2;
        gap: 3vw;
    }

    .treatments03 .row .item2 span {
        font-size: 4vw;
    }

    .treatments03 .row .item2 h2 {
        width: 100%;
        font-size: 6vw;
    }
    .treatments03 .row .item2 h2,
    .treatments03 .row .item2 h3 {
        width: 100%;
        font-size: 6vw;
    }
    .treatments03 .row .item2 p {
        font-size: 4vw;
    }
}



/* ---TREATMENTS06 STYLES--- */

.treatments06 {
    padding: 0 6vw;
}

.treatments06 .row {
    display: flex;
    flex-direction: column;
    gap: 4vw;
}

.treatments06 .row .item1 {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1vw;
}

.treatments06 .row .item1 h2 {
    font-size: 3vw;
    font-weight: 700;
    color: var(--blue);
}

.treatments06 .row .item1 p {
    font-size: 1.2vw;
    
    color: var(--grey);
    max-width: 60%;
}

.treatments06 .row .item2 {
    display: grid;
    grid-template-columns: 1.2fr 1.8fr;
    gap: 2vw;
}

.treatments06 .row .item2 img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
}

.treatments06 .row .item2>div {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2vw;
}

.treatments06 .row .item2>div>div {
    background-color: var(--blueLight2);
    border-radius: 15px;
    padding: 3vw;
    display: flex;
    flex-direction: column;
    gap: 1vw;
    justify-content: center;
}

.treatments06 .row .item2>div>div:nth-child(3) {
    grid-column: 1 / -1;
}

.treatments06 .row .item2 .num {
    display: flex;
    align-items: center;
    gap: 1vw;
}

.treatments06 .row .item2 .num p {
    background-color: var(--blueLight, #0076ff);
    width: 3vw;
    height: 3vw;
    border-radius: 50%;
    display: grid;
    place-items: center;
    font-size: 1.1vw;
    color: var(--white, #fff);
    font-weight: 600;
}

.treatments06 .row .item2 .num b {
    font-size: 1.2vw;
    color: var(--blue);
}

.treatments06 .row .item2>div>div>p {
    font-size: 1.1vw;
    
    color: var(--grey);
}

@media (max-width: 996px) {

    .treatments06 {
        padding: 12vw 6vw;
    }

    .treatments06 .row .item1 {
        gap: 3vw;
    }

    .treatments06 .row .item1 h2 {
        font-size: 6vw;
    }

    .treatments06 .row .item1 p {
        font-size: 4vw;
        max-width: 100%;
    }

    .treatments06 .row .item2 {
        grid-template-columns: 1fr;
        gap: 6vw;
    }

    .treatments06 .row .item2 img {
        border-radius: 15px;
    }

    .treatments06 .row .item2>div {
        grid-template-columns: 1fr;
        gap: 3vw;
    }

    .treatments06 .row .item2>div>div {
        align-items: center;
        text-align: center;
        padding: 6vw;
        gap: 3vw;
        border-radius: 15px;
    }

    .treatments06 .row .item2 .num {
        gap: 3vw;
    }

    .treatments06 .row .item2 .num p {
        width: 8vw;
        height: 8vw;
        font-size: 3vw;
    }

    .treatments06 .row .item2 .num b {
        font-size: 4vw;
    }

    .treatments06 .row .item2>div>div>p {
        font-size: 4vw;
    }
}


/* ---CONTACT STYLES--- */

.contact-section {
    padding: 0 6vw 0vw 6vw;
}

.contact-header {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.8vw;
    margin-bottom: 3vw;
}

.contact-label {
    font-size: 1vw;
    color: var(--grey);
    
}

.contact-title {
    font-size: 3vw;
    font-weight: 700;
    color: var(--blue);
}

.contact-subtitle {
    font-size: 1vw;
    color: var(--grey);
    line-height: 1.7;
}

.contact-locations {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5vw;
}

.location-card {
    background-color: var(--blueLight2);
    border-radius: 18px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.location-card-header {
    display: flex;
    align-items: center;
    gap: 0.8vw;
    padding: 1.2vw 1.5vw;
}

.location-pin {
    flex-shrink: 0;
    width: 2.2vw;
    height: 2.2vw;
    background: var(--blueLight);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85vw;
}

.location-address {
    font-size: 1vw;
    font-weight: 700;
    color: var(--blue);
    line-height: 1.3;
}

.location-map {
    width: 100%;
    height: 14vw;
    overflow: hidden;
}

.location-map iframe {
    width: 100%;
    height: 100%;
    display: block;
    border: 0;
}

@media (max-width: 996px) {
    .contact-section {
        padding: 0 6vw 12vw 6vw;
    }

    .contact-header {
        gap: 3vw;
        margin-bottom: 6vw;
    }

    .contact-label {
        font-size: 4vw;
    }

    .contact-title {
        font-size: 6vw;
    }

    .contact-subtitle {
        font-size: 4vw;
    }

    .contact-locations {
        grid-template-columns: 1fr;
        gap: 3vw;
    }

    .location-card {
        border-radius: 12px;
    }

    .location-card-header {
        gap: 3vw;
        padding: 3vw;
    }

    .location-pin {
        width: 6vw;
        height: 6vw;
        font-size: 3vw;
    }

    .location-address {
        font-size: 4vw;
    }

    .location-map {
        height: 40vw;
    }
}




/* ---TREATMENTS 07 STYLES--- */

.treatments07 {
    padding: 6vw;
}

.treatments07 .row {
    display: grid;
    grid-template-columns: 1fr 1.6fr;
    gap: 4vw;
    align-items: start;
}

.treatments07 .item1 {
    display: flex;
    flex-direction: column;
    gap: 2vw;
}

.treatments07 .item1 h2 {
    font-size: 3vw;
    font-weight: 700;
    color: var(--blue);
}

.treatments07 .item1 img {
    width: 100%;
    border-radius: 20px;
    object-fit: cover;
}

.treatments07 .item2 {
    display: flex;
    flex-direction: column;
    gap: .8vw;
}

.treatments07 .faq-item {
    background-color: var(--blueLight2);
    border-radius: 12px;
    overflow: hidden;
}

.treatments07 .faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.4vw 1.8vw;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    gap: 1vw;
}

.treatments07 .faq-question span:first-child {
    font-size: 1.1vw;
    font-weight: 600;
    color: var(--blue);
}

.treatments07 .faq-icon {
    font-size: 1.3vw;
    color: var(--blue);
    flex-shrink: 0;
    line-height: 1;
}

.treatments07 .faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    padding: 0 1.8vw;
}

.treatments07 .faq-item.open .faq-answer {
    max-height: 200px;
    padding: 0 1.8vw 1.4vw 1.8vw;
}

.treatments07 .faq-answer p {
    font-size: 1.1vw;
    
    color: var(--grey);
    line-height: 1.6;
}

@media (max-width: 996px) {
    .treatments07 {
        padding: 0 6vw 12vw 6vw;
    }

    .treatments07 .row {
        grid-template-columns: 1fr;
        gap: 6vw;
    }

    .treatments07 .item1 h2 {
        font-size: 6vw;
    }

    .treatments07 .item1 {
        gap: 4vw;
    }

    .treatments07 .item2 {
        gap: 3vw;
    }

    .treatments07 .faq-question {
        padding: 4vw;
        gap: 3vw;
    }

    .treatments07 .faq-question span:first-child {
        font-size: 4vw;
    }

    .treatments07 .faq-icon {
        font-size: 4vw;
    }

    .treatments07 .faq-item.open .faq-answer {
        padding: 0 4vw 4vw 4vw;
    }

    .treatments07 .faq-answer p {
        font-size: 4vw;
    }
}