:root {
    --color-bg: #f9fafb;
    --color-text: #0f172a;
    --radius-xl: 1.5rem;
    --shadow-soft: 0 25px 60px rgba(9, 43, 78, 0.15);
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    margin: 0;
    height: 100%;
    overflow-x: hidden;
    overflow-y: auto;
}

body {
    margin: 0;
    min-height: 100%;
    font-family: 'Poppins', sans-serif;
    background-color: var(--color-bg);
    color: var(--color-text);
    line-height: 1.7;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Playfair Display', serif;
    color: var(--color-primary);
    letter-spacing: 0.01em;
}

p {
    margin-bottom: 1rem;
}

a {
    color: inherit;
}

.link-accent {
    color: var(--color-accent);
    text-decoration: none;
    font-weight: 600;
}

.link-accent:hover {
    color: var(--color-primary);
}

.section-padding {
    padding: 5rem 0;
}

@media (max-width: 767.98px) {
    .section-padding {
        padding: 3.5rem 0;
    }
}

.brand-logo {
    width: 82px;
    height: 82px;
    object-fit: contain;
}

@media (max-width: 767px) {
    .brand-logo {
        width: 60px;
        height: 60px;
    }
}

.badge-soft {
    display: inline-flex;
    align-items: center;
    padding: 0.35rem 1.1rem;
    border-radius: 999px;
    background: rgba(91, 174, 190, 0.2);
    color: var(--color-primary);
    font-weight: 600;
    font-size: 0.85rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.btn-rounded {
    border-radius: var(--radius-xl);
}

.btn-primary {
    background-color: var(--color-accent);
    border-color: var(--color-accent);
    color: #fff;
    font-weight: 600;
    padding: 0.85rem 2.1rem;
    box-shadow: 0 18px 35px rgba(68, 162, 148, 0.4);
    transition: transform 0.3s ease, background 0.3s ease;
}

.btn-primary:hover,
.btn-primary:focus {
    background-color: var(--color-primary);
    border-color: var(--color-primary);
    transform: translateY(-2px);
}

.btn-outline-light {
    border-radius: var(--radius-xl);
    border-width: 2px;
    padding: 0.85rem 2.1rem;
    font-weight: 600;
    color: #fff;
}

.btn-outline-light:hover,
.btn-outline-light:focus {
    background: #fff;
    color: var(--color-primary);
}

.btn-outline-dark {
    border-radius: var(--radius-xl);
    padding: 0.8rem 2rem;
    border-width: 2px;
    color: var(--color-primary);
}

.btn-outline-dark:hover,
.btn-outline-dark:focus {
    background: var(--color-primary);
    color: #fff;
}

.rounded-xl {
    border-radius: var(--radius-xl);
}

.shadow-soft {
    box-shadow: var(--shadow-soft);
}


/* Navbar */

.main-navbar {
    background: transparent;
    transition: background 0.3s ease, box-shadow 0.3s ease, padding 0.3s ease;
}

.main-navbar .navbar-brand {
    font-weight: 600;
    color: #fff;
    font-size: 0.95rem;
}

.main-navbar .nav-link {
    color: #e2e8f0;
    font-weight: 500;
    margin: 0 0.5rem;
}

.main-navbar .nav-link:hover,
.main-navbar .nav-link:focus {
    color: var(--color-accent-2);
}

@media (max-width: 767px) {
    .main-navbar {
        background: var(--color-primary) !important;
    }
}

.navbar-toggler {
    border: none;
}

.navbar-toggler-icon {
    filter: invert(1);
}

.navbar-scrolled {
    background: #fff;
    box-shadow: 0 20px 40px rgba(15, 23, 42, 0.15);
}

.navbar-scrolled .navbar-brand,
.navbar-scrolled .nav-link {
    color: var(--color-primary);
}

.navbar-darken {
    background: var(--color-primary) !important;
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.35);
}

.navbar-darken .navbar-brand,
.navbar-darken .nav-link {
    color: #fff;
}


/* Hero slider */

.hero-section {
    position: relative;
}

