:root {
    --charcoal: #2b2a29;
    --sky: #66b9e8;
    --teal: #86cee0;
    --cream: #fbf8f1;
    --soft: #f5f1e8;
    --text: #242424;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    color: var(--text);
    background: var(--cream);
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    line-height: 1.7;
}

body,
input,
textarea,
button,
select {
    font-family: 'Inter', sans-serif;
}

p,
li,
a,
span,
label,
input,
textarea,
button,
select,
.form-control,
.nav-link,
.sec_title,
.eyebrow,
.form-kicker,
.footer-contact,
.footer-links a,
.footer-note {
    font-family: 'Inter', sans-serif;
}

a {
    color: inherit;
    text-decoration: none;
}

a:hover {
    color: inherit;
}

img {
    max-width: 100%;
    display: block;
}

h1,
h2,
h3,
h4,
h5,
h6,
.title,
.script-title,
.spa-brand .brand-mark,
.footer-brand .brand-mark,
.spa-brand .brand-text strong,
.footer-brand strong,
.trust-grid strong {
    color: var(--charcoal);
    font-family: 'Libre Baskerville', serif;
    font-weight: 500;
    letter-spacing: 0;
}

h1 {
    font-size: clamp(50px, 5vw, 60px);
    line-height: 1.04;
}

h2 {
    font-size: clamp(34px, 4vw, 54px);
    line-height: 1.14;
}

h3 {
    font-size: clamp(28px, 3vw, 38px);
    line-height: 1.18;
}

h4 {
    font-size: 24px;
    line-height: 1.25;
}

p {
    color: #333333;
    font-size: 17px;
    font-weight: 500;
    line-height: 1.75;
}

main {
    overflow: hidden;
    background: var(--cream);
}

.section {
    padding: 110px 0;
}

.section-intro {
    max-width: 520px;
}

.sec_title,
.eyebrow,
.form-kicker {
    display: inline-block;
    margin-bottom: 16px;
    color: #277fae;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.sec_title.light {
    color: var(--teal);
}

.site-header {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 999;
    width: 100%;
    padding: 14px 0;
    background: rgb(255, 255, 255);
    border-bottom: 1px solid rgba(43, 42, 41, 0.08);
    box-shadow: 0 16px 44px rgba(43, 42, 41, 0.08);
    backdrop-filter: blur(22px);
}

.site-header .navbar {
    padding: 0;
}
.banner_logo {
     width: 270px !important;
}

.spa-brand,
.footer-brand {
    display: inline-flex;
    align-items: center;
    gap: 14px;
}

.spa-brand .brand-mark,
.footer-brand .brand-mark {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--sky), var(--teal));
    color: var(--charcoal);
    font-size: 22px;
    font-weight: 500;
    box-shadow: 0 14px 28px rgba(102, 185, 232, 0.28);
}

.spa-brand .brand-text strong,
.footer-brand strong {
    display: block;
    color: var(--charcoal);
    font-size: 25px;
    font-weight: 500;
    line-height: 1;
}

