:root {
    --color-dark-text: #232222;
    --color-dark: #b3a392;
    --color-dark-2: #c4ae96;
    --color-dark-3: #8b7762;
    --color-light: #f4ede4;
    --color-light-2: #ebd5b8;
    --color-mid: #ebd6c5;
    --color-accent: #e8a072;
    --max-width: 1560px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    border: none;
    outline: none;
}

html {
    scroll-behavior: smooth;
}

body {
    /* background: linear-gradient(to right, var(--color-light-2), var(--color-dark-2)); */
    font-family: 'Montserrat', sans-serif;
}

.normal {
    font-family: 'Montserrat', sans-serif;
}

input,
textarea {
    font-family: 'Montserrat', sans-serif;
    font-size: 14px !important;
}

@font-face {
    font-family: 'BelgianoSerif';
    src: url('../fonts/belgiano_serif.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'BelgianoSerif', serif;
}

h1,
h2 {
    font-weight: 500 !important;
}

header.main {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px;
    position: sticky;
    top: 0;
    z-index: 9999;
    background-color: var(--color-light);
}

header.main ul {
    display: flex;
    align-items: center;
    gap: 20px;
    list-style: none;
    margin: 0 40px;
    text-align: center;
}

header.main ul a {
    text-decoration: none;
    color: var(--color-dark-text);
}

.hero-minimal {
    background: linear-gradient(to right, var(--color-light-2), var(--color-dark-2));
    padding: 160px 0;
    border-radius: 0;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    /* less suffocation */
}

.hero-container {
    width: 95%;
    max-width: 1800px;
    background: var(--color-light);
    /* #f4ede4 as you defined */
    display: grid;
    grid-template-columns: 40% 1fr;
    align-items: center;
    /* border-radius: 20px; */
    overflow: hidden;
}

.hero-col {
    padding: 40px;
    overflow: hidden;
}

.hero-text {
    height: 100%;
    display: flex;
    padding: 100px 40px;
    flex-direction: column;
    justify-content: space-between;
}

.hero-text h1 {
    font-size: 3.6rem;
    line-height: 1.2;
    color: #444;
    margin-bottom: 40px;
}

.subtitle {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 20px;
}

.hero-text p {
    font-size: 1.2rem;
    line-height: 1.6;
}

.hero-image {
    padding-right: 0;
}

.hero-image img {
    width: 100%;
    max-height: 600px;
    object-fit: cover;
    display: block;
}

.small-title {
    font-size: 16px;
    color: var(--color-dark-text);
}

.desc {
    line-height: 1.6;
    font-weight: 600;
    font-size: 16px;
    color: var(--color-dark-text);
}

a.btn {
    text-decoration: none;
}

.btn {
    display: flex;
    align-items: center;
    gap: 10px;
    text-transform: uppercase;
    padding: 14px 20px;
    border-radius: 4px;
    cursor: pointer;
    font-weight: 600;
    font-size: 14px;
    transition: 0.4s ease;
}

.testimonial-circles {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 10px;
}

.circle {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    font-weight: bold;
    font-size: 20px;
    /* border: 3px solid white; */
}

.circle1 {
    background-color: #e8a072;
}

.circle2 {
    background-color: #b3a392;
    transform: translateX(-20px);
}

.circle3 {
    background-color: #ebd6c5;
    transform: translateX(-40px);
    color: #3b2a20;
    border: 2px solid white;
}

.stars {
    display: flex;
    gap: 5px;
}

.stars i {
    color: var(--color-accent);
    font-size: 1.4rem;
    -webkit-text-stroke: 1px rgba(255, 255, 255, 0.2);
    text-stroke: 1px rgba(255, 255, 255, 0.2);
}

.contact-section {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 60px 20px;
    gap: 35px;
}

.contact-section i {
    font-size: 3.5rem;
    color: var(--color-dark-text);
}

.contact-section a {
    font-size: 2.5rem;
    font-weight: 600;
    color: var(--color-dark-text);
    text-decoration: none;
    letter-spacing: 1px;
    /* reduced spacing for readability */
}

.grid-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(2, auto);
    gap: 20px;
}