.hero-section .carousel,
.hero-section .carousel-inner,
.hero-section .carousel-item,
.hero-slide {
    min-height: 989px;
}

@media (max-width: 767px) {
    .hero-section .carousel,
    .hero-section .carousel-inner,
    .hero-section .carousel-item,
    .hero-slide {
        min-height: 860px !important;
    }
}

.hero-slide {
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    align-items: center;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, rgba(9, 43, 78, 0.75), rgba(9, 43, 78, 0.35));
}

.hero-section.hero-v2 {
    background: var(--color-primary);
    padding: 6rem 0;
    color: #5baebe;
    padding-top: 150px;
}

.hero-section.hero-v2 .row {
    align-items: stretch;
}

.hero-v2-content h1 {
    color: #5baebe;
    font-size: clamp(2.5rem, 3vw, 3.5rem);
    margin-bottom: 1rem;
}

.hero-v2-content p {
    color: rgba(91, 174, 190, 0.85);
    font-size: 1.05rem;
    margin-bottom: 1.5rem;
}

.hero-v2-badge {
    display: inline-block;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    font-size: 0.8rem;
    color: rgba(91, 174, 190, 0.85);
    margin-bottom: 1rem;
}

.hero-v2-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.hero-v2-cta {
    color: var(--color-primary);
    font-weight: 600;
}

.hero-v2-secondary {
    border-color: rgba(255, 255, 255, 0.4);
    color: #5baebe;
}

.hero-v2-secondary:hover,
.hero-v2-secondary:focus {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
}

.hero-v2-meta {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.7);
}

.hero-v2-gallery {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.25rem;
}

.hero-v2-gallery .gallery-item {
    background: rgba(9, 43, 78, 0.4);
    border-radius: 1.5rem;
    padding: 0.4rem;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.25);
}

.hero-v2-gallery .gallery-item.tall {
    grid-row: span 2;
}

.hero-v2-gallery .gallery-item.wide {
    grid-column: span 2;
}

.hero-v2-gallery img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 1.2rem;
    display: block;
}

@media (max-width: 991.98px) {
    .hero-section.hero-v2 {
        padding: 6.5rem 0 3rem;
    }
    .hero-v2-gallery .gallery-item.tall {
        grid-row: span 1;
    }
    .hero-v2-gallery {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 575.98px) {
    .hero-section.hero-v2 {
        padding: 6.5rem 0 3rem;
    }
    .hero-v2-actions {
        flex-direction: column;
    }
    .hero-v2-gallery {
        grid-template-columns: 1fr;
    }
    .hero-v2-gallery .gallery-item.wide {
        grid-column: span 1;
    }
}

.hero-content {
    position: relative;
    z-index: 1;
    background: rgba(9, 43, 78, 0.7);
    padding: 3rem;
    border-radius: var(--radius-xl);
    color: #fff;
    box-shadow: var(--shadow-soft);
    opacity: 0;
    top: 100px;
}

.hero-content h1 {
    font-size: clamp(2.0rem, 5vw, 2.3rem);
    color: #fff;
    margin-bottom: 1rem;
}

.hero-content p {
    font-size: 1.05rem;
    color: #e2e8f0;
}

.hero-content .badge-soft {
    background: rgba(255, 255, 255, 0.2);
    color: #fff;
}

@media (max-width: 767px) {
    .hero-content {
        top: 40px !important;
    }
}

.carousel-item.active .hero-content {
    opacity: 1;
}

.hero-animate-in {
    animation: heroTextIn 0.8s forwards;
}

@keyframes heroTextIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    filter: invert(1);
}

.hero-section .carousel-control-prev,
.hero-section .carousel-control-next {
    width: 56px;
}

.hero-scroll {
    position: absolute;
    bottom: 1.5rem;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    color: #fff;
    font-weight: 600;
}

.hero-scroll i {
    display: block;
    font-size: 1.5rem;
    animation: scrollBounce 2s infinite;
}

@keyframes scrollBounce {
    0%,
    100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(6px);
    }
}

.hero-buttons .btn {
    min-width: 170px;
}