.spa-brand .brand-text small,
.footer-brand small {
    display: block;
    margin-top: 5px;
    color: rgba(43, 42, 41, 0.62);
    font-family: 'Inter', sans-serif;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.navbar-nav {
    gap: 8px;
}

.navbar-light .navbar-nav .nav-link {
    position: relative;
    padding: 10px 14px;
    color: rgb(0, 0, 0);
    font-size: 17px;
    font-weight: 500;
    transition: color 0.3s ease;
}

.navbar-light .navbar-nav .nav-link::after {
    content: "";
    position: absolute;
    left: 14px;
    right: 14px;
    bottom: 4px;
    height: 2px;
    background: linear-gradient(90deg, var(--sky), var(--teal));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

.navbar-light .navbar-nav .nav-link:hover,
.navbar-light .navbar-nav .nav-link:focus {
    color: var(--charcoal);
}

.navbar-light .navbar-nav .nav-link:hover::after,
.navbar-light .navbar-nav .nav-link:focus::after {
    transform: scaleX(1);
}

.navbar-toggler {
    border: 0;
    box-shadow: none !important;
}

.btn-gradient-fill {
    position: relative;
    z-index: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 52px;
    padding: 14px 28px;
    border: 1px solid rgba(102, 185, 232, 0.5);
    border-radius: 100px;
    overflow: hidden;
    background: linear-gradient(120deg, var(--sky) 0%, var(--teal) 58%, #ffffff 100%);
    color: var(--charcoal);
    font-size: 16px;
    font-weight: 500;
    box-shadow: 0 16px 34px rgba(102, 185, 232, 0.24);
    transition: color 0.35s ease, transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}

.btn-gradient-fill::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    background: linear-gradient(120deg, var(--charcoal) 0%, #3f3d3a 100%);
    opacity: 0;
    transition: opacity 0.35s ease;
}

.btn-gradient-fill:hover,
.btn-gradient-fill:focus {
    color: #ffffff;
    border-color: rgba(43, 42, 41, 0.4);
    transform: translateY(-3px);
    box-shadow: 0 22px 50px rgba(43, 42, 41, 0.2);
}

.btn-gradient-fill:hover::before,
.btn-gradient-fill:focus::before {
    opacity: 1;
}

.btn-gradient-fill i {
    transition: transform 0.3s ease;
}

.btn-gradient-fill:hover i {
    transform: translateX(4px);
}

.line_btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 52px;
    padding: 14px 26px;
    border-radius: 100px;
    color: #fff;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.42);
    backdrop-filter: blur(12px);
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.09em;
    text-transform: uppercase;
    transition: all 0.35s ease;
}

.line_btn:hover,
.line_btn:focus {
    color: var(--charcoal);
    background: rgba(255, 255, 255, 0.9);
    transform: translateY(-3px);
}

.spa-hero {
    min-height: 100vh;
    padding: 156px 0 95px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.spa-hero__media,
.spa-hero__overlay {
    position: absolute;
    inset: 0;
}

.spa-hero__media {
    background-image: url("https://images.unsplash.com/photo-1544161515-4ab6ce6db874?auto=format&fit=crop&w=1800&q=88");
    background-position: center;
    background-size: cover;
    transform: scale(1.02);
}

.spa-hero__overlay {
    background:
        linear-gradient(90deg, rgba(43, 42, 41, 0.9) 0%, rgba(43, 42, 41, 0.66) 48%, rgba(43, 42, 41, 0.22) 100%),
        linear-gradient(180deg, rgba(43, 42, 41, 0.1), rgba(43, 42, 41, 0.72));
}

.spa-hero__inner {
    z-index: 2;
}

.spa-hero h1 {
    max-width: 780px;
    color: #fff;
}

.hero-subtitle {
    max-width: 610px;
    color: rgba(255, 255, 255, 0.84);
    font-size: 20px;
    line-height: 1.65;
}

.hero-points span {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    padding: 10px 15px;
    border-radius: 100px;
    color: #fff;
    background: rgba(255, 255, 255, 0.11);
    border: 1px solid rgba(255, 255, 255, 0.22);
    font-size: 13px;
    font-weight: 500;
    backdrop-filter: blur(12px);
}

.hero-points i {
    color: var(--teal);
}

.form_wrapper {
    padding: 34px;
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.17);
    border: 1px solid rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(24px);
    box-shadow: 0 24px 60px rgba(43, 42, 41, 0.16);
}

.hedder-form .title,
.modal-form .title {
    color: #fff;
}

.form_wrapper .form-label {
    color: rgba(43, 42, 41, 0.72);
    font-size: 13px;
    font-weight: 500;
}

.form_wrapper .form-control {
    min-height: 52px;
    border-radius: 12px;
    border: 1px solid rgba(43, 42, 41, 0.12);
    background: rgba(255, 255, 255, 0.92);
    color: var(--charcoal);
    font-size: 15px;
    padding: 13px 15px;
    box-shadow: none;
}

.form_wrapper textarea.form-control {
    min-height: 116px;
    resize: vertical;
}

.form_wrapper .form-control:focus {
    border-color: var(--sky);
    background: #fff;
    box-shadow: 0 0 0 4px rgba(102, 185, 232, 0.16);
}

.field-error {
    display: block;
    margin-top: 6px;
    color: #c73d3d;
    font-size: 12px;
    font-weight: 500;
}

.trust-strip {
    position: relative;
    z-index: 3;
    margin-top: -48px;
    padding-bottom: 34px;
}

.trust-grid {
    overflow: hidden;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.94);
    box-shadow: 0 18px 42px rgba(102, 185, 232, 0.16);
    backdrop-filter: blur(18px);
}

.trust-grid > div {
    padding: 30px 20px;
    text-align: center;
    border-right: 1px solid rgba(43, 42, 41, 0.08);
}

.trust-grid > div:last-child {
    border-right: 0;
}

.trust-grid strong {
    display: block;
    color: var(--charcoal);
    font-size: 42px;
    font-weight: 500;
    line-height: 1;
}

.trust-grid span {
    display: block;
    margin-top: 8px;
    color: rgba(43, 42, 41, 0.62);
    font-size: 13px;
    font-weight: 500;
}

.about-spa,
.why-section,
.contact-section {
    background: #fff;
}

.image-stack {
    position: relative;
    min-height: 560px;
}

.image-stack .main-img {
    width: 82%;
    height: 520px;
    object-fit: cover;
    border-radius: 22px;
    box-shadow: 0 22px 54px rgba(43, 42, 41, 0.14);
}

.image-stack .floating-img {
    position: absolute;
    right: 0;
    bottom: 0;
    width: 46%;
    height: 270px;
    object-fit: cover;
    border: 10px solid #fff;
    border-radius: 18px;
    box-shadow: 0 22px 50px rgba(43, 42, 41, 0.16);
}

.premium-list {
    display: grid;
    gap: 14px;
    margin: 28px 0 0;
    padding: 0;
    list-style: none;
}

.premium-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    color: var(--charcoal);
    font-weight: 500;
}

.premium-list i {
    flex: 0 0 28px;
    width: 28px;
    height: 28px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(134, 206, 224, 0.22);
    color: #277fae;
    font-size: 12px;
}

.services-section {
    background: var(--cream);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: minmax(280px, auto);
    gap: 18px;
}

.service-tile {
    position: relative;
    min-height: 330px;
    display: flex;
    align-items: flex-end;
    overflow: hidden;
    border-radius: 18px;
    box-shadow: 0 18px 42px rgba(43, 42, 41, 0.12);
    isolation: isolate;
}

.service-tile.large {
    grid-column: span 2;
    grid-row: span 2;
    min-height: 680px;
}

.service-tile.wide {
    grid-column: span 2;
}

.service-tile img {
    position: absolute;
    inset: 0;
    z-index: -2;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.65s ease, filter 0.65s ease;
}

.service-tile::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    background: linear-gradient(180deg, rgba(43, 42, 41, 0.02) 8%, rgba(0, 0, 0, 0.86) 100%);
}

.service-tile div {
    width: 100%;
    padding: 16px;
}