.grid-cards .card {
    background-color: rgba(255, 255, 255, 0.2);
    padding: 30px;
    border-radius: 30px;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.card-tall {
    grid-row: span 2;
    background-color: white !important;
}

.card-span2 {
    grid-column: span 2;
}

.icon-circle {
    width: 40px;
    height: 40px;
    background-color: var(--color-accent);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 20px;
}

.icon-circle i {
    font-size: 1rem;
    color: #ffffff;
}

h2 {
    font-size: 50px;
}

h3 {
    font-size: 20px;
}

p {
    line-height: 1.6;
}

.hero-section-2 .top-section {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 40px;
}

.hero-section-2 .col {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
}

.hero-section-2 .col.title {
    width: 50%;
}

.hero-section-2 .col:not(.title) {
    flex: 1;
}

.hero-section-2 h1,
.hero-section-3 h1 {
    font-size: 50px;
}

.hero-section-2 .image-section {
    max-width: var(--max-width);
    margin: 0 auto;
    overflow: hidden;
    position: relative;
    border-radius: 30px;
    height: 300px;
}

.hero-section-2 .image-section img {
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    object-fit: cover;
    filter: brightness(35%);
}

.gallery {
    background-color: rgba(0, 0, 0, 0.05);
    padding: 60px 20px;
    margin: 0 auto;
    max-width: var(--max-width);
    /* border-radius: 0; */
}

.gallery .container {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    max-width: 1100px;
    margin: 0 auto;
    gap: 20px;
}

.gallery img {
    width: 100%;
    border-radius: 30px;
    filter: brightness(35%);
}

img.taller {
    grid-row: span 2;
    grid-column: span 2;
}

/* #about-section {
    margin-top: 40px;
} */

#about-section .grid-cards {
    grid-template-columns: 1fr;
    max-width: 800px;
}

#about-section .grid-cards .card {
    align-items: flex-start;
}

#about-section .grid-cards .card button,
#about-section .grid-cards .card a {
    margin-top: 20px;
}

.mini-title {
    font-size: 16px;
    font-weight: 600;
    color: #1a1a1a;
}

/* 
.hero-section-3 {
    margin-bottom: 40px;
} */

.hero-section-3 .col {
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.hero-section-3 .col.text {
    padding: 40px;
    max-width: 1000px;
    margin: 0 auto;
}

.hero-section-3 .col.image {
    position: relative;
    overflow: hidden;
    min-height: 300px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-section-3 .col.image img {
    width: 100%;
    height: 100%;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    object-fit: cover;
    filter: brightness(25%);
}

.grid-steps {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.grid-steps .step .circle,
.decorative-circle {
    background-color: var(--color-accent);
    position: relative;
    width: 40px;
    height: 40px;
    border-radius: 50%;
}

.grid-steps .step .circle::before,
.decorative-circle::before {
    content: '';
    position: absolute;
    right: -20px;
    top: -10px;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background-color: var(--color-light-2);
}

.grid-steps .step {
    max-width: 70%;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.grid-steps .step.even {
    margin-left: auto;
}

.grid-steps .step ul,
.grid-blocks .block ul,
ul.square {
    list-style: none;
    padding-left: 20px;
    line-height: 1.6;
}

.grid-steps li,
.grid-blocks li,
ul.square li {
    position: relative;
    padding-left: 20px;
    font-size: 14px;
}

.grid-blocks li::before,
.grid-steps li::before,
ul.square li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 7px;
    background-color: var(--color-accent);
    width: 10px;
    height: 10px;
    border-radius: 50%;
    /* transform: translateY(-50%); */
}

.grid-blocks {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.grid-blocks .block.even .image {
    order: 1;
}

.grid-blocks .block {
    display: flex;
    align-items: center;
    gap: 40px;
}

.grid-blocks .block .image {
    flex: 1;
    overflow: hidden;
    border-radius: 30px;
    position: relative;
    height: 400px;
}

.grid-blocks .block .image img {
    filter: brightness(35%);
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.grid-blocks .block .content {
    flex: 1;
}

.grid-blocks .block .content h2 {
    font-size: 30px;
    margin-bottom: 30px;
}

.grid-blocks .block ul {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.informative {
    position: relative;
    display: flex;
    height: 500px;
    margin-top: 80px;
}

.informative img.main {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 90%;
    filter: brightness(25%);
    object-fit: cover;
}

.informative .container {
    position: relative;
    width: 55%;
    padding: 80px;
    position: absolute;
    right: 0;
    top: 150px;
    /* border-top-left-radius: 30px; */
    /* background-color: var(--color-light); */
    background: linear-gradient(to right, var(--color-light-2), var(--color-dark-2));
    box-shadow: rgba(0, 0, 0, 0.1) 0 0 40px;
}

.informative.left .container {
    right: unset;
    left: 0;
    border-top-left-radius: 0;
    /* border-top-right-radius: 30px; */
}

.informative .container h2 {
    /* color: white; */
    margin-bottom: 20px;
    font-size: 30px;
}

.informative .container p {
    /* color: white; */
    font-size: 16px;
    /* font-weight: 600; */
}

ul.square {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.informative ul.square li {
    /* color: white; */
    font-size: 16px;
    font-weight: 600;
}

.informative ul.square li::before {
    /* background-color: white; */
}

.row {
    display: flex;
}

.g-40 {
    gap: 40px;
}

.flex1 {
    flex: 1;
}

form.request {
    display: flex;
    flex-direction: column;
}

form label {
    font-size: 14px;
    margin-bottom: 10px;
    font-weight: 600;
}

form input {
    margin-bottom: 16px;
    border-radius: 30px;
    padding: 14px 20px;
    font-weight: 500;
    font-size: 16px;
}

form textarea {
    border-radius: 30px;
    margin-bottom: 20px;
    padding: 14px 20px;
    min-height: 120px;
}

form input:focus,
form textarea:focus {
    outline: 2px solid var(--color-accent);
}

#request-benefits .grid .col {
    min-height: 1150px;
}

#request-benefits .col.text {
    background-color: rgba(255, 255, 255, 0.2);
}

#guidance .image-section {
    height: auto;
    min-height: 600px;
}

#guidance .image-section {
    height: auto;
    min-height: 600px;
    padding: 40px;
}

#guidance .image-section .content {
    position: relative;
    padding: 50px;
    max-width: 700px;
    background-color: var(--color-light);
    border-radius: 30px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

#guidance .image-section .content h2 {
    font-size: 30px;
}

#guidance .sep {
    margin-top: 80px;
    margin-bottom: 20px;
    width: 90%;
    margin-left: auto;
    margin-right: auto;
    border: 1px solid var(--color-mid);
}

#guidance .image-section .content p {
    margin-bottom: 20px;
}