.hero-cta-panel {
    position: absolute;
    bottom: 4rem;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(10px);
    border-radius: var(--radius-xl);
    padding: 1.5rem 2rem;
    color: #fff;
    text-align: center;
    width: min(90%, 540px);
    box-shadow: 0 20px 45px rgba(9, 43, 78, 0.35);
}

.hero-cta-panel h5 {
    color: #fff;
    margin-bottom: 0.5rem;
}

.hero-cta-panel p {
    margin-bottom: 1rem;
    color: #e2e8f0;
}


/* Sections */

.section-title {
    margin-bottom: 0.75rem;
}

.section-subtitle {
    color: rgba(15, 23, 42, 0.7);
}

.features-section,
.services-section,
.experience-section {
    background: #fff;
}

.feature-card {
    background: #fff;
    border-radius: var(--radius-xl);
    padding: 2rem 1.8rem;
    min-height: 220px;
    border: 1px solid rgba(9, 43, 78, 0.08);
    box-shadow: 0 18px 40px rgba(15, 23, 42, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.feature-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 30px 60px rgba(9, 43, 78, 0.15);
}

.feature-icon {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    background: rgba(91, 174, 190, 0.15);
    color: var(--color-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin: 0 auto 1rem;
}

.highlight-panel {
    background: #f0fbff;
}

.highlight-panel.alt-panel {
    background: #fff;
}

.benefit-list {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0 0;
}

.benefit-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    font-weight: 500;
}

.benefit-list i {
    color: var(--color-accent);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    line-height: 1;
    flex-shrink: 0;
}


/* Health benefits */

.health-benefits {
    background: #fff;
}

.luxury-section {
    background: linear-gradient(135deg, #06182b, #0a3052);
    color: #fff;
    position: relative;
}

.luxury-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.5rem;
    align-items: stretch;
}

.luxury-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-xl);
    padding: 1.8rem;
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.25);
    min-height: 230px;
    height: 320px;
}

.luxury-card h5 {
    color: #fff;
    margin-bottom: 0.5rem;
}

.luxury-card p {
    color: rgba(226, 232, 240, 0.8);
    margin-bottom: 0;
}

.luxury-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: rgba(91, 174, 190, 0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.4rem;
    margin-bottom: 1rem;
}

.luxury-image {
    background: rgba(255, 255, 255, 0.08);
    border-radius: calc(var(--radius-xl) * 1.1);
    padding: 1rem;
    text-align: center;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.35);
}

.luxury-image img {
    width: 100%;
    display: block;
    border-radius: var(--radius-xl);
    margin-bottom: 1.2rem;
}

.luxury-cta p {
    margin-bottom: 0.75rem;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
}

.rejuvenate-section {
    /* background: #140b07; */
    background: var(--color-primary);
}

.rejuvenate-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 2rem;
    align-items: stretch;
}

.rejuvenate-text h2 {
    font-size: clamp(2.4rem, 4vw, 3.5rem);
    color: #fff;
    margin-bottom: 1.5rem;
}

.rejuvenate-card {
    background: rgba(255, 255, 255, 0.08);
    padding: 2rem;
    border-radius: var(--radius-xl);
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.7;
}

.rejuvenate-card p:last-of-type {
    margin-bottom: 1.5rem;
}

.rejuvenate-btn {
    background: #fff;
    color: var(--color-primary);
    padding: 0.75rem 1.75rem;
}

.rejuvenate-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: calc(var(--radius-xl) * 1.2);
    box-shadow: 0 30px 70px rgba(0, 0, 0, 0.4);
}

.about-bertie {
    background: #f4f1ec;
}

.about-portrait img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.contact-section {
    background: var(--color-primary);
    color: #fff;
    padding: 0;
}

.contact-wrapper {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    min-height: 430px;
}

.contact-info {
    background: #041e38;
    padding: 3.5rem 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 1.5rem;
}

.contact-title {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    margin-bottom: 0;
}

.contact-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.contact-list li {
    display: flex;
    align-items: center;
    font-size: 0.95rem;
}

.contact-list i {
    color: var(--color-accent-2);
    margin-right: 0.75rem;
}