.service-tile span {
    display: block;
    margin-bottom: 12px;
    color: var(--teal);
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.18em;
}

.service-tile h3 {
    color: #fff;
    font-size: 28px;
}

.service-tile p {
    max-width: 430px;
    margin: 0;
    color: rgb(255, 255, 255);
    font-size: 15px;
}

.service-tile:hover img {
    transform: scale(1.08);
    filter: saturate(1.08);
}

.why-item {
    padding: 34px 30px;
    border-radius: 18px;
    background: #ffffff;
    border: 1px solid rgba(43, 42, 41, 0.08);
    box-shadow: 0 16px 38px rgba(43, 42, 41, 0.08);
    transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}

.why-item:hover {
    transform: translateY(-6px);
    border-color: rgba(102, 185, 232, 0.42);
    box-shadow: 0 20px 46px rgba(102, 185, 232, 0.18);
}

.why-item i {
    width: 54px;
    height: 54px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 22px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--sky), var(--teal));
    color: var(--charcoal);
    font-size: 20px;
}

.why-item p {
    margin-bottom: 0;
}

.benefits-section {
    position: relative;
    min-height: 640px;
    display: flex;
    align-items: center;
    padding: 125px 0;
    overflow: hidden;
}

.benefits-bg,
.benefits-overlay {
    position: absolute;
    inset: 0;
}

.benefits-bg {
    background-image: url("https://images.unsplash.com/photo-1519823551278-64ac92734fb1?auto=format&fit=crop&w=1800&q=86");
    background-position: center;
    background-size: cover;
}

.benefits-overlay {
    background:
        linear-gradient(90deg, rgba(43, 42, 41, 0.18), rgba(43, 42, 41, 0.78)),
        linear-gradient(180deg, rgba(43, 42, 41, 0.1), rgba(43, 42, 41, 0.58));
}

.benefits-section h2 {
    color: #fff;
    margin-bottom: 28px;
}

.benefit-list {
    display: grid;
    gap: 14px;
}

.benefit-list p {
    display: flex;
    align-items: center;
    gap: 14px;
    margin: 0;
    padding: 18px 20px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 14px;
    color: rgba(255, 255, 255, 0.88);
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(18px);
}

.benefit-list i {
    color: var(--teal);
}

.cta-banner {
    padding: 90px 0;
    background: var(--cream);
}

.cta-panel {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    padding: 48px;
    border-radius: 22px;
    background: #ffffff;
    border: 1px solid rgba(102, 185, 232, 0.25);
    box-shadow: 0 18px 44px rgba(102, 185, 232, 0.16);
}

.cta-panel h2 {
    margin-bottom: 0;
}

.contact-copy {
    padding: 46px;
    border-radius: 22px;
    background:
        linear-gradient(135deg, rgba(43, 42, 41, 0.94), rgba(43, 42, 41, 0.86)),
        url("https://images.unsplash.com/photo-1600334089648-b0d9d3028eb2?auto=format&fit=crop&w=1200&q=85");
    background-position: center;
    background-size: cover;
}

.contact-copy h2,
.contact-copy p {
    color: #fff;
}

.contact-copy > p {
    color: rgba(255, 255, 255, 0.74);
}

.contact-details {
    display: grid;
    gap: 14px;
    margin-top: 32px;
}

.contact-details p {
    display: flex;
    align-items: flex-start;
    gap: 13px;
    margin: 0;
    color: rgba(255, 255, 255, 0.86);
}

.contact-details i {
    margin-top: 6px;
    color: var(--teal);
}

.contact-form {
    background: rgba(255, 255, 255, 0.92);
    border-color: rgba(43, 42, 41, 0.08);
}

.contact-form .title {
    color: var(--charcoal);
}



.request-btn {
    position: fixed;
    right: -42px;
    top: 48%;
    z-index: 99;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    padding: 12px 24px;
    border-radius: 0;
    background: linear-gradient(120deg, var(--sky), var(--teal));
    color: var(--charcoal);
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    transform: rotate(90deg);
    box-shadow: 0 16px 38px rgba(102, 185, 232, 0.28);
    transition: all 0.3s ease;
}

.request-btn:hover {
    right: -36px;
    background: var(--charcoal);
    color: #fff;
    box-shadow: 0 20px 48px rgba(43, 42, 41, 0.26);
}

.sticky_contact {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 998;
    display: none;
    background: rgba(43, 42, 41, 0.94);
    backdrop-filter: blur(16px);
}

.sticky_contact ul {
    width: 100%;
    padding: 0;
    list-style: none;
}

.sticky_contact li {
    width: 50%;
}

.sticky_contact a {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 54px;
    color: #fff;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.sticky_contact li + li a {
    background: linear-gradient(120deg, var(--sky), var(--teal));
    color: var(--charcoal);
}

.modal-form {
    background:
        linear-gradient(135deg, rgba(43, 42, 41, 0.9), rgba(43, 42, 41, 0.82)),
        url("https://images.unsplash.com/photo-1600334129128-685c5582fd35?auto=format&fit=crop&w=1200&q=85");
    background-position: center;
    background-size: cover;
}

.modal-body .btn-close {
    position: absolute;
    top: -18px;
    right: -18px;
    z-index: 2;
    opacity: 1;
}

.reveal {
    opacity: 0;
    transform: translateY(26px);
    transition: opacity 0.75s ease, transform 0.75s ease;
}

.reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}



.preferred-spa-section {
    padding: 80px 0;
    background: #d8f2f8;
}