.team-section-2 {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 40px;
    max-width: var(--max-width);
    margin: 0 auto;
}

.member {
    position: relative;
    width: 300px;
    height: 350px;
    overflow: hidden;
    border-radius: 30px;
    box-shadow: rgba(0, 0, 0, 0.1) 0 0 40px
}

.member img {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.grid-links {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.grid-links .link {
    padding: 30px;
    border-top: 1px solid var(--color-dark-text);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.grid-links .link .col {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.grid-links .link p {
    flex: 1;
}

.grid-links .link button,
.grid-links .link a {
    white-space: nowrap;
    min-width: 190px;
}

.hyperlink {
    margin-left: auto;
    color: blue !important;
    text-decoration: none;
    margin-right: auto;
    text-align: left !important;
    margin-left: unset;
}

.grid-links .hyperlink:not(:last-child) {
    margin-bottom: 5px;
}

.grid-links .category {
    margin-bottom: 10px;
}

.faq-item .col {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.privacy-policy {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 80px 40px;
    background-color: rgba(0, 0, 0, 0.04);
    border-radius: 30px;
}

.privacy-policy .inner {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.privacy-policy .square {
    gap: 4px;
}

.articles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
}

.blog-card-hyperlink {
    text-decoration: none;
    color: #1a1a1a;
}

.blog-card:hover {
    background-color: var(--color-light-2);
}

.blog-card:hover img {
    width: 120%;
    height: 120%;
}

.blog-card {
    overflow: hidden;
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    background-color: rgba(0, 0, 0, 0.05);
    background-color: var(--color-light);
    border-radius: 20px;
    min-height: 410px;
    transition: 0.4s ease;
}

.blog-card .text {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 10px;
}

.blog-card h3 {
    font-size: 22px;
}

.blog-card p {
    font-size: 16px;
}

.blog-card-image {
    position: relative;
    height: 200px;
    overflow: hidden;
    border-radius: 20px;
}

.wide-blog-image {
    width: 100%;
    height: 100%;
    position: absolute;
    left: 50%;
    top: 50%;
    object-fit: cover;
    transform: translate(-50%, -50%);
    transition: 0.4s ease;
}

.centered {
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

.modal-backdrop.active {
    display: flex;
}

.modal {
    background: #fff;
    padding: 24px;
    border-radius: 8px;
    max-width: 400px;
    width: 90%;
    position: relative;
    text-align: center;
}

.modal h2 {
    font-size: 30px;
}

.modal-close {
    position: absolute;
    top: 10px;
    right: 12px;
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
}

.modal-actions {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 20px;
}

.modal-btn {
    display: block;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 6px;
    text-decoration: none;
    color: inherit;
}

.modal-btn.primary {
    background: #000;
    color: #fff;
}

#faq-section {
    max-width: 1360px;
    margin: 0 auto;
    padding: 80px 40px 40px 40px;
}

.h1{
    font-size: 50px;
    margin-bottom: 50px;
    font-style: italic;
}

#faq-section .faq-item {
    margin-bottom: 44px;
    background-color: transparent;
}

#faq-section .faq-item ul{
    list-style: disc;
    padding-left: 40px;
    margin-top: 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

#faq-section .faq-question {
    color: var(--color-accent);
    font-size: 30px;
    font-weight: 600;
    font-style: italic;
    margin-bottom: 16px;
}

#faq-section .faq-answer {
    font-size: 19px;
    line-height: 1.6;
    color: #333;
}

.faq-images-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 15px;
    padding: 20px;
    max-width: 1360px;
    margin: 0 auto;
    padding-bottom: 80px;
}

.faq-images-grid .image-item img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

@media(max-width: 1050px) {
    .healing-grid {
        grid-template-columns: 1fr !important;
    }

    .hero-minimal .hero-container {
        display: flex;
        flex-direction: column;
    }

    .hero-text {
        padding-top: 40px;
        padding-bottom: 40px;
    }

    .hero-image {
        padding-top: 0;
        width: 100%;
    }

    .hero-image img {
        width: 100%;
    }

    .hero-section-2 .top-section {
        flex-direction: column;
    }

    .hero-section-2 .col.title {
        width: 100%;
        flex: none;
    }
}

@media(max-width: 1000px) {
    .informative .container {
        width: 90% !important;
    }

    .grid-blocks .block .image {
        height: 300px;
    }

    .grid-cards {
        grid-template-columns: 1fr 1fr;
        /* grid-template-rows: none; */
    }

    /* .card-tall,
.card-span2 {
grid-row: none;
grid-column: none;
} */
}

@media(max-width: 800px) {
    .grid-links .link {
        flex-direction: column;
    }

    .grid-links .link .btn {
        margin-left: auto;
    }

    .informative .container {
        left: initial;
        top: initial;
        position: relative;
        margin-top: 40px;
        margin-left: auto;
        margin-right: auto;
        padding: 50px;
        border-radius: 30px !important;
    }

    .informative {
        height: auto;
        min-height: 350px;
    }
}

@media(max-width: 900px) {
    .speciality-grid {
        grid-template-columns: 1fr !important;
        padding: 40px;
    }

    .speciality-section {
        margin: 0 auto;
    }

    .speciality-image img {
        width: 100%;
    }

    .grid-blocks .block {
        flex-direction: column;
    }

    .grid-blocks .block .image {
        flex: initial;
        width: 100%;
    }

    .grid-blocks .block.even .image {
        order: -1;
    }

    .grid-blocks .block {
        align-items: flex-start;
    }

    .team-intro {
        width: 80% !important;
    }

    .grid-cards {
        display: flex;
        flex-direction: column;
        grid-template-columns: 1fr 1fr;
        /* grid-template-rows: none; */
    }

    /* .card-tall,
.card-span2 {
grid-row: none;
grid-column: none;
} */
}

section {
    border-radius: 30px;
}

.section-healing-clean {
    padding: 80px 0;
    max-width: var(--max-width);
    margin: 0 auto;
}

.healing-grid {
    width: 90%;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 50% 1fr;
    gap: 60px;
    align-items: start;
}


.healing-left {
    display: flex;
    flex-direction: column;
    gap: 20px;
    height: 100%;
}

.healing-left h2 {
    font-size: 2.4rem;
    line-height: 1.2;
    margin-bottom: 30px;
}

.tagline {
    color: var(--color-accent);
    /* #e8a072 */
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 25px;
}

.healing-left p {
    line-height: 1.7;
    font-size: 1.05rem;
    max-width: 480px;
}

.healing-right {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    height: 100%;
    gap: 40px;
}

.healing-left .main-card {
    margin-top: auto;
}

.main-card {
    background: var(--color-light);
    /* #f4ede4 */
    display: grid;
    grid-template-columns: 60px 1fr;
    gap: 25px;
    padding: 40px;
}

.icon-circle {
    width: 40px;
    height: 40px;
    background: var(--color-accent);
    /* #e8a072 */
    border-radius: 50%;
}

.card-content h3 {
    font-size: 1.4rem;
    margin-bottom: 20px;
    font-family: 'Montserrat', sans-serif;
}

.card-content p {
    margin-bottom: 16px;
    line-height: 1.6;
}

.small-card h4 {
    margin-bottom: 10px;
    font-size: 1.1rem;
}

.small-card p {
    line-height: 1.6;
}

.team-section {
    padding: 80px 0;
}

/* Intro */
.team-intro {
    text-align: center;
    width: 80%;
    margin: 0 auto 60px auto;
}

.team-intro h2 {
    font-size: 2.2rem;
    text-align: center;
    max-width: 500px;
    margin: 0 auto 40px auto;
}

.team-intro p {
    font-size: 1.05rem;
    line-height: 1.7;
    max-width: 800px;
    margin: 0 auto;
}

/* Gradient container */
.team-wrapper {
    background: linear-gradient(to right, var(--color-light-2), var(--color-dark-2));
    padding: 70px 40px;
    width: 100%;
    margin: 0 auto;
}

/* Cards grid */
.team-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

/* Each card */
.team-card {
    background: var(--color-light);
    /* #f4ede4 */
    padding: 25px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.team-card img {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

/* See More button inside gradient container */
.see-more-btn {
    text-align: center;
    display: flex;
    justify-content: center;
}

.see-more-clean {
    background: var(--color-light);
    /* #f4ede4 */
    padding: 12px 28px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    color: var(--color-dark);
}

.see-more-clean:hover {
    opacity: 0.85;
}

.btn.secondary {
    /* background-color: var(--color-accent); */
    background-color: rgba(255, 255, 255, 0.4);
    background-color: transparent;
    /* color: white; */
    border: 2px solid #1a1a1a;
    text-decoration: none;
    color: #1a1a1a;
}

.btn.secondary svg {
    transition: 0.4s ease;
}

.btn.secondary:hover svg {
    width: 0;
}

.speciality-section {
    padding: 80px 0;
    max-width: var(--max-width);
}

.speciality-grid {
    display: grid;
    grid-template-columns: 45% 1fr;
    gap: 60px;
    width: 100%;
    margin: 0 auto;
}

/* Image column */
.speciality-image img {
    width: 100%;
    height: 100%;
    max-height: 500px;
    object-fit: cover;
    display: block;
}

/* Content column */
.speciality-content {
    display: flex;
    flex-direction: column;
    gap: 22px;
}

.speciality-content h2 {
    font-size: 2.2rem;
    font-weight: 700;
}

.tagline {
    color: var(--color-accent);
    /* #e8a072 */
    font-weight: 600;
    line-height: 1.4;
}

/* List styling */
.speciality-list {
    list-style: none;
    padding: 0;
    margin: 30px 0;
}

.speciality-list li {
    position: relative;
    padding-left: 20px;
    margin-bottom: 10px;
    line-height: 1.55;
}

.speciality-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 7px;
    width: 8px;
    height: 8px;
    background: var(--color-accent);
}

.speciality-section .flex {
    display: flex;
}

.hero-section ul {
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    gap: 10px;
}

.hero-section ul li {
    font-size: 14px;
    padding: 0 10px;
    line-height: 1.6;
}

#faq {
    margin-top: 80px;
    padding-top: 120px;
    padding-bottom: 120px;
}

#faq h2 {
    margin-bottom: 40px;
    max-width: 480px;
}