.contact-list a {
    color: #fff;
    text-decoration: none;
}

.contact-logo img {
    width: 110px;
    margin-bottom: 0.5rem;
}

.contact-social {
    display: flex;
    gap: 1rem;
}

.contact-social a {
    color: #fff;
    font-size: 1.2rem;
}

.contact-form-wrapper {
    background: #0f3760;
    padding: 3.5rem 3rem;
}

.contact-form-wrapper h3 {
    margin-bottom: 1.5rem;
    color: #fff;
}

.contact-form-wrapper .form-control {
    background: transparent;
    border: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 0;
    color: #fff;
}

.contact-form-wrapper .form-control:focus {
    box-shadow: none;
    border-bottom-color: var(--color-accent);
}

.contact-form-wrapper label {
    color: rgba(255, 255, 255, 0.8);
}

.contact-form-wrapper .invalid-feedback {
    color: #ff9da5;
}

.contact-form-wrapper button {
    margin-top: 0.5rem;
}

@media (max-width: 991.98px) {
    .contact-wrapper {
        grid-template-columns: 1fr;
    }
}

.faq-section {
    background: #f5f8fc;
}

.faq-intro {
    background: #fff;
    border-radius: var(--radius-xl);
    padding: 2.25rem;
    box-shadow: 0 20px 45px rgba(9, 43, 78, 0.08);
    height: 100%;
}

.faq-tag {
    font-weight: 700;
    letter-spacing: 0.15em;
    color: var(--color-accent);
    margin-bottom: 0.75rem;
}

.faq-intro h3 {
    color: var(--color-primary);
    margin-bottom: 1rem;
}

.faq-accordion .accordion-item {
    background: #fff;
    border-radius: var(--radius-xl);
    margin-bottom: 1rem;
    border: 1px solid rgba(9, 43, 78, 0.08);
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(9, 43, 78, 0.08);
}

.faq-accordion .accordion-button {
    font-weight: 600;
    color: var(--color-primary);
    padding: 1.25rem 1.5rem;
    background: transparent;
}

.faq-accordion .accordion-button:focus {
    box-shadow: none;
}

.faq-accordion .accordion-button:not(.collapsed) {
    background: rgba(91, 174, 190, 0.08);
    color: var(--color-primary);
}

.faq-accordion .accordion-body {
    color: rgba(15, 23, 42, 0.8);
    padding: 0 1.5rem 1.5rem;
}

.benefits-list {
    padding-left: 1rem;
    list-style: none;
    margin: 0;
}

.benefits-list li {
    margin-bottom: 0.5rem;
    position: relative;
    padding-left: 1.2rem;
}

.benefits-list li::before {
    content: "";
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--color-accent);
    position: absolute;
    left: 0;
    top: 0.7rem;
}

.benefits-image img {
    width: 100%;
    display: block;
    border-radius: inherit;
}


/* Services */

.service-card {
    background: #f4f8fb;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: 0 25px 55px rgba(15, 23, 42, 0.12);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.service-image {
    height: 250px;
    overflow: hidden;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.service-body {
    padding: 1.6rem;
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
    height: 100%;
}

.service-tag {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--color-accent);
}

.service-meta {
    font-size: 0.9rem;
    color: rgba(15, 23, 42, 0.65);
}

.service-plans {
    list-style: none;
    padding: 0;
    margin: 1rem 0 0;
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
}

.service-plans li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.service-plans li>div {
    flex: 1;
}

.service-plans strong {
    display: block;
    color: var(--color-primary);
}

.service-plans span {
    display: block;
    font-size: 0.9rem;
    color: rgba(15, 23, 42, 0.6);
}

.service-plan-btn {
    border-color: rgba(68, 162, 148, 0.5);
    color: var(--color-primary);
    font-weight: 600;
    padding: 0.35rem 1.2rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.7);
    box-shadow: 0 10px 20px rgba(15, 23, 42, 0.08);
    transition: all 0.25s ease;
}