.preferred-spa-title {
    margin: 0 0 8px;
    color: #2b2a29;
    font-family: 'Libre Baskerville', serif;
    font-size: 24px;
    font-weight: 700;
    line-height: 1.25;
}

.preferred-spa-box {
    padding: 28px 24px;
}

.preferred-spa-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 34px 70px;
}

.preferred-spa-item {
    display: flex;
    align-items: center;
    gap: 18px;
    min-height: 46px;
}

.preferred-spa-item i {
    flex: 0 0 42px;
    width: 42px;
    color: #66b9e8;
    font-size: 34px;
    line-height: 1;
    text-align: center;
}

.preferred-spa-item span {
    color: rgba(43, 42, 41, 0.68);
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 600;
    line-height: 1.35;
}
.wellness-steps-section {
    padding: 105px 0;
    background: #fbf8f1;
}

.wellness-steps-section h2 {
    margin-bottom: 18px;
    color: #2b2a29;
}

.wellness-steps-section p {
    max-width: 680px;
    margin: 0 auto;
    color: rgba(43, 42, 41, 0.72);
}

.wellness-steps-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 24px;
}

.wellness-step-card {
    position: relative;
    text-align: center;
}

.wellness-step-image {
    position: relative;
    width: 70%;
    aspect-ratio: 1 / 1;
    margin-bottom: 20px;
    overflow: hidden;
    border-radius: 50%;
    border: 4px solid rgba(102, 185, 232, 0.45);
    box-shadow: 0 18px 42px rgba(43, 42, 41, 0.12);
    margin: auto;
}

.wellness-step-image::after {
    content: "";
    position: absolute;
    inset: 8px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.7);
    pointer-events: none;
}

.wellness-step-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.55s ease;
}

.wellness-step-card h3 {
    margin: 0 auto;
    max-width: 190px;
    color: #000000;
    font-size: 28px;
    line-height: 1.28;
    padding-top: 20px;
}

.wellness-step-card:hover .wellness-step-image img {
    transform: scale(1.08);
}


.spa-chain-section {
    padding: 100px 0;
    background: #ffffff;
}


.spa-chain-panel h2 {
    max-width: 640px;
    margin-bottom: 20px;
    color: #2b2a29;
}

.spa-chain-panel p {
    max-width: 740px;
    margin-bottom: 30px;
    color: rgba(43, 42, 41, 0.72);
}

.spa-chain-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
    max-width: 680px;
}

.spa-chain-stats div {
    padding: 22px 18px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.76);
    border: 1px solid rgba(102, 185, 232, 0.22);
    box-shadow: 0 14px 34px rgba(43, 42, 41, 0.06);
    text-align: center;
}

.spa-chain-stats strong {
    display: block;
    color: #2b2a29;
    font-family: 'Libre Baskerville', serif;
    font-size: 34px;
    font-weight: 700;
    line-height: 1;
}

.spa-chain-stats span {
    display: block;
    margin-top: 8px;
    color: rgb(0, 0, 0);
    font-family: 'Inter', sans-serif;
    font-size: 17px;
    font-weight: 500;
}

.spa-chain-cta {
    position: relative;
    max-height: 450px;
    overflow: hidden;
    border-radius: 22px;
    box-shadow: 0 22px 56px rgba(43, 42, 41, 0.14);
}

.spa-chain-cta::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(43, 42, 41, 0.02), rgba(43, 42, 41, 0.62));
}

.spa-chain-cta img {
    width: 100%;
    height: 100%;
    min-height: 390px;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.spa-chain-cta .btn-gradient-fill {
    position: absolute;
    left: 28px;
    right: 28px;
    bottom: 28px;
    z-index: 2;
}

.spa-chain-cta:hover img {
    transform: scale(1.06);
}

.spa-video-section {
    padding: 105px 0;
    background: #d8f2f8
;
}

.spa-video-section h2 {
    margin-bottom: 18px;
    color: #2b2a29;
}

.spa-video-section p {
    max-width: 720px;
    margin: 0 auto;
    color: rgba(43, 42, 41, 0.72);
}

.spa-video-wrap {
    position: relative;
    overflow: hidden;
    max-width: 1100px;
    margin: 0 auto;
    aspect-ratio: 16 / 9;
    border-radius: 24px;
    border: 1px solid rgba(102, 185, 232, 0.28);
    background: #2b2a29;
    box-shadow: 0 24px 70px rgba(43, 42, 41, 0.16);
}

.spa-video-wrap iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
}
.spa-philosophy-section {
    position: relative;
    min-height: 560px;
    display: flex;
    align-items: center;
    padding: 120px 0;
    overflow: hidden;
}

.spa-philosophy-bg,
.spa-philosophy-overlay {
    position: absolute;
    inset: 0;
}

.spa-philosophy-bg {
    background-image: url("https://images.unsplash.com/photo-1544161515-4ab6ce6db874?auto=format&fit=crop&w=1800&q=88");
    background-position: center;
    background-size: cover;
    transform: scale(1.02);
}

.spa-philosophy-overlay {
    background:
        linear-gradient(135deg, rgba(43, 42, 41, 0.493), rgba(43, 42, 41, 0.411)),
        linear-gradient(180deg, rgba(43, 42, 41, 0.18), rgba(43, 42, 41, 0.521));
}

.spa-philosophy-section h2 {
    margin-bottom: 20px;
    color: #ffffff;
}

.spa-philosophy-section p {
    max-width: 700px;
    margin: 0 auto 32px;
    color: rgba(255, 255, 255, 0.84);
    font-size: 18px;
    line-height: 1.75;
}