#faq p {
    max-width: 820px;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.faq-item {
    /* background: #fff; */
    background-color: rgba(255, 255, 255, 0.2);
    overflow: hidden;
}

.faq-btn i {
    font-size: 2rem !important;
}

.faq-btn {
    width: 100%;
    padding: 22px 28px;
    background: none;
    border: none;
    outline: none;
    cursor: pointer;

    display: flex;
    align-items: center;
    justify-content: space-between;

    font-size: 1.3rem;
    font-weight: 600;
    color: var(--color-dark-text);
}

.faq-btn i {
    font-size: 1.6rem;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-btn i {
    transform: rotate(45deg);
}

.faq-panel {
    max-height: 0;
    overflow: hidden;
    padding: 0 28px;
    font-size: 1rem;
    color: var(--color-dark-text);
    line-height: 1.55;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.active .faq-panel {
    max-height: 800px;
    padding: 0 28px 22px;
}

.faq-panel ul {
    margin-top: 10px;
    padding-left: 20px;
}

.faq-panel li {
    margin-bottom: 6px;
}

.site-footer {
    background: #1a1a1a;
    color: #fff;
    text-align: center;
    padding: 24px 16px;
    margin-top: 80px;
    display: flex;
    gap: 20px;
    align-items: center;
    justify-content: space-between;
}

footer .row-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    gap: 20px;
    flex-wrap: wrap;
}

#faq {
    border-radius: 0 !important;
}

