/* Base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-weight: 400;
    font-family: Mulish, -apple-system, Roboto, Helvetica, sans-serif;
}

body *{
    overflow: hidden;
    
}
/*floating button*/
.whatsapp-button {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
    overflow: visible;
}

.whatsapp-button a {
    display: inline-block;
    background-color: #25D366;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
    display: flex;
    justify-content: center;
    align-items: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.whatsapp-button a:hover {
    transform: scale(1.1);
    box-shadow: 0px 6px 8px rgba(0, 0, 0, 0.2);
}

.whatsapp-button img {
    width: 40px;
    height: 40px;
}

/* Header styles */
header {
    padding: 5px 36px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
}

.menu-button {
    display: none;
    width: 30px;
    height: 30px;

}

.logo-container {
    align-self: stretch;
    display: flex;
    min-width: 240px;
    margin-top: auto;
    margin-bottom: auto;
    align-items: center;
    gap: 19px;
    justify-content: start;
}

.logo-image {
    aspect-ratio: 1.33;
    object-fit: contain;
    object-position: center;
    width: 77px;
    align-self: stretch;
    margin-top: auto;
    margin-bottom: auto;
    flex-shrink: 0;
}

.logo-text {
    align-self: stretch;
    display: flex;
    margin-top: auto;
    margin-bottom: auto;
    flex-direction: column;
    align-items: stretch;
    justify-content: start;
}

.psychologist-name {
    color: rgba(213, 41, 103, 1);
    font-size: 32px;
    font-family: Gloock, -apple-system, Roboto, Helvetica, sans-serif;
    line-height: 1.2;
    letter-spacing: -0.32px;
    text-align: center;
    align-self: start;
    font-weight: 400;
}

.profession {
    color: rgba(120, 142, 135, 1);
    font-size: 14px;
}

nav {
    align-self: stretch;
    display: flex;
    min-width: 240px;
    margin-top: auto;
    margin-bottom: auto;
    align-items: center;
    gap: 36px;
    font-size: 14px;
    color: rgba(0, 0, 0, 1);
    justify-content: start;
    flex-wrap: wrap;
}

.nav-link {
    align-self: stretch;
    margin-top: auto;
    margin-bottom: auto;
    text-decoration: none;
    color: inherit;
}

@media (max-width: 768px) {
    header {
        gap: 20px;
        padding: 20px;
    }

    .logo-container {
        gap: 5px;
    }

    .logo-image {
        height: 40px;
        width: auto;
    }

    .psychologist-name {
        font-size: 18px;
    }

    .profession {
        font-size: 12px;
    }

    .logo-menu-container {
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: space-between;

    }

    .menu-button {
        display: flex;
        justify-content: center;
        align-items: center;
        background-color: white;
        border: none;
    }

    .nav-link {
        text-align: center;
        color: #A1A1A1;
        font-size: 14px;
    }

    nav {
        display: none;
        width: 100%;
        flex-direction: column;
        gap: 10px;
        justify-content: center;
        align-items: center;
    }
  .main-navigation.active {
    display: flex;
  }
    .contact-button {
        display: none;
    }
}

/* Hero section styles */
.hero-section {
    padding: 0 20px;
    height: 90vh;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.hero-background {
    aspect-ratio: 1.36;
    object-fit: contain;
    object-position: center;
    max-width: 823px;
    position: absolute;
    z-index: 0;
    bottom: 0px;
    height: 607px;
    width: 80%;

}

.hero-column {
    align-self: center;
    z-index: 1;
    display: flex;
    width: 100%;
    max-width: 768px;
    flex-direction: column;
    align-items: stretch;
    justify-content: start;
}

.hero-content {
    width: 100%;
    color: #000;
    font-weight: 400;
    text-align: center;
}

.hero-title {
    font-family: Gloock, -apple-system, Roboto, Helvetica, sans-serif;
    font-size: 56px;
    line-height: 67px;
    letter-spacing: -0.56px;
}

.hero-description {
    font-size: 18px;
    line-height: 27px;
    margin-top: 24px;
}

.hero-actions {
    align-self: center;
    display: flex;
    margin-top: 32px;
    align-items: start;
    gap: 16px;
    font-size: 16px;
    white-space: nowrap;
    justify-content: start;
}

.primary-button {
    border-radius: 6px;
    background-color: rgba(213, 41, 103, 1);
    padding: 10px 16px;
    gap: 8px;
    color: rgba(255, 255, 255, 1);
    text-decoration: none;
    font-size: 20px;
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 36px;
        line-height: 120%;
    }

    .hero-description {
        font-size: 20px;
    }

    .primary-button {
        font-size: 16px;
    }
}


/* Main container */
.therapy-container {
    display: flex;
    justify-content: center;
    align-items: self-start;
    gap: 30px;
    padding: 174px 64px;
    flex-wrap: wrap;
}
@media (max-width: 768px) {
    .therapy-container{
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }
}

/* Left column - Therapy philosophy */
.therapy-philosophy {
    min-width: 352px;
    max-width: 538px;
    color: rgba(213, 41, 103, 1);
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 30px;
    flex: 1;
}

.philosophy-header {
    display: flex;
    width: 100%;
    flex-direction: column;
    align-items: stretch;
    justify-content: start;
}

.philosophy-title {
    font-size: 64px;
    font-family: 'Gloock', -apple-system, Roboto, Helvetica, sans-serif;
    font-weight: 400;
    line-height: 120%;
    letter-spacing: -0.8px;
    margin: 0;
}

.philosophy-subtitle {
    font-size: 15px;
    font-weight: 600;
    line-height: 1.4;
    letter-spacing: -0.15px;
    align-self: center;
    margin: 0;
}

.philosophy-description {
    max-width: 425px;
    font-size: 24px;
    font-weight: 600;
    line-height: 34px;
    letter-spacing: -0.24px;
}

@media (max-width:768px) {
    .therapy-container {
        width: 100%;
        padding: 20px;
        gap: 20px;
    }

    .therapy-philosophy {
        width: 100%;
        padding: 80px 0;
        gap: 40px;
        min-width: 100px;
    }

    .philosophy-title {
        font-size: 40px;
    }

    .philosophy-subtitle {
        font-size: 14px;
        max-width: 226px;
    }

    .philosophy-description {
        font-size: 16px;
        line-height: 140%;
    }
}

/* Right column - Therapist profile */
.therapist-profile {
    display: flex;
    min-width: 476px;
    max-width: 654px;
    min-height: 952px;
    flex-direction: column;
    align-items: stretch;
    font-weight: 400;
    justify-content: end;
    flex: 1;
}

.therapist-image {
    aspect-ratio: 0.81;
    object-fit: contain;
    object-position: center;
    width: 264px;
    border-radius: 0;
    align-self: center;
    max-width: 100%;
}

.profile-content {
    display: flex;
    margin-top: 20px;
    width: 100%;
    flex-direction: column;
    align-items: stretch;
    justify-content: start;
    gap: 30px;

}

.therapist-name {
    color: rgba(41, 152, 117, 1);
    font-size: 64px;
    font-family: 'Gloock', -apple-system, Roboto, Helvetica, sans-serif;
    line-height: 1.2;
    letter-spacing: -0.64px;
    text-align: center;
    margin: 0;
}

.therapist-bio {
    color: rgba(12, 10, 10, 1);
    font-size: 20px;
    line-height: 30px;
    text-align: center;
}

.secondary-button {
    color: #0c0a0a;
    align-self: center;
    border-radius: 6px;
    border: 1px solid rgba(12, 10, 10, 0.15);
    padding: 6px 12px;
    gap: 8px;
    overflow: hidden;
    font-size: 16px;
    font-weight: 500;
    white-space: nowrap;
    background-color: transparent;
    cursor: pointer;
}

@media (max-width:768px) {
    .therapist-profile {
        min-height: 80px;
        min-width: 240px;
        padding: 80px 0;
    }

    .profile-content {
        margin-top: 30px;
        gap: 20px;
    }

    .therapist-name {
        font-size: 32px;
    }

    .therapist-bio {
        font-size: 16px;
        line-height: 150%;
    }
}

.about-container {
    display: flex;
    width: 100%;
    padding: 126px 64px;
    align-items: start;
    gap: 40px 57px;
    font-weight: 400;
    justify-content: center;
}

.about-column {
    min-width: 240px;
    flex: 1;
    flex-basis: 0%;
}

.about-column-left {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: center;
}

.about-column-center {
    text-align: center;
}

.about-column-right {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: start;
    text-align: end;
}

.section-title {
    color: rgba(213, 41, 103, 1);
    font-size: 40px;
    font-family: Gloock, -apple-system, Roboto, Helvetica, sans-serif;
    font-weight: 400;
    margin: 0;
}

.section-title-right {
    align-self: end;
}

.section-text {
    color: rgba(0, 0, 0, 1);
    font-size: 18px;
    line-height: 150%;
    margin-top: 12px;
    margin-bottom: 0;
}

.about-column-center .section-text {
    margin-top: 16px;
}

.section-text-right {
    text-align: right;
    margin-top: 10px;
}

@media (max-width: 991px) {
    .about-container {
        max-width: 100%;
        padding: 100px 20px;
        flex-direction: column;
        gap: 80px;
        justify-content: center;
        align-items: center;
    }

    .about-column {
        max-width: 700px;
    }

}

.therapy-services {
    background-color: rgba(198, 238, 225, 1);
    display: flex;
    width: 100%;
    padding: 155px 64px;
    flex-direction: column;
    overflow: hidden;
    align-items: center;
    text-align: center;
    justify-content: start;
}

.services-main-heading {
    color: rgba(0, 0, 0, 1);
    font-size: 40px;
    font-weight: 600;
    line-height: 48px;
    letter-spacing: -0.4px;
    max-width: 768px;
    margin: 0;
}

.services-container {
    margin-top: 94px;
    width: 560px;
    max-width: 100%;
}

.service-card {
    display: flex;
    width: 100%;
    flex-direction: column;
    align-items: stretch;
    justify-content: start;
    gap: 24px;
}

.service-card:not(:first-child) {
    margin-top: 62px;
}

.service-icon {
    aspect-ratio: 1;
    object-fit: contain;
    object-position: center;
    width: 34px;
    align-self: center;
}

.service-title {
    color: rgba(16, 16, 16, 1);
    font-size: 24px;
    font-weight: 600;
    line-height: 34px;
    letter-spacing: -0.24px;
    margin-bottom: 0;
}

.service-description {
    color: rgba(114, 147, 137, 1);
    font-size: 20px;
    font-weight: 500;
    line-height: 30px;
    margin-bottom: 0;
}

/* Last service card has a different line height for the description */
.service-card:last-child .service-description {
    line-height: normal;
}

@media (max-width: 991px) {
    .therapy-services {
        max-width: 100%;
        padding: 100px 20px;
    }

    .main-heading {
        max-width: 100%;
    }

    .services-container {
        margin-top: 40px;
    }

    .service-card {
        gap: 20px;
    }

    .service-card:not(:first-child) {
        margin-top: 40px;
    }

    .service-title {
        max-width: 100%;
        font-size: 16px;
        line-height: 140%;
    }

    .service-description {
        max-width: 100%;
        font-size: 14px;
        line-height: 140%;

    }

    .services-main-heading {
        font-size: 32px;
    }
}


/* couples therapy section*/
.couples-therapy {
    background-color: #FFEAF2;
    display: flex;
    flex-direction: column;
    padding: 110px 64px;
    color: #2C2C2C;
    gap: 100px;
}

.about-couples-therapy {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 80px;
    flex-wrap: wrap;
}

.couples-therapy-content {
    display: flex;
    flex-direction: column;
    gap: 30px;
    max-width: 536px;
    min-width: 416px;
    flex: 1;

}

.couples-therapy-heading {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.couples-therapy-title {
    font-family: Gloock, -apple-system, Roboto, Helvetica, sans-serif;
    font-size: 40px;
    color: #D52967;
}

.couples-therapy-subtitle {
    font-size: 16px;
}

.couples-therapy-features {
    display: flex;
    gap: 16px
}

.feature {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.feature-title {
    font-family: Gloock, -apple-system, Roboto, Helvetica, sans-serif;
    font-size: 20px;
    color: #D52967;

}

.feature-description {
    font-size: 16px;
}

.couples-therapy-img {
    width: 400px;
}

@media (max-width: 768px) {
    .couples-therapy {
        padding: 80px 20px;
        gap: 80px;
    }

    .about-couples-therapy {
        gap: 40px;
    }

    .couples-therapy-content {
        min-width: 240px;
    }

    .couples-therapy-title {
        font-size: 32px;
    }

    .couples-therapy-subtitle {
        font-size: 16px;
    }

    .feature-title {
        font-size: 24px;
    }

    .feature-description {
        font-size: 14px;
    }

    .couples-therapy-img {
        width: 100%;
    }
}

/*goals-couples-therapy*/
.goals-couples-therapy {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.goals-title {
    font-family: Gloock, -apple-system, Roboto, Helvetica, sans-serif;
    font-size: 40px;
    color: #D52967;
}

.goals-list {
    display: flex;
    justify-content: center;
    gap: 20px;
    list-style-type: none;
    align-items: self-start;
    flex-wrap: wrap;
}

.goal-item {
    display: flex;
    flex: 1;
    flex-direction: column;
    gap: 16px;
    min-width: 160px;
    max-width: 210px;
}

.goal-title {
    font-family: Gloock, -apple-system, Roboto, Helvetica, sans-serif;
    font-size: 20px;
    color: #D52967;
}

@media (max-width: 768px) {
    .goals-couples-therapy {
        gap: 32px;
    }

    .goals-title {
        font-size: 32px;
    }

    .goal-item {
        max-width: 700px;
    }
}

/*phases*/
.phrases-container {
    overflow: scroll;
}

.phrases {
    padding: 16px 0;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
}

.phrases p {
    min-width: 100px;
    max-width: 256px;
    text-align: center;
}

@media (max-width: 768px) {
    .phrases p {
    font-size: 10px;
    }
}
/*group therapy section*/
.group-therapy {
    width: 100%;
    background-color: #C6EEE1;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 110px 44px;
    gap: 60px;
}

.group-therapy-cover {
    width: 400px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

.group-therapy-img {
    max-width: 400px;
}

.group-therapy-phrases {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    max-width: 521px;
}

.group-therapy-phrases p {
    font-family: Gloock, -apple-system, Roboto, Helvetica, sans-serif;
    text-align: center;
    font-size: 18px;
}

.group-therapy-phrases .phrase2{
 color: #323C38;
}

.group-therapy-phrases .phrase3{
 color: #4F5F5A;
}

/*group-therapy-content*/
.group-therapy-content{
    display: flex;
    flex-direction: column;
    gap: 32px;
    max-width: 474px;
}
.group-therapy-header{
    display: flex;
    flex-direction: column;
    gap: 24px;
}
.group-therapy-title{
    font-size: 40px;
    font-family: Gloock, -apple-system, Roboto, Helvetica, sans-serif;
}
.group-therapy-subtitle{
    font-size: 18px;
}

.group-therapy-features{
    display: flex;
    flex-wrap: wrap;
    gap: 20px 20px;
}

.group-therapy-feature{
    max-width: 200px;
    list-style-type: none;
    display: flex;
    flex-direction: column;
    gap: 16px;
    flex-grow: 1;
}

.group-therapy-feature-title{
    font-size: 20px;
    font-family: Gloock, -apple-system, Roboto, Helvetica, sans-serif;
    line-height: 120%;
}

.group-therapy-feature-description{
    font-size: 16px;
    color: #729389;
}

.grow1{
    max-width: 1000px;
    flex-grow: 2;
}

@media (max-width: 980px){
    .group-therapy-feature{
        max-width: 1000px;
        gap: 10px;
    }
    .group-therapy-phrases p {
        font-size: 16px;
    }
    .group-therapy-title{
        font-size: 32px;
    }
    .group-therapy-subtitle{
        font-size: 16px;
    }
    .group-therapy-feature-description{
        font-size: 14px;
    }
}

@media (max-width: 870px){
    
    .group-therapy{
        flex-direction: column;
        padding: 80px 20px;
        gap: 40px;
    }
    .group-therapy-cover{
        width: 100%;
    }
    .group-therapy-img{
        width: 100%;
    }
    .group-therapy-content{
        min-width: 200px;
        max-width: 430px;
        width: auto;
    }
    
}

/*cta*/
.cta{
    height: 570px;
    display: flex;
    flex-direction: column;
    gap: 32px;
    justify-content: center;
    padding: 0 64px;
    color:#00573C ;
}
.cta-title{
    font-family: Gloock, -apple-system, Roboto, Helvetica, sans-serif;
    font-size: 36px;
}
.cta-subtitle{
    font-size: 20px;
    font-weight: 600;
}
.cta-button{
    width: min-content;
    border-radius: 6px;
    background-color: #34BF93;
    padding: 10px 16px;
    gap: 8px;
    color: rgba(255, 255, 255, 1);
    text-decoration: none;
    font-size: 20px;
    border: none;
}
@media (max-width:768px){
    .cta{
        height: 462px;
        padding: 0 20px;
        gap: 20px;
    }
    .cta-title{
        font-size: 32px;
    }
    .cta-subtitle{
    font-size: 16px;
    }
    .cta-button{
        font-size: 16px;
    }
}

/*reviews*/
.reviews{
    height: 620px;
    background-color: #FFEAF2;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    padding: 40px 0;
    gap: 20px;
}
.slider{
    width: 500%;
    height: 100%;
    display: flex;
    transition: transform 1s ease;
}
.slide{
    display: flex;
    height: 100%;
    width: 20%;
    position: relative;
    overflow: hidden;
    justify-content: center;
    align-items: center;
}
.slider[data-index="0"] {
    transform: translate(0%);
}

.slider[data-index="1"] {
    transform: translate(-20%);
}

.slider[data-index="2"] {
    transform: translate(-40%);
}
.slider[data-index="3"] {
    transform: translate(-60%);
}
.slider[data-index="4"] {
    transform: translate(-80%);
}
.review{
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 32px;
    max-width: 768px;
    text-align: center;

}
.review-text{
    font-family: Gloock, -apple-system, Roboto, Helvetica, sans-serif;
    font-size: 24px;
}
.review-info{
    display: flex;
    flex-direction: column;
    gap: 16px;
    justify-content: center;
    align-items: center;
}

.dots-list {
    display: flex;
    width: 100%;
    justify-content: center;
}

.dot-button {
    width: 30px;
    height: 30px;
    display: flex;
    cursor: pointer;
    justify-content: center;
    align-items: center;
    border-radius: 50px;
}

.dot {
    width: 8px;
    height: 8px;
    border-radius: 10px;
    background-color: gray;
}

[data-dot-state="active"] .dot {
    background-color: black;
}
.profile-img-container{
    width: 75px;
    height: 75px;
    border-radius: 100%;
    border: #D52967 solid 3px;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 10px 10px 5px -6px rgba(0,0,0,0.17);
-webkit-box-shadow: 10px 10px 5px -6px rgba(0,0,0,0.17);
-moz-box-shadow: 10px 10px 5px -6px rgba(0,0,0,0.17);
}
.review-profile-name{
    font-size: 18px;
    font-weight: 600;
}
.review-profile-description{
    font-size: 16px;
}
@media (max-width:768px){
    .reviews{
        height: auto;
    }
    .slide{
        padding: 0 20px;
    }
    .review-text{
        font-size: 18px;
    }
}

/*contact section*/
.contact-section{
    display: flex;
    padding: 112px 64px;
    gap: 80px;
    justify-content: space-between;
    align-items: center;
}
.contact-content{
    display: flex;
    flex-direction: column;
    gap: 80px;
}
.contact-header{
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.contact-header-title{
    font-size: 48px;
    font-family: Gloock, -apple-system, Roboto, Helvetica, sans-serif;
}
.contact-header-subtitle{
    font-size: 18px;
}
.contacts{
    display: flex;
    flex-direction: column;
    gap: 40px;
}
.contact{
    list-style-type: none;
    display: flex;
    flex-direction: column;
    gap: 5px;
}
.contact-img{
    width: 32px;
    height: 32px;
}
.contact-type{
    font-family: Gloock, -apple-system, Roboto, Helvetica, sans-serif;
    font-size: 20px;
}
.contact-link{
    display: inline;
    color: black;
}
.contact-section-img{
    width: 350px;
    height: 700px;
    object-fit: cover;
    border-radius: 40px;
}
@media (max-width:820px){
    .contact-section{
        flex-direction: column;
        padding: 0 20px;
        padding-top: 80px;
        gap: 40px;
    }
    .contact-section-img{
        width: 100%;
        object-fit: cover;
        height: 350px;
    }
}

/*footer*/
footer{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 80px 64px;
    gap: 40px;
}
.footer-logo-container{
    display: flex;
    flex-direction: column;
    gap: 5px;
    justify-content: center;
    align-items: center;

}
.footer-logo-image{
    width: 77px;
    object-fit: contain;
}
.footer-logo-text{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.footer-nav{
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 32px;
}
.footer-nav a{
    color: #A1A1A1;
    font-weight: 600;
}
@media (max-width:768px){
    .footer-nav{
        flex-direction: row;
        gap: 5px 30px;
        min-width: 100px;
    }
}