.service-plan-btn:hover,
.service-plan-btn:focus {
    border-color: var(--color-primary);
    background: var(--color-primary);
    color: #fff;
    box-shadow: 0 15px 30px rgba(9, 43, 78, 0.15);
}


/* Testimonials */

.testimonials-section {
    background: #eef7fa;
}

.testimonials-section .col-md-4 {
    display: flex;
}

.testimonial-card {
    background: #fff;
    border-radius: var(--radius-xl);
    padding: 2.2rem;
    box-shadow: var(--shadow-soft);
    position: relative;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.testimonial-card::before {
    content: '"';
    font-size: 4rem;
    color: rgba(9, 43, 78, 0.1);
    position: absolute;
    top: -15px;
    left: 1.2rem;
    font-family: 'Playfair Display', serif;
}

.testimonial-author {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 1.5rem;
}

.rating i {
    color: #f8c046;
}


/* Page styles */

.page-main {
    background: #f6fbfd;
}

.page-hero {
    background: linear-gradient(120deg, #071a2c, #0d3f61 65%, var(--color-primary));
    position: relative;
    overflow: hidden;
    padding-top: 150px;
}

.page-hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at top right, rgba(255, 255, 255, 0.12), transparent 50%);
    pointer-events: none;
}

.page-hero .support-card {
    background: rgba(255, 255, 255, 0.12);
    padding: 2rem;
    border-radius: var(--radius-xl);
    backdrop-filter: blur(6px);
    box-shadow: 0 25px 55px rgba(6, 20, 32, 0.25);
}

.page-hero .support-card h4 {
    color: #fff !important;
}

.eyebrow-label {
    letter-spacing: 0.25em;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.7);
    display: inline-block;
    margin-bottom: 0.75rem;
}


/* Treatments Page */

.treatments-page {
    background: var(--color-bg);
}

.treatments-hero {
    background: linear-gradient(120deg, #071a2c, #0b3c57 65%, #092b4e);
    position: relative;
    overflow: hidden;
    padding-top: 140px;
}

.treatments-hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 80% 20%, rgba(91, 174, 190, 0.35), transparent 45%);
    pointer-events: none;
}

.treatments-hero-image {
    padding: 1rem;
    border-radius: var(--radius-xl);
    background: rgba(255, 255, 255, 0.08);
    overflow: hidden;
}

.treatments-hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: calc(var(--radius-xl) - 1rem);
}

.treatment-hero-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 0.65rem;
}

.treatment-hero-list li {
    position: relative;
    padding-left: 1.15rem;
}

.treatment-hero-list li::before {
    content: "";
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--color-accent-2);
    position: absolute;
    left: 0;
    top: 0.55rem;
}

.treatment-gallery {
    position: relative;
}

.treatment-block {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 3.25rem;
    align-items: center;
    margin-bottom: 4.5rem;
}

.treatment-block:last-child {
    margin-bottom: 0;
}

.treatment-block.reverse .treatment-image {
    order: 2;
}

.treatment-block.reverse .treatment-card {
    order: 1;
}

.treatment-image img {
    width: 100%;
    display: block;
    border-radius: 1.75rem;
    box-shadow: 0 35px 65px rgba(9, 43, 78, 0.25);
}

.treatment-card {
    background: #fff;
    border-radius: var(--radius-xl);
    padding: 2.5rem;
    box-shadow: 0 35px 70px rgba(9, 43, 78, 0.1);
    position: relative;
}

.treatment-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 2.5rem;
    width: 80px;
    height: 4px;
    border-radius: 999px;
    background: var(--color-accent);
}

.treatment-tag {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--color-accent);
    display: inline-block;
    margin-bottom: 0.75rem;
}

.treatment-card h2 {
    margin-bottom: 1rem;
}

.treatment-benefits {
    list-style: none;
    padding: 0;
    margin: 1.25rem 0;
    display: grid;
    gap: 0.5rem;
}

.treatment-benefits li {
    position: relative;
    padding-left: 1.5rem;
    color: rgba(15, 23, 42, 0.8);
}

.treatment-benefits li::before {
    content: "\f058";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    color: var(--color-accent);
    position: absolute;
    left: 0;
}