.main-footer {
    /* margin-top: 80px; */
}

.site-footer p {
    font-size: 14px;
}

.site-footer .admin-link {
    font-size: 14px;
    text-decoration: underline;
    color: #fff;
    transition: color 0.2s ease;
}

.site-footer .admin-link:hover {
    color: #e8a072;
}

.main-footer {
    background: var(--color-light);
    color: white;
    padding: 80px 40px;
}

.main-footer .inner {
    display: flex;
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.main-footer .col {
    display: flex;
    flex-direction: column;
    /* align-items: center; */
}

.main-footer .row {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    font-size: 13px;
}

.main-footer p {
    /* color: #ddd; */
}

.main-footer p.main {
    margin: 20px 0;
    color: black;
}

.main-footer a {
    color: black;
    text-decoration: underline;
}

.main-footer a.btn {
    text-decoration: none;
}

.main-footer .row p {
    /* color: white; */
}

.main-footer .btn {
    background-color: var(--color-light) !important;
}

.main-footer .row strong {
    font-weight: 600;
    color: #333;
}

/* Header base */
.main-header {
    position: relative;
}

.logo-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    text-decoration: none;
    color: rgb(148, 133, 119);
    line-height: 1;
    font-weight: 500;
}

.logo-container .title {
    font-size: 28px;
    text-align: center;
}