.spa-philosophy-section .btn-gradient-fill {
    min-width: 190px;
}
.google-testimonial-section {
    padding: 105px 0;
    background: #fbf8f1;
}

.google-testimonial-section h2 {
    margin-bottom: 18px;
    color: #2b2a29;
}

.google-testimonial-section p {
    max-width: 720px;
    margin: 0 auto;
    color: rgba(43, 42, 41, 0.72);
}

.google-testimonial-carousel {
    position: relative;
    max-width: 860px;
    margin: 0 auto;
    padding: 0 70px 58px;
}

.google-testimonial-card {
    min-height: 330px;
    padding: 54px 64px;
    border-radius: 24px;
    background: #ffffff;
    border: 1px solid rgba(102, 185, 232, 0.24);
    text-align: center;
}

.google-testimonial-stars {
    display: flex;
    justify-content: center;
    gap: 7px;
    margin-bottom: 24px;
    color: #66b9e8;
    font-size: 18px;
}

.google-testimonial-card p {
    max-width: 680px;
    margin: 0 auto 28px;
    color: rgba(43, 42, 41, 0.78);
    font-size: 20px;
    line-height: 1.75;
}

.google-testimonial-author span {
    display: block;
    color: #2b2a29;
    font-family: 'Libre Baskerville', serif;
    font-size: 22px;
    font-weight: 700;
}

.google-testimonial-author small {
    display: block;
    margin-top: 6px;
    color: rgba(43, 42, 41, 0.58);
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 600;
}

.google-testimonial-control {
    top: 42%;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, #66b9e8, #86cee0);
    color: #2b2a29;
    opacity: 1;
    transition: all 0.3s ease;
}

.google-testimonial-control:hover {
    background: #2b2a29;
    color: #ffffff;
}

.google-testimonial-control.carousel-control-prev {
    left: 0;
}

.google-testimonial-control.carousel-control-next {
    right: 0;
}

.google-testimonial-control i {
    font-size: 16px;
}

.google-testimonial-indicators {
    bottom: 0;
    margin-bottom: 0;
}

.google-testimonial-indicators button {
    width: 9px !important;
    height: 9px !important;
    border: 0 !important;
    border-radius: 50%;
    background-color: rgba(43, 42, 41, 0.28) !important;
    opacity: 1 !important;
}

.google-testimonial-indicators button.active {
    width: 28px !important;
    border-radius: 999px;
    background-color: #66b9e8 !important;
}


.spa-gallery-section {
    padding: 105px 0;
    background: #ffffff;
    overflow: hidden;
}

.spa-gallery-section h2 {
    margin-bottom: 20px;
    color: #2b2a29;
}

.spa-gallery-section p {
    max-width: 520px;
    margin-bottom: 30px;
    color: rgba(43, 42, 41, 0.72);
}

.spa-gallery-3d {
    position: relative;
    min-height: 560px;
    perspective: 1200px;
}

.gallery-card {
    position: absolute;
    overflow: hidden;
    border-radius: 24px;
    border: 1px solid rgba(102, 185, 232, 0.28);
    background: #ffffff;
    box-shadow: 0 28px 70px rgba(43, 42, 41, 0.16);
    transition: transform 0.55s ease, box-shadow 0.55s ease, z-index 0.55s ease;
}

.gallery-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.65s ease;
}

.gallery-card-1 {
    top: 36px;
    left: 20px;
    z-index: 2;
    width: 42%;
    height: 250px;
    transform: rotateY(18deg) rotateZ(-4deg);
}

.gallery-card-2 {
    top: 0;
    right: 38px;
    z-index: 4;
    width: 52%;
    height: 340px;
    transform: rotateY(-12deg) rotateZ(3deg);
}

.gallery-card-3 {
    left: 78px;
    bottom: 34px;
    z-index: 5;
    width: 48%;
    height: 310px;
    transform: rotateY(14deg) rotateZ(3deg);
}

.gallery-card-4 {
    right: 0;
    bottom: 76px;
    z-index: 3;
    width: 38%;
    height: 230px;
    transform: rotateY(-18deg) rotateZ(-5deg);
}

.gallery-card:hover {
    z-index: 9;
    transform: rotateY(0deg) rotateZ(0deg) translateY(-10px) scale(1.04);
    box-shadow: 0 34px 90px rgba(43, 42, 41, 0.22);
}

.gallery-card:hover img {
    transform: scale(1.08);
}


@media (max-width: 1199px) {

     .wellness-steps-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 34px 24px;
    }
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .service-tile.large {
        min-height: 520px;
    }
    .spa-chain-panel {
        padding: 40px;
    }

    .spa-chain-stats strong {
        font-size: 30px;
    }
     .spa-video-wrap {
        max-width: 900px;
    }
    .spa-philosophy-section {
        min-height: 520px;
        padding: 105px 0;
    }
    .google-testimonial-carousel {
        max-width: 820px;
    }
    .spa-gallery-3d {
        min-height: 520px;
    }

    .gallery-card-2 {
        height: 315px;
    }

    .gallery-card-3 {
        height: 285px;
    }
}