.treatment-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    font-weight: 600;
    color: var(--color-primary);
    margin-bottom: 1.25rem;
}

.treatment-meta span {
    background: rgba(91, 174, 190, 0.15);
    padding: 0.4rem 0.9rem;
    border-radius: 999px;
    font-size: 0.95rem;
}

.treatment-cta {
    background: linear-gradient(120deg, var(--color-primary), #0f4766);
}

.treatment-cta .btn {
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.25);
}

@media (max-width: 991.98px) {
    .treatment-block {
        grid-template-columns: 1fr;
        margin-bottom: 3.5rem;
    }
    .treatment-block.reverse .treatment-image,
    .treatment-block.reverse .treatment-card {
        order: unset;
    }
}

@media (max-width: 575.98px) {
    .treatment-card {
        padding: 2rem;
    }
    .treatment-card::before {
        left: 2rem;
        width: 60px;
    }
    .treatment-meta {
        flex-direction: column;
        align-items: flex-start;
    }
}

.page-title {
    font-size: clamp(2.25rem, 4vw, 3.5rem);
    /* color: #fff; */
    color: var(--color-accent-2);
}

.page-intro {
    color: rgba(255, 255, 255, 0.85);
    font-size: 1.05rem;
}

.data-list {
    list-style: none;
    padding: 0;
    margin: 1rem 0 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.data-list li {
    display: flex;
    justify-content: space-between;
    gap: 0.75rem;
    font-weight: 600;
    color: inherit;
}

.data-list span {
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 0.08em;
    color: rgba(15, 23, 42, 0.7);
}

.page-hero .data-list span {
    color: rgba(255, 255, 255, 0.8);
}

.data-list a {
    color: inherit;
    text-decoration: none;
    font-weight: 600;
}

.info-section {
    background: #fff;
}

.info-card {
    background: #fff;
    border-radius: var(--radius-xl);
    padding: 2rem;
    box-shadow: 0 25px 55px rgba(15, 23, 42, 0.08);
    /* height: 100%; */
}

.info-icon {
    width: 58px;
    height: 58px;
    border-radius: 20px;
    background: rgba(68, 162, 148, 0.12);
    color: var(--color-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.content-section {
    background: #f1f6f9;
}

.content-layout {
    display: grid;
    grid-template-columns: minmax(250px, 1fr) 2fr;
    gap: 2rem;
}

.content-sidebar .info-card {
    box-shadow: none;
    border: 1px solid rgba(15, 23, 42, 0.08);
}

.soft-card {
    background: rgba(255, 255, 255, 0.85);
}

.muted-card {
    background: #f9fbfc;
}

.content-area {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.content-block {
    background: #fff;
    border-radius: var(--radius-xl);
    padding: 2rem;
    box-shadow: 0 18px 40px rgba(15, 23, 42, 0.08);
}

.content-block h3 {
    margin-bottom: 0.75rem;
}

.content-list {
    list-style: none;
    margin: 1rem 0 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.content-list li {
    position: relative;
    padding-left: 1.5rem;
    color: rgba(15, 23, 42, 0.85);
}

.content-list li::before {
    content: "";
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--color-accent);
    position: absolute;
    left: 0;
    top: 0.5rem;
}

.content-sidebar .content-list li::before {
    background: var(--color-primary);
}


/* Experience */

.experience-wrapper {
    background: linear-gradient(120deg, var(--color-primary), #0c4670);
    border-radius: calc(var(--radius-xl) * 1.1);
    padding: 3rem;
    color: #fff;
    box-shadow: var(--shadow-soft);
}

.experience-wrapper h3 {
    color: #fff;
}

.experience-image {
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.35);
}

.experience-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}


/* Insights */

.insights-section {
    background: #fff;
}

.insight-card {
    background: #fff;
    border-radius: var(--radius-xl);
    box-shadow: 0 20px 45px rgba(9, 43, 78, 0.15);
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.insight-image {
    height: 170px;
    overflow: hidden;
}

.insight-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.insight-body {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.link-learn {
    color: var(--color-accent);
    font-weight: 600;
    text-decoration: none;
}

.link-learn:hover {
    color: var(--color-primary);
}


/* Final CTA */

.final-cta {
    background: linear-gradient(120deg, var(--color-primary), var(--color-accent));
    color: #fff;
}

.final-cta .btn {
    font-weight: 600;
    padding: 0.95rem 2.5rem;
}


/* Toast */

.toast-container {
    position: fixed;
    bottom: 1.5rem;
    right: 1.0rem;
    z-index: 1050;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.app-toast {
    background: rgba(9, 43, 78, 0.95);
    color: #fff;
    padding: 0.85rem 1.2rem;
    border-radius: 999px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.25);
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    animation: toastIn 0.4s ease;
}

.app-toast.success {
    background: rgba(68, 162, 148, 0.95);
}

.app-toast.error {
    background: rgba(180, 45, 55, 0.9);
}

@keyframes toastIn {
    from {
        opacity: 0;
        transform: translateX(20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@media (max-width: 991.98px) {
    .hero-content {
        padding: 2.2rem;
    }
    .content-layout {
        grid-template-columns: 1fr;
    }
    .experience-wrapper {
        padding: 2rem;
    }
    .luxury-grid {
        grid-template-columns: 1fr 1fr;
    }
    .luxury-image {
        grid-column: span 2;
    }
    .rejuvenate-wrapper {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 575.98px) {
    .hero-content {
        text-align: center;
    }
    .info-card {
        text-align: center;
    }
    .info-card .info-icon {
        margin-left: auto;
        margin-right: auto;
    }
    .data-list li {
        flex-direction: column;
        align-items: flex-start;
    }
    .hero-buttons .btn {
        width: 100%;
        margin-bottom: 0.75rem;
    }
    .hero-cta-panel {
        position: relative;
        left: 0;
        transform: none;
        width: 100%;
        margin: 1.5rem auto 0;
    }
    .hero-scroll {
        position: relative;
        left: 0;
        transform: none;
        margin-top: 1rem;
    }
    .luxury-grid {
        grid-template-columns: 1fr;
    }
    .luxury-image {
        grid-column: span 1;
    }
    .rejuvenate-card {
        padding: 1.5rem;
    }
    .testimonial-author {
        flex-direction: column;
        gap: 0.6rem;
    }
}

.calendly-wrap {
    min-height: 600px;
    margin: auto;
}

.calendly-wrap iframe {
    min-height: 600px;
    margin: auto;
    display: block;
}

#ctaModal .modal-dialog {
    max-width: 960px;
    margin: 1.5rem auto;
}

#ctaModal .modal-content {
    max-height: 90vh;
}

#ctaModal .modal-body {
    max-height: calc(90vh - 64px);
    padding-bottom: 0;
    overflow: hidden;
}

@media (max-width: 575.98px) {
    #ctaModal .modal-dialog {
        margin: 0.5rem;
        max-width: 100%;
    }
    #ctaModal .modal-content {
        max-height: 95vh;
    }
    #ctaModal .modal-body {
        max-height: calc(95vh - 56px);
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
        padding-right: 4px;
    }
}

.cal-service-picker .form-select {
    background-color: #f4f6f8;
}

.cal-inline-container {
    scrollbar-width: thin;
    scrollbar-color: var(--color-accent) var(--color-accent) !important;
}

.cal-inline-container::-webkit-scrollbar {
    width: 6px;
}

.cal-inline-container::-webkit-scrollbar-track {
    background: var(--color-accent) !important;
}

.cal-inline-container::-webkit-scrollbar-thumb {
    background: var(--color-accent) !important;
    border-radius: 4px;
}

/* Modal scrollbar styling */
#ctaModal .modal-body {
    scrollbar-width: thin;
    scrollbar-color: var(--color-accent) transparent;
}

#ctaModal .modal-body::-webkit-scrollbar {
    width: 8px;
}

#ctaModal .modal-body::-webkit-scrollbar-track {
    background: transparent;
}

#ctaModal .modal-body::-webkit-scrollbar-thumb {
    background: var(--color-accent);
    border-radius: 8px;
}
