/* Hero Section */
.hero-section {
    height: 590px;
}

.hero-content {
    padding-bottom: 100px;
}

.section-heading {
    color: var(--text-dark);
    font-family: Gotham;
    font-size: 30px;
    font-style: normal;
    font-weight: 300;
    line-height: 44px;
    text-transform: uppercase;
}

/* Intro Section */
.intro-section {
    max-width: 1440px;
    margin: 0 auto;
    padding: 70px 70px 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
}

.intro-section h2 {
    color: var(--primary-purple);
    text-align: center;
    font-family: Gotham;
    font-size: 24px;
    font-style: normal;
    font-weight: 300;
    line-height: 32px;
    max-width: 916px;
}

.intro-section p {
    color: var(--text, #000);
    text-align: center;
    font-family: Gotham;
    font-size: 18px;
    font-style: normal;
    font-weight: 300;
    line-height: 24px;
    max-width: 1000px;
}

/* What skin Bosters DO Section */
.skin-card-wrapper {
    max-width: 1440px;
    margin: 0 auto;
    padding: 50px 70px;
    display: flex;
    gap: 20px;
}

.skin-card {
    width: 100%;
    max-width: 640px;
    border-radius: 30px;
    padding: 45px 40px 70px;
    background: linear-gradient(180deg, rgba(89, 78, 143, 0.30) 0%, rgba(255, 255, 255, 0.30) 134.63%);
}

.skin-card h3 {
    color: var(--text-dark);
    font-family: Gotham;
    font-size: 24px;
    font-style: normal;
    font-weight: 300;
    line-height: 34px;
    text-transform: uppercase;
    margin-bottom: 24px;
}

.skin-card p {
    color: var(--text-dark);
    font-family: Gotham;
    font-size: 18px;
    font-style: normal;
    font-weight: 300;
    line-height: 24px;
    max-width: 550px;
    margin-bottom: 20px;
}

.skin-card>p:last-child {
    margin-bottom: 0;
}

/* Booster Treatment Section */
.booster-section {
    max-width: 1440px;
    margin: 0 auto;
    padding: 70px;
    background: #F9F9F9;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.booster-section p {
    color: var(--text-dark);
    font-family: Gotham;
    font-size: 18px;
    font-style: normal;
    font-weight: 300;
    line-height: 24px;
    max-width: 1274px;
}

.highlight-text p {
    color: var(--primary-blue);
}

/* Session Feel Section */
.session-feel-section {
    max-width: 1440px;
    margin: 0 auto;
    padding: 50px 70px 0;
}

.session-content-wrapper>div {
    width: 50%;
}

.session-content-wrapper {
    width: 100%;
    padding: 24px 50px 24px 24px;
    border-radius: 30px;
    background: var(--primary-blue);
    display: flex;
    align-items: center;
    gap: 50px;
}

.session-img img {
    width: 100%;
    max-width: 566px;
    border-radius: 30px;
}

.session-content .section-heading {
    max-width: 610px;
    color: var(--white);
    margin-bottom: 14px;
}

.session-content p {
    color: var(--white);
    font-family: Gotham;
    font-size: 18px;
    font-style: normal;
    font-weight: 300;
    line-height: 24px;
    max-width: 521px;
    margin-bottom: 24px;
}

.session-content p:last-child {
    margin-bottom: 0;
}

/* Improvement Section */
.improvement-section {
    max-width: 1440px;
    margin: 0 auto;
    padding: 70px;
    text-align: center;
}

.improvement-section p {
    color: var(--text, #000);
    text-align: center;
    font-family: Gotham;
    font-size: 18px;
    font-style: normal;
    font-weight: 300;
    line-height: 24px;
    margin: 20px auto 0;
    max-width: 1002px;
}

/* Contact Form Section */
.appointment-section {
    display: flex;
    gap: 50px;
    max-width: 1440px;
    margin: 0 auto;
    padding: 64px 70px 64px;
    background: linear-gradient(180deg, rgba(129, 30, 161, 0.3) 0%, rgba(89, 78, 143, 0.3) 100%);
}

.appointment-image {
    flex-shrink: 0;
    width: 56%;
    height: auto;
    border-radius: 24px;
    overflow: hidden;
    align-self: center;
}

.appointment-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.appointment-form-wrapper {
    width: 44%;
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.appointment-form-wrapper h2 {
    font-family: Gotham;
    font-weight: 300;
    font-size: 32px;
    line-height: 48px;
    color: var(--text-dark);
}

.appointment-form {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 30px;
}

.appointment-form input,
.appointment-form textarea {
    width: 100%;
    padding: 19px 24px;
    border: 1px solid var(--text-dark);
    border-radius: 56px;
    font-family: Gotham;
    font-weight: 300;
    font-size: 16px;
    color: var(--text-dark);
    background-color: transparent;
    outline: none;
}

.appointment-form textarea {
    border-radius: 20px;
    resize: none;
    min-height: 125px;
    padding-top: 20px;
}

.appointment-form input::placeholder,
.appointment-form textarea::placeholder {
    color: var(--text-dark);
    opacity: 1;
}

/* Map Section */
.map-section {
    width: 100%;
    max-width: 1440px;
    margin: 0 auto;
    margin-top: 70px;
}

.map-section iframe {
    width: 100%;
}

@media (max-width: 1440px) {

    .appointment-section,
    .intro-section,
    .skin-card-wrapper,
    .booster-section,
    .improvement-section,
    .session-feel-section {
        padding-left: 40px;
        padding-right: 40px;
    }

    .hero-content {
        padding-bottom: 70px;
    }
}

@media (max-width:1200px) {

    .appointment-section {
        flex-direction: column;
    }

    .appointment-image {
        width: 100%;
        max-width: 750px;
    }

    .skin-card {
        padding: 40px 32px 50px;
    }

    .appointment-form-wrapper {
        width: 100%;
    }

    .session-content-wrapper {
        gap: 30px;
    }
}

@media (max-width:1025px) {

    .skin-card-wrapper,
    .session-content-wrapper {
        flex-direction: column;
        align-items: center;
    }

    .session-content-wrapper {
        justify-content: center;
        padding: 24px;
    }

    .session-content-wrapper>div {
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .session-content .section-heading,
    .session-content p {
        max-width: unset;
    }

    .booster-section {
        gap: 12px;
    }
}

@media (max-width: 768px) {
    .hero-section {
        height: 420px;
    }

    .intro-section h2,
    .skin-card h3 {
        font-size: 20px;
        line-height: 24px;
    }

    .intro-section p,
    .skin-card p,
    .booster-section p,
    .session-content p,
    .improvement-section p {
        font-size: 16px;
        line-height: 20px;
    }

    .skin-card h3 {
        margin-bottom: 16px;
    }

    .skin-card p {
        margin-bottom: 12px;
    }

    .intro-section {
        padding-top: 50px;
    }

    .session-content .section-heading,
    .session-content .section-heading {
        margin-bottom: 8px;
    }

    .session-content-wrapper,
    .session-img img {
        border-radius: 20px;
    }

    .booster-section,
    .improvement-section {
        padding-top: 50px;
        padding-bottom: 50px;
    }

    .improvement-section p {
        margin-top: 12px;
    }

    .intro-section {
        gap: 20px;
    }

    .section-heading {
        font-size: 24px;
        line-height: 36px;
    }

    .map-section {
        margin-top: 50px;
    }

    .map-section iframe {
        height: 350px;
    }

}

@media (max-width: 480px) {

    .appointment-section,
    .intro-section,
    .skin-card-wrapper,
    .booster-section,
    .improvement-section,
    .session-feel-section {
        padding-left: 20px;
        padding-right: 20px;
    }

    .section-heading {
        font-size: 20px;
        line-height: 24px;
    }

    .intro-section h2,
    .skin-card h3 {
        font-size: 18px;
        line-height: 22px;
    }

    .intro-section p,
    .skin-card p,
    .booster-section p,
    .booster-section p,
    .improvement-section p {
        font-size: 14px;
        line-height: 18px;
    }

    .appointment-form-wrapper h2 {
        font-size: 24px;
    }


    .appointment-form input,
    .appointment-form textarea {
        padding: 15px 20px;
        font-size: 14px;
    }

}