@media (max-width: 991px) {
     .wellness-steps-section {
        padding: 85px 0;
    }

    .wellness-step-card h3 {
        font-size: 21px;
    }

    .preferred-spa-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 28px 42px;
    }
    .site-header {
        padding: 10px 0;
    }

    .navbar-collapse {
        margin-top: 14px;
        padding: 18px;
        border-radius: 18px;
        background: rgba(255, 255, 255, 0.94);
        box-shadow: 0 18px 40px rgba(43, 42, 41, 0.08);
    }

    .navbar-nav {
        gap: 0;
        margin-bottom: 16px;
    }

    .header-cta {
        width: 100%;
    }

    .spa-hero {
        padding: 140px 0 80px;
    }

    .image-stack {
        min-height: auto;
        padding-bottom: 80px;
    }

    .image-stack .main-img {
        width: 88%;
        height: 470px;
    }

    .image-stack .floating-img {
        width: 44%;
        height: 230px;
    }

    .cta-panel {
        align-items: flex-start;
        flex-direction: column;
    }

    .footer-booking {
        padding: 78px 0 28px;
    }

    .footer-booking__card {
        padding: 34px;
    }

    .footer-subscribe {
        padding-right: 0;
    }

    .footer-call {
        padding-left: 0;
        padding-top: 30px;
        border-left: 0;
        border-top: 1px solid rgba(43, 42, 41, 0.14);
    }

    .footer-social {
        justify-content: flex-start;
    }

    .footer-bottom {
        flex-direction: column;
    }

    .site-footer .text-lg-end {
        text-align: left !important;
    }
    .spa-chain-section {
        padding: 85px 0;
    }

    .spa-chain-cta {
        min-height: 340px;
    }

    .spa-chain-cta img {
        min-height: 340px;
    }
      .spa-video-section {
        padding: 85px 0;
    }
     .spa-philosophy-section {
        min-height: 500px;
        padding: 90px 0;
    }
    .google-testimonial-section {
        padding: 85px 0;
    }

    .google-testimonial-carousel {
        padding: 0 58px 56px;
    }

    .google-testimonial-card {
        padding: 46px 44px;
    }
    .spa-gallery-section {
        padding: 85px 0;
    }

    .spa-gallery-section p {
        max-width: 100%;
    }

    .spa-gallery-3d {
        min-height: 520px;
        margin-top: 10px;
    }
}


@media (max-width: 768px) {
    h1 {
        font-size: 46px;
    }

    h2 {
        font-size: 36px;
    }

    h3 {
        font-size: 30px;
    }

    .section {
        padding: 74px 0;
    }

    .hero-subtitle {
        font-size: 17px;
    }

    .trust-grid > div {
        border-bottom: 1px solid rgba(43, 42, 41, 0.08);
    }

    .trust-grid > div:nth-child(2n) {
        border-right: 0;
    }

    .trust-grid > div:nth-child(3),
    .trust-grid > div:nth-child(4) {
        border-bottom: 0;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .service-tile,
    .service-tile.large,
    .service-tile.wide {
        grid-column: auto;
        grid-row: auto;
        min-height: 360px;
    }

    .benefits-section {
        min-height: auto;
        padding: 90px 0;
    }

    .contact-copy,
    .form_wrapper {
        padding: 30px;
    }

    .sticky_contact {
        display: block;
    }

    body {
        padding-bottom: 54px;
    }

    .wellness-steps-section {
        padding: 75px 0;
    }

    .wellness-steps-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .wellness-step-card h3 {
        font-size: 20px;
    }
    .spa-chain-section {
        padding: 75px 0;
    }

    .spa-chain-panel {
        padding: 30px;
    }

    .spa-chain-stats {
        grid-template-columns: 1fr;
    }
    .spa-video-section {
        padding: 75px 0;
    }

    .spa-video-wrap {
        border-radius: 18px;
    }
    .spa-philosophy-section {
        min-height: auto;
        padding: 82px 0;
    }

    .spa-philosophy-section p {
        font-size: 16px;
    }
    google-testimonial-section {
        padding: 75px 0;
    }

    .google-testimonial-carousel {
        padding: 0 0 56px;
    }

    .google-testimonial-card {
        min-height: auto;
        padding: 38px 28px;
    }

    .google-testimonial-card p {
        font-size: 17px;
    }

    .google-testimonial-control {
        top: auto;
        bottom: 0;
        width: 42px;
        height: 42px;
    }
    .google-testimonial-control.carousel-control-prev {
        left: calc(50% - 78px);
    }

    .google-testimonial-control.carousel-control-next {
        right: calc(50% - 78px);
    }
    .spa-gallery-section {
        padding: 75px 0;
    }

    .spa-gallery-3d {
        min-height: auto;
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 18px;
        perspective: none;
    }

    .gallery-card,
    .gallery-card-1,
    .gallery-card-2,
    .gallery-card-3,
    .gallery-card-4 {
        position: relative;
        top: auto;
        right: auto;
        bottom: auto;
        left: auto;
        width: 100%;
        height: 240px;
        transform: none;
        border-radius: 18px;
    }

    .gallery-card:hover {
        transform: translateY(-6px);
    }
}

@media (max-width: 575px) {

    .preferred-spa-section {
        padding: 60px 0;
    }

    .preferred-spa-title {
        font-size: 22px;
        margin-bottom: 12px;
    }

    .preferred-spa-box {
        padding: 24px 18px;
    }

    .preferred-spa-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .preferred-spa-item i {
        flex-basis: 38px;
        width: 38px;
        font-size: 30px;
    }

    .preferred-spa-item span {
        font-size: 15px;
    }
    .spa-brand .brand-mark,
    .footer-brand .brand-mark {
        width: 46px;
        height: 46px;
        font-size: 20px;
    }

    .spa-brand .brand-text strong,
    .footer-brand strong {
        font-size: 21px;
    }

    .spa-brand .brand-text small,
    .footer-brand small {
        font-size: 10px;
        letter-spacing: 0.12em;
    }

    h1 {
        font-size: 40px;
    }

    h2 {
        font-size: 32px;
    }

    .btn-gradient-fill,
    .line_btn {
        width: 100%;
    }

    .hero-points span {
        width: 100%;
        justify-content: center;
    }

    .image-stack {
        padding-bottom: 0;
    }

    .image-stack .main-img,
    .image-stack .floating-img {
        position: static;
        width: 100%;
        height: 330px;
        border: 0;
    }

    .image-stack .floating-img {
        margin-top: 18px;
        height: 220px;
    }

    .service-tile div {
        padding: 24px;
    }

    .service-tile h3 {
        font-size: 28px;
    }

    .cta-panel {
        padding: 30px;
    }

    .footer-booking__head h2 {
        font-size: 16px;
        letter-spacing: 0.12em;
    }

    .script-title {
        font-size: 34px;
    }

    .footer-booking__card {
        padding: 26px 22px;
    }

    .footer-call a {
        font-size: 18px;
        letter-spacing: 0.08em;
    }

    .footer-note,
    .footer-links a,
    .footer-contact,
    .footer-contact a {
        font-size: 13px;
    }

    .modal-body .btn-close {
        top: 8px;
        right: 8px;
    }
    .wellness-steps-grid {
        grid-template-columns: 1fr;
        max-width: 280px;
        margin: 0 auto;
    }

    .wellness-step-card h3 {
        font-size: 24px;
    }
    .spa-chain-panel {
        padding: 24px 20px;
        border-radius: 18px;
    }

    .spa-chain-cta {
        min-height: 300px;
        border-radius: 18px;
    }

    .spa-chain-cta img {
        min-height: 300px;
    }

    .spa-chain-cta .btn-gradient-fill {
        left: 18px;
        right: 18px;
        bottom: 18px;
    }
     .spa-video-wrap {
        border-radius: 14px;
    }
     .spa-philosophy-section {
        padding: 72px 0;
    }
    .google-testimonial-card {
        padding: 34px 22px;
        border-radius: 18px;
    }

    .google-testimonial-card p {
        font-size: 16px;
    }

    .google-testimonial-author span {
        font-size: 20px;
    }
     .spa-gallery-3d {
        grid-template-columns: 1fr;
    }

    .gallery-card,
    .gallery-card-1,
    .gallery-card-2,
    .gallery-card-3,
    .gallery-card-4 {
        height: 250px;
    }
}





/* foote */
.site-footer {
    position: relative;
    padding: 88px 0 34px;
    overflow: hidden;
    background:
        linear-gradient(rgba(251, 248, 241, 0.96), rgba(251, 248, 241, 0.96)),
        url("https://images.unsplash.com/photo-1515377905703-c4788e51af15?auto=format&fit=crop&w=1800&q=85");
    background-position: center;
    background-size: cover;
    color: #2b2a29;
    font-family: 'Inter', sans-serif;
}

.site-footer::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(135deg, rgba(102, 185, 232, 0.08), rgba(134, 206, 224, 0.05)),
        radial-gradient(circle at 18% 20%, rgba(102, 185, 232, 0.12), transparent 24%),
        radial-gradient(circle at 85% 18%, rgba(134, 206, 224, 0.14), transparent 26%);
    pointer-events: none;
}