/* Navigation */
.nav-list {
    display: flex;
    gap: 25px;
    list-style: none;
    margin: 0;
    padding: 0;
    align-items: center;
}

.nav-item {
    position: relative;
}

.nav-link {
    text-decoration: none;
    color: #3b2a20;
    font-weight: 600;
    padding: 8px 5px;
    transition: color 0.3s;
}

/* Submenu */
.nav-item.has-submenu .submenu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background-color: rgba(0, 0, 0, 0.8);
    border-radius: 10px;
    padding: 10px 5px;
    min-width: 200px;
    z-index: 10;
}

.nav-item.has-submenu:hover .submenu {
    display: block;
}

.submenu li {
    list-style: none;
}

.submenu-link {
    display: block;
    padding: 8px 20px;
    color: #fff !important;
    white-space: nowrap;
    text-decoration: none;
    transition: background 0.3s;
}

.submenu-link:hover,
.submenu-link.active {
    background-color: #e8a072;
    color: #1a1a1a;
    border-radius: 5px;
}

/* Close mobile button */
#hide-mobile-menu button {
    background: transparent;
    border: none;
    cursor: pointer;
}

/* Get In Touch button */
.btn.primary {
    background-color: var(--color-dark) !important;
    border: none;
    color: white;
}

.btn.primary:hover {
    background-color: var(--color-dark-2) !important;
    color: white !important;
}

.btn.light {
    background-color: var(--color-light) !important;
    color: black;
    padding-left: 80px;
    padding-right: 80px;
}

.btn.light:hover {
    background-color: white !important;
}


.site-navigation {
    position: relative;
}

.active-circle {
    position: absolute;
    top: 50%;
    left: 0;
    width: 120px;
    /* adjust width for your links */
    height: 40px;
    /* adjust height */
    border-radius: 30px;
    /* background: linear-gradient(to right, rgba(255, 255, 255, 0.7), rgba(255, 255, 255, 0.1)); */
    transform: translateY(-50%);
    transition: left 0.3s ease;
    z-index: 0;
}

/* Ensure links appear above the circle */
.nav-list .nav-link {
    position: relative;
    z-index: 1;
    padding: 8px;
    display: inline-block;
}

.contact-section {
    display: flex;
    gap: 10px;
    font-size: 20px;
}

.contact-section {
    display: flex;
    align-items: center;
    gap: 60px;
    /* space between phone and facebook */
}

.item {
    display: flex;
    align-items: center;
    gap: 30px;
    /* space between icon and text */
}

.item a {
    transition: 0.4s ease;
}

.item:hover a {
    transform: scale(0.9);
}

/* ICONS MUST NOT BE VISIBLE INITIALLY */
.item .icon-wrapper {
    opacity: 0;
    transform: translateX(20px);
    display: inline-flex;
    transition: opacity 0.35s ease, transform 0.35s ease;
}


/* TEXT LETTERS */
.char {
    opacity: 0;
    transform: translateX(20px);
    display: inline-block;
    transition: opacity 0.35s ease, transform 0.35s ease;
}

/* When visible */
.visible {
    opacity: 1;
    transform: translateX(0);
}

.reveal-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal-up.visible {
    opacity: 1;
    transform: translateY(0);
}

.see-more {
    display: flex;
    justify-content: flex-end;
    margin-bottom: 20px;
}

#open-menu {
    display: none;
    margin-left: auto;
    margin-right: 10px;
    padding: 12.5px;
}

#close-menu {
    display: none;
    position: fixed;
    z-index: 9999999;
    top: 20px;
    right: 20px;
    cursor: pointer;
}

.contact-inline {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    flex-wrap: wrap;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--color-accent);
    font-weight: 500;
    text-decoration: none;
}

.contact-item i {
    font-size: 20px;
}

#contact {
    text-align: center;
}

#contact .healing-grid {
    grid-template-columns: 1fr;
}

.contact-form {
    max-width: 1200px;
    margin: 40px auto 0 auto;
}

.form-row {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.form-group {
    display: flex;
    flex-direction: column;
    flex: 1;
    min-width: 220px;
}

.form-group label {
    margin-bottom: 6px;
    margin-right: auto;
}

.form-group input,
.form-group textarea {
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 16px !important;
}

.form-group textarea {
    resize: vertical;
}

.form-disclaimer p {
    margin-top: 16px;
    font-size: 14px !important;
    line-height: 1.5;
}

.form-checkbox {
    margin: 16px 0;
    display: flex;
    justify-content: center;
}

.form-checkbox label {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 14px;
}

.form-checkbox input {
    margin: 0 !important;
    width: 30px;
    height: 30px;
}

.row {
    display: flex;
    justify-content: center;
}

.map-container {
    position: relative;
    width: 100%;
    max-width: 1200px;
    height: 500px;
    margin-top: 40px;
    margin-left: auto;
    margin-right: auto;
    border-radius: 8px;
    overflow: hidden;
}

.map-container iframe {
    width: 100%;
    height: 100%;
}

@media (max-width:1240px) {
    h1 {
        font-size: 2.5rem !important;
    }

    .informative .container {
        width: 70%;
    }

    .hero-section .grid {
        flex-direction: column;
    }

    #request-benefits .col.text {
        width: auto;
    }

    .hero-section .col {
        min-height: 400px !important;
        overflow: hidden !important;
        width: 100%;
    }

    .hero-section .col:not(.text) {
        order: -1;
    }

    .hero-section .col button,
    .hero-section .col a {
        margin-left: auto;
    }

    :root {
        --max-width: 95%;
    }
}

@media (max-width:1150px) {

    .contact-section {
        flex-direction: column;
        gap: 20px;
    }

    #open-menu {
        display: block;
        margin-bottom: auto;
        margin-top: 9px;
    }

    header.main nav {
        position: fixed;
        left: 0;
        top: 0;
        width: 100%;
        height: 100%;
        z-index: 99999;
        /* display: grid; */
        display: none;
        place-items: center;
        overflow-y: auto;
        background-color: var(--color-light);
    }

    header.main nav ul {
        flex-direction: column;
    }

    header.main nav ul li {
        font-size: 1.5rem;
        text-align: center;
    }

    .active-circle {
        display: none;
    }

    .submenu {
        position: relative !important;
        left: 0;
        top: 0;
    }
}