.site-footer .container {
    position: relative;
    z-index: 2;
}

.footer-main-row {
    row-gap: 42px;
}

.footer-brand {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 26px;
}

.footer-brand .brand-mark {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 58px;
    height: 58px;
    border-radius: 50%;
    background: linear-gradient(135deg, #66b9e8, #86cee0);
    color: #2b2a29;
    font-family: 'Libre Baskerville', serif;
    font-size: 23px;
    font-weight: 700;
    box-shadow: 0 14px 32px rgba(102, 185, 232, 0.3);
}

.footer-brand strong {
    display: block;
    color: #2b2a29;
    font-family: 'Libre Baskerville', serif;
    font-size: 25px;
    font-weight: 700;
    line-height: 1.1;
}

.footer-brand small {
    display: block;
    margin-top: 6px;
    color: rgba(43, 42, 41, 0.64);
    font-family: 'Inter', sans-serif;
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
}

.footer-note {
    max-width: 360px;
    margin: 0 0 30px;
    color: #333333;
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 500;
    line-height: 1.8;
}

.site-footer h4 {
    position: relative;
    margin: 0 0 24px;
    padding-bottom: 12px;
    color: #2b2a29;
    font-family: 'Libre Baskerville', serif;
    font-size: 22px;
    font-weight: 700;
    line-height: 1.25;
}

.site-footer h4::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 42px;
    height: 2px;
    background: linear-gradient(90deg, #66b9e8, #86cee0);
}

.footer-links {
    display: grid;
    gap: 13px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.footer-links a,
.footer-contact,
.footer-contact a {
    color: #333333;
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 500;
    line-height: 1.7;
    transition: color 0.3s ease, transform 0.3s ease;
}

.footer-links a {
    display: inline-block;
}

.footer-links a:hover,
.footer-contact a:hover {
    color: #277fae;
    transform: translateX(4px);
}

.footer-contact {
    margin-top: 22px;
    padding: 18px 18px 0;
    border-top: 1px solid rgba(43, 42, 41, 0.12);
}

.footer-social {
    display: flex;
    gap: 12px;
    margin-top: 0;
}

.footer-social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: 1px solid rgba(43, 42, 41, 0.16);
    background: rgba(255, 255, 255, 0.7);
    color: #2b2a29;
    font-size: 15px;
    transition: all 0.3s ease;
}

.footer-social a:hover {
    border-color: #66b9e8;
    background: linear-gradient(135deg, #66b9e8, #86cee0);
    color: #2b2a29;
    transform: translateY(-4px);
}

.footer-bottom {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    margin-top: 62px;
    padding-top: 28px;
    border-top: 1px solid rgba(43, 42, 41, 0.14);
}

.footer-bottom p {
    margin: 0;
    color: rgba(43, 42, 41, 0.78);
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 500;
}

.footer-legal {
    display: flex;
    align-items: center;
    gap: 30px;
}

.footer-legal a {
    color: rgba(43, 42, 41, 0.68);
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 500;
    transition: color 0.3s ease;
}

.footer-legal a:hover {
    color: #277fae;
}

.footer-top-btn {
    position: absolute;
    right: 30px;
    bottom: 68px;
    z-index: 3;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border-radius: 0;
    background: linear-gradient(135deg, #66b9e8, #86cee0);
    color: #2b2a29;
    font-size: 16px;
    box-shadow: 0 16px 34px rgba(102, 185, 232, 0.28);
    transition: all 0.3s ease;
}

.footer-top-btn:hover {
    background: #2b2a29;
    color: #ffffff;
    transform: translateY(-4px);
}
.footer-contact {
    display: grid;
    gap: 12px;
    margin-top: 22px;
    padding: 18px 18px 0;
    border-top: 1px solid rgba(43, 42, 41, 0.12);
}

.footer-contact p {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin: 0;
    color: rgba(43, 42, 41, 0.68);
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    font-weight: 500;
    line-height: 1.6;
}

.footer-contact i {
    flex: 0 0 18px;
    margin-top: 4px;
    color: #66b9e8;
    font-size: 15px;
    text-align: center;
}

.footer-contact a,
.footer-contact span {
    color: rgba(43, 42, 41, 0.68);
    font-family: 'Inter', sans-serif;
    transition: color 0.3s ease;
}

.footer-contact a:hover {
    color: #277fae;
}


@media (max-width: 1199px) {
    .site-footer h4 {
        font-size: 20px;
    }

    .footer-links a,
    .footer-contact,
    .footer-contact a {
        font-size: 14px;
    }
}

@media (max-width: 991px) {
    .site-footer {
        padding: 78px 0 32px;
    }

    .footer-bottom {
        margin-top: 50px;
    }

    .footer-top-btn {
        right: 24px;
        bottom: 82px;
    }
}

@media (max-width: 768px) {
    .site-footer {
        padding: 72px 0 88px;
    }

    .footer-bottom {
        align-items: flex-start;
        flex-direction: column;
        margin-top: 44px;
    }

    .footer-legal {
        gap: 20px;
    }

    .footer-top-btn {
        right: 20px;
        bottom: 30px;
        width: 48px;
        height: 48px;
    }
}

@media (max-width: 575px) {
    .footer-brand .brand-mark {
        width: 50px;
        height: 50px;
        font-size: 20px;
    }

    .footer-brand strong {
        font-size: 21px;
    }

    .footer-note {
        max-width: 100%;
        font-size: 14px;
    }

    .site-footer h4 {
        margin-bottom: 18px;
        font-size: 19px;
    }

    .footer-links {
        gap: 11px;
    }

    .footer-contact {
        padding-left: 0;
        padding-right: 0;
    }

    .footer-legal {
        align-items: flex-start;
        flex-direction: column;
        gap: 10px;
    }
}


/* popup */
.booking-modal .modal-dialog {
    transform: translateY(80px);
    transition: transform 0.35s ease-out;
}

.booking-modal.show .modal-dialog {
    transform: translateY(0);
}

.booking-modal-dialog {
    max-width: 920px;
}

.booking-modal-content {
    position: relative;
    overflow: hidden;
    border-radius: 22px;
    background: #ffffff;
    box-shadow: 0 30px 90px rgba(43, 42, 41, 0.28);
}

.booking-modal-close {
    position: absolute;
    top: 14px;
    right: 14px;
    z-index: 5;
    width: 34px;
    height: 34px;
    padding: 8px;
    border-radius: 50%;
    background-color: #ffffff;
    opacity: 1;
    box-shadow: 0 10px 28px rgba(43, 42, 41, 0.18);
}

.booking-modal-form {
    height: 100%;
    padding: 42px;
    background: #ffffff;
}

.booking-modal-form .title {
    color: var(--charcoal);
}

.booking-modal-text {
    margin-bottom: 0;
    color: rgba(43, 42, 41, 0.68);
    font-size: 15px;
    line-height: 1.6;
}

.booking-modal-image {
    height: 100%;
    min-height: 560px;
}

.booking-modal-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.booking-modal .form-control {
    min-height: 52px;
    border-radius: 12px;
    border: 1px solid rgba(43, 42, 41, 0.12);
    background: #ffffff;
    color: var(--charcoal);
    font-size: 15px;
    padding: 13px 15px;
    box-shadow: none;
}

.booking-modal textarea.form-control {
    min-height: 116px;
    resize: vertical;
}

.booking-modal .form-control:focus {
    border-color: var(--sky);
    box-shadow: 0 0 0 4px rgba(102, 185, 232, 0.16);
}

@media (max-width: 991px) {
    .booking-modal-dialog {
        max-width: calc(100% - 24px);
    }

    .booking-modal-form {
        padding: 34px 26px;
    }
}

@media (max-width: 575px) {
    .booking-modal-form {
        padding: 30px 20px;
    }

    .booking-modal-close {
        top: 10px;
        right: 10px;
    }
}