@media (max-width:550px) {
    .faq-question{
        font-size: 20px !important;
    }
    
    .faq-answer{
        font-size: 16px !important;
    }
    
    .h1{
        font-size: 24px;
    }

    .logo-container img {
        width: 40px !important;
        height: 40px !important;
    }

    .logo-container .title {
        font-size: 16px !important;
    }

    .healing-grid {
        width: 100%;
        gap: 20px;
    }

    .btn.light {
        padding-left: 20px;
        padding-right: 20px;
    }

    .healing-right {
        gap: 20px;
    }

    .main-card {
        display: flex;
        flex-direction: column;
        gap: 0;
        padding: 20px;
    }

    .hero-minimal {
        padding-right: 0 !important;
        padding-top: 80px !important;
        padding-bottom: 80px !important;
    }

    .hero-container {
        width: 100%;
    }

    #guidance .image-section .content {
        max-width: initial;
        width: 100% !important;
        padding: 20px;
    }

    #guidance .image-section {
        padding: 20px;
    }

    #request-benefits .col.text {
        width: 100%;
    }

    #request-benefits label {
        white-space: initial;
    }

    #request-benefits input,
    #request-benefits textarea {
        width: 100%;
    }

    .informative .container .row.g-40 {
        flex-direction: column;
    }

    .informative .container {
        width: 100% !important;
        padding: 30px !important;
    }

    .informative .container h2 {
        font-size: 26px !important;
    }

    .grid-steps .step {
        max-width: 100%;
    }

    .team-intro {
        width: 100% !important;
    }

    .contact-section a {
        font-size: 1.5rem;
    }

    .contact-section i {
        font-size: 2rem;
    }

    header.main nav ul li {
        font-size: 20px;
    }

    .submenu {
        min-width: initial;
        width: 300px;
        margin: 0 auto;
    }

    .submenu-link {
        white-space: initial;
    }

    .hero-section .grid .col h1,
    .hero-section .grid .col h2,
    h2,
    h1 {
        font-size: 30px !important;
    }

    .hero-section-2 .top-section,
    .hero-section-3 .col.text {
        padding-left: 0;
        padding-right: 0;
    }

    .hero-section-2 .image-section {
        height: 200px;
    }

    .hero-section .grid .col {
        padding: 30px;
    }

    .hero-section .grid .col:not(.text) {
        min-height: initial !important;
    }

    .hero-section .grid .col.text {
        padding: 20px;
    }

    section {
        padding-left: 20px !important;
        padding-right: 20px !important;
    }

    .hero-section-3 .col.image {
        border-radius: 30px;
        height: 200px;
        min-height: initial;
    }
}

@media (max-width:450px) {
    .speciality-section {
        padding: 40px;
    }

    .speciality-grid {
        padding: 0;
    }

    #guidance .image-section {
        padding: 0;
    }

    #guidance .image-section img {
        display: none;
    }

    #guidance .image-section {
        min-height: auto;
    }

    .logo {
        width: 90px;
    }

    header.main .btn {
        padding: 8px;
    }

    #open-menu {
        padding: 6.5px;
        margin-top: 0;
    }
}

header.main.scrolled {
    background-color: var(--color-light);
    transition: background-color 0.25s ease;
}

header.main.scrolled .btn.primary {
    background-color: var(--color-mid);
}

header.main.scrolled .active-circle {
    /* background: linear-gradient(to right, var(--color-mid), var(--color-mid)); */
}

.nav-item a:not(.submenu-link) {
    color: #444 !important;
}

.nav-item a {
    font-weight: normal;
    text-transform: uppercase;
    font-size: 14px;
    font-weight: 500;
}

.nav-item.active a:not(.submenu-link),
.nav-item:hover a:not(.submenu-link) {
    color: black !important;
    font-weight: 600;
}

/* Section background */
.section-emotional-healing {
    background: linear-gradient(to right, var(--color-light-2), var(--color-dark-2));
    padding: 80px 0;
}

/* Left-aligned top content */
.section-emotional-healing .top {
    width: 90%;
    margin: 0 auto 50px;
    text-align: left;
}

.section-emotional-healing .title h2 {
    font-size: 2.2rem;
    line-height: 1.3;
}

/* FAQ styling updates */
.faq-list {
    width: 90%;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.faq-item {
    background: var(--color-light);
    padding: 0;
    overflow: hidden;
}

/* Button uses your existing styling; only bg color updated */
.faq-btn {
    width: 100%;
    padding: 20px 24px;
    background: var(--color-light);
    text-align: left;
    display: flex;
    justify-content: space-between;
    align-items: center;
}