:root {
    /* Colors */
    --outline-variant: #c0c8c6;
    --on-primary-fixed: #00201e;
    --surface-bright: #fdf8f6;
    --surface-container-low: #f7f3f1;
    --surface-container: #f2edeb;
    --secondary-fixed: #ffdad4;
    --secondary-fixed-dim: #ffb4a7;
    --background: #fdf8f6;
    --primary-fixed: #bdebe6;
    --on-surface: #1c1b1a;
    --on-surface-variant: #404847;
    --inverse-primary: #a2cfca;
    --primary-container: #0a3b38;
    --primary: #002422;
    /* Green */
    --secondary: #ab3425;
    /* Brown Accent */
    --secondary-container: #fc6f5a;
    --surface-container-highest: #e6e1e0;
    --surface-container-lowest: #ffffff;
    --primary-fixed-dim: #a2cfca;

    /* Typography */
    --font-serif: 'Noto Serif', serif;
    --font-sans: 'Plus Jakarta Sans', sans-serif;
}

/* =========================================
   RESET & BASE 
   ========================================= */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-family: var(--font-sans);
}

body {
    background-color: var(--background);
    color: var(--on-surface);
    line-height: 1.5;
    overflow-x: hidden;
}

/* Typography */
.font-serif {
    font-family: var(--font-serif);
}

.text-primary {
    color: var(--primary) !important;
}

.text-secondary {
    color: var(--secondary) !important;
}

.text-white {
    color: #ffffff !important;
}

.text-on-surface-variant {
    color: var(--on-surface-variant);
}

.text-primary-fixed-dim {
    color: var(--primary-fixed-dim);
}

h1,
h2,
h3,
h4,
h5,
h6 {
    color: var(--primary);
}

.section-bg-dark h1,
.section-bg-dark h2,
.section-bg-dark h3,
.section-bg-dark h4,
.section-bg-dark h5,
.section-bg-dark h6,
.section-bg-teal h1,
.section-bg-teal h2,
.section-bg-teal h3,
.section-bg-teal h4,
.section-bg-teal h5,
.section-bg-teal h6 {
    color: white;
}

.title-md {
    font-size: 1rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    font-weight: 700;
    color: var(--primary);
}

.material-symbols-outlined {
    font-variation-settings: 'FILL' 0, 'wght' 300, 'GRAD' 0, 'opsz' 24;
}

.icon-filled {
    font-variation-settings: 'FILL' 1;
}

.container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

@media (min-width: 768px) {
    .container {
        padding: 0 3rem;
    }
}

@media (min-width: 1024px) {
    .container {
        padding: 0 5rem;
    }
}

/* Buttons */
.btn {
    display: inline-block;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: inherit;
    font-weight: bold;
    text-decoration: none;
    text-align: center;
}

.btn-primary {
    background: var(--primary);
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 9999px;
}

.btn-primary:hover {
    background: var(--secondary);
    color: white;
}

.btn-white {
    background-color: white;
    color: var(--primary);
    padding: 1rem 2.5rem;
    border-radius: 9999px;
    font-size: 1.125rem;
}

.btn-white:hover {
    background: var(--secondary);
    color: white;
}

.btn-outline-white {
    background-color: transparent;
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: white;
    padding: 1rem 2.5rem;
    border-radius: 9999px;
    font-size: 1.125rem;
}

.btn-outline-white:hover {
    background: var(--secondary);
    color: white;
    border-color: var(--secondary);
}

.btn-outline-primary {
    padding: 0.75rem 2rem;
    border-radius: 9999px;
    border: 1px solid var(--primary);
    color: var(--primary);
    background: transparent;
}

.btn-outline-primary:hover {
    background: var(--secondary);
    color: white;
    border-color: var(--secondary);
}

/* Globals */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s cubic-bezier(0.5, 0, 0, 1);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

.reveal-delay-1 {
    transition-delay: 100ms;
}

.reveal-delay-2 {
    transition-delay: 200ms;
}

.reveal-delay-3 {
    transition-delay: 300ms;
}

/* HEADER & MOBILE MENU */
.hamburger-btn {
    display: none;
    background: transparent;
    border: none;
    cursor: pointer;
    color: var(--primary);
    padding: 0.5rem;
}

.hamburger-btn .material-symbols-outlined {
    font-size: 2rem;
}

@media (max-width: 1023px) {
    .hamburger-btn {
        display: block;
    }
}

.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 200;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.mobile-menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

.mobile-menu {
    position: absolute;
    top: 0;
    right: -100%;
    width: 85%;
    max-width: 320px;
    height: 100%;
    background-color: white;
    padding: 2rem 1.5rem;
    display: flex;
    flex-direction: column;
    box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
    transition: right 0.3s ease;
}

.mobile-menu-overlay.active .mobile-menu {
    right: 0;
}

.close-menu-btn {
    align-self: flex-end;
    background: transparent;
    border: none;
    cursor: pointer;
    color: var(--primary);
    margin-bottom: 2rem;
}

.close-menu-btn .material-symbols-outlined {
    font-size: 2rem;
}

.mobile-nav-links {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.mobile-link {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--primary);
    text-decoration: none;
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

/* HEADER */
.header {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 50;
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    transition: box-shadow 0.3s ease;
}

.header.shadow-sm {
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}

.header.shadow-md {
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.nav-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 1.5rem;
    max-width: 1440px;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .nav-bar {
        padding: 0.75rem 2rem;
    }
}

.nav-links {
    display: none;
}

@media (min-width: 1024px) {
    .nav-links {
        display: flex;
        gap: 2rem;
    }
}

.nav-links a {
    text-decoration: none;
    color: var(--on-surface-variant);
    font-weight: 600;
    transition: color 0.2s;
}

.nav-links a:hover {
    color: var(--secondary);
}

.nav-actions {
    display: none;
}

@media (min-width: 1024px) {
    .nav-actions {
        display: flex;
        gap: 1rem;
        align-items: center;
    }
}

/* HERO */
.hero {
    min-height: 100vh;
    position: relative;
    padding-top: 8rem;
    padding-bottom: 6rem;
    display: flex;
    align-items: center;
    background: radial-gradient(circle at 70% 50%, #0a3b38 0%, #002422 100%);
}

@media (min-width: 1024px) {
    .hero {
        min-height: 850px;
        padding-bottom: 2rem;
    }
}

.hero-content {
    display: grid;
    gap: 4rem;
    align-items: center;
    grid-template-columns: 1fr;
    position: relative;
    z-index: 10;
    width: 100%;
}

@media (min-width: 1024px) {
    .hero-content {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }
}

/* Adding Hero Form Wrapper for tablet/mobile alignment */
.hero-form-wrapper {
    display: flex;
    justify-content: center;
    width: 100%;
}

@media (min-width: 1024px) {
    .hero-form-wrapper {
        justify-content: flex-end;
    }
}

.hero-text h1 {
    font-size: 2.5rem;
    line-height: 1.1;
    margin-bottom: 2rem;
    color: white;
}

@media (max-width: 1024px) {
    .hero-text{
        text-align: center;
    }
    .hero-actions{
        justify-content: center;
    }
}
@media (min-width: 768px) {
    .hero-text h1 {
        font-size: 3.5rem;
    }
}

@media (min-width: 1024px) {
    .hero-text h1 {
        font-size: 4.5rem;
    }
}

.hero-actions {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.dp-profile {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
    color: white;
    padding: 0.5rem;
    border-radius: 9999px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s;
    margin-bottom: 2rem;
}

.dp-profile:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
    color: var(--secondary) !important;
}

.dp-profile img {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 50%;
    object-fit: cover;
}

@media (min-width: 768px) {
    .dp-profile img {
        width: 3.5rem;
        height: 3.5rem;
    }
}

.dp-profile span {
    font-weight: bold;
    padding-right: 1rem;
    font-size: 0.875rem;
}

@media (min-width: 768px) {
    .dp-profile span {
        font-size: 1rem;
    }
}

.glass-form-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    width: 100%;
    max-width: 32rem;
    padding: 2rem;
    border-radius: 32px;
    color: white;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

@media (min-width: 768px) {
    .glass-form-card {
        padding: 2.2rem;
        border-radius: 40px;
    }
}

.form-group {
    margin-bottom: 1rem;
}

.form-status-msg {
    display: none;
    padding: 0.75rem;
    border-radius: 0.75rem;
    font-size: 0.875rem;
    font-weight: 600;
    text-align: center;
    transition: all 0.3s ease;
}

.form-status-msg.success {
    background: rgba(74, 222, 128, 0.2);
    color: #4ade80;
    border: 1px solid rgba(74, 222, 128, 0.4);
}

.form-status-msg.error {
    background: rgba(248, 113, 113, 0.2);
    color: #f87171;
    border: 1px solid rgba(248, 113, 113, 0.4);
}

.form-status-msg.loading {
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.form-label {
    display: block;
    font-size: 0.875rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 0.3rem;
    margin-left: 0.25rem;
}

.form-input {
    width: 100%;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 1rem;
    padding: 1rem 1.25rem;
    color: white;
    outline: none;
    font-family: inherit;
    transition: all 0.3s;
}

.form-input::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.form-input:focus {
    border-color: var(--secondary);
    background: rgba(255, 255, 255, 0.2);
}

.form-input option {
    color: var(--primary);
}

.form-select-wrapper {
    position: relative;
}

.btn-secondary {
    width: 100%;
    background-color: var(--secondary-container);
    color: white;
    padding: 1rem;
    border-radius: 1rem;
    font-size: 1.125rem;
    margin-top: 1.2rem;
}

.btn-secondary:hover {
    background-color: var(--secondary);
    transform: scale(1.02);
}

/* MARQUEE */
.marquee-container {
    background-color: var(--primary-container);
    padding: 1.5rem 0;
    overflow: hidden;
}

.marquee-track {
    display: flex;
    white-space: nowrap;
    gap: 2rem;
    animation: marquee 30s linear infinite;
}

@media (min-width: 768px) {
    .marquee-track {
        gap: 4rem;
    }
}

.marquee-group {
    display: flex;
    gap: 2rem;
    align-items: center;
    color: var(--primary-fixed);
}

@media (min-width: 768px) {
    .marquee-group {
        gap: 4rem;
    }
}

.marquee-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1rem;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

@media (min-width: 768px) {
    .marquee-item {
        font-size: 1.25rem;
    }
}

.dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: var(--secondary);
}

@keyframes marquee {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* SECTION HELPERS */
.section {
    padding: 4rem 0;
}

@media (min-width: 768px) {
    .section {
        padding: 6rem 0;
    }
}

.section-bg-light {
    background-color: var(--surface-container-low);
}

.section-bg-dark {
    background-color: var(--primary);
    color: white;
}

.section-bg-teal {
    background-color: #004d47;
    color: white;
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

@media (min-width: 768px) {
    .section-header {
        margin-bottom: 4rem;
    }
}

.display-heading {
    font-size: 2rem;
    font-family: var(--font-serif);
    line-height: 1.2;
    color: var(--primary);
    margin-bottom: 1rem;
}

@media (min-width: 768px) {
    .display-heading {
        font-size: 2.5rem;
    }
}

@media (min-width: 1024px) {
    .display-heading {
        font-size: 3rem;
    }
}

/* EXPERTISE */
.expertise-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

@media (min-width: 640px) {
    .expertise-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .expertise-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.expertise-card {
    background-color: white;
    padding: 2rem;
    border-radius: 24px;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
    transition: box-shadow 0.3s;
}

.expertise-card:hover {
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.expertise-icon {
    font-size: 2.5rem;
    color: var(--secondary);
    margin-bottom: 1rem;
    display: block;
}

.expertise-card h3 {
    font-size: 1.25rem;
    font-weight: bold;
    margin-bottom: 0.5rem;
}

.expertise-card p {
    font-size: 0.875rem;
    color: var(--on-surface-variant);
}

.hidden-treatments {
    display: none;
    opacity: 0;
    transition: opacity 0.5s ease;
    margin-top: 1.5rem;
}

.hidden-treatments.visible {
    display: grid;
    opacity: 1;
}

/* SOUL DIFFERENCE */
.difference-layout {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    align-items: center;
}

@media (min-width: 1024px) {
    .difference-layout {
        flex-direction: row;
        gap: 4rem;
    }
}

.difference-content {
    flex: 1;
}

.difference-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-top: 2rem;
}

@media (min-width: 640px) {
    .difference-grid {
        grid-template-columns: 1fr 1fr;
    }
}

.difference-item {
    display: flex;
    gap: 1rem;
    padding: 1rem;
    border-radius: 1rem;
    transition: transform 0.3s, background-color 0.3s, box-shadow 0.3s;
    border: 1px solid transparent;
}

.difference-item:hover {
    transform: translateY(-5px);
    background: white;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.05);
    border-color: rgba(0, 0, 0, 0.05);
}

.difference-item h4 {
    font-weight: bold;
    margin-bottom: 0.25rem;
}

.difference-image {
    flex: 1;
    width: 100%;
    aspect-ratio: 1/1;
    border-radius: 32px;
    overflow: hidden;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

@media (min-width: 768px) {
    .difference-image {
        border-radius: 48px;
    }
}

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

/* PATH TO RADIANCE */
.journey-container {
    position: relative;
    max-width: 56rem;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

@media (min-width: 768px) {
    .journey-container {
        gap: 3rem;
    }
}

.journey-line {
    position: absolute;
    left: 1.95rem;
    top: 0;
    height: calc(100% - 6rem);
    width: 2px;
    background-color: rgba(255, 255, 255, 0.2);
    display: block;
}

@media (max-width: 768px) {
    .journey-line {
        left: 1.45rem;
        height: calc(100% - 5rem);
    }
}

.journey-step {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
    position: relative;
}

@media (min-width: 768px) {
    .journey-step {
        gap: 2rem;
    }
}

.journey-step-number {
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    background-color: var(--secondary);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    font-family: var(--font-serif);
    flex-shrink: 0;
    z-index: 10;
    transition: transform 0.3s;
}

@media (min-width: 768px) {
    .journey-step-number {
        width: 4rem;
        height: 4rem;
        font-size: 1.5rem;
    }
}

.journey-step:hover .journey-step-number {
    transform: scale(1.1);
    box-shadow: 0 10px 20px rgba(171, 52, 37, 0.4);
}

.journey-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 1.5rem;
    border-radius: 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    flex: 1;
    transition: background 0.3s;
}

@media (min-width: 768px) {
    .journey-card {
        padding: 2rem;
    }
}

.journey-card:hover {
    background: rgba(255, 255, 255, 0.1);
}

/* DR PROFILE */
.profile-layout {
    display: flex;
    flex-direction: column;
    gap: 4rem;
    align-items: center;
}

@media (min-width: 1024px) {
    .profile-layout {
        flex-direction: row;
    }

    .profile-image-col {
        width: 41%;
    }

    .profile-text-col {
        flex: 1;
    }
}

.profile-image-wrapper {
    position: relative;
    max-width: 500px;
    margin: 0 auto;
}

.profile-img {
    width: 100%;
    border-radius: 32px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    filter: none;
}

@media (min-width: 768px) {
    .profile-img {
        border-radius: 40px;
    }
}

.profile-badge {
    position: absolute;
    bottom: -1rem;
    right: -1rem;
    width: 6.5rem;
    height: 6.5rem;
    background-color: var(--secondary);
    color: white;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    border: 4px solid white;
    font-weight: bold;
    animation: pulse 2.5s infinite ease-in-out;
    cursor: default;
    z-index: 2;
}

@media (min-width: 768px) {
    .profile-badge {
        width: 8.5rem;
        height: 8.5rem;
        bottom: -1.5rem;
        right: -1.5rem;
        border-width: 6px;
    }
}

@keyframes pulse {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(171, 52, 37, 0.4);
    }

    70% {
        transform: scale(1.05);
        box-shadow: 0 0 0 15px rgba(171, 52, 37, 0);
    }

    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(171, 52, 37, 0);
    }
}

.profile-badge-number {
    font-size: 1.25rem;
    font-family: var(--font-serif);
}

.profile-badge-text {
    font-size: 0.5rem;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    line-height: 1.2;
}

@media (min-width: 768px) {
    .profile-badge-number {
        font-size: 1.5rem;
    }

    .profile-badge-text {
        font-size: 0.625rem;
    }
}

.profile-stats-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
    margin-bottom: 2.5rem;
}

@media (min-width: 480px) {
    .profile-stats-grid {
        grid-template-columns: 1fr 1fr;
    }
}

.profile-stat-item {
    background-color: var(--surface-container-low);
    padding: 1rem;
    border-radius: 1rem;
    border: 1px solid rgba(192, 200, 198, 0.2);
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-weight: bold;
    font-size: 0.875rem;
    transition: transform 0.3s, background-color 0.3s, box-shadow 0.3s;
    cursor: default;
}

.profile-stat-item:hover {
    transform: translateY(-5px);
    background-color: white;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.05);
    border-color: var(--secondary);
    color: var(--secondary);
}

.profile-stat-item:hover .icon-filled {
    color: var(--secondary);
}

.profile-quote {
    font-size: 1.125rem;
    font-family: var(--font-serif);
    font-style: italic;
    color: var(--on-surface-variant);
    margin-bottom: 2.5rem;
}

@media (min-width: 768px) {
    .profile-quote {
        font-size: 1.25rem;
    }
}

/* TRANSFORMATIONS SLIDER */
.transform-layout {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    align-items: flex-start;
}

@media (min-width: 1024px) {
    .transform-layout {
        grid-template-columns: 1.1fr 1fr;
        gap: 4rem;
    }
}

.ba-slider {
    position: relative;
    width: 100%;
    max-width: 550px;
    margin: 0 auto;
    height: 350px;
    border-radius: 24px;
    overflow: hidden;
    cursor: ew-resize;
    user-select: none;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    background: #ccc;
    /* Placeholder */
}

@media (min-width: 768px) {
    .ba-slider {
        height: 450px;
        border-radius: 32px;
    }
}

.ba-slider img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    pointer-events: none;
}

.ba-slider .base-img {
    z-index: 1;
}

.ba-slider .clip-img {
    z-index: 2;
    clip-path: polygon(0 0, 50% 0, 50% 100%, 0 100%);
}

.ba-slider-handle {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 4px;
    background: white;
    transform: translateX(-50%);
    pointer-events: none;
    z-index: 5;
}

.ba-slider-knob {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 40px;
    height: 40px;
    background: var(--secondary);
    color: white;
    border-radius: 50%;
    border: 4px solid white;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

@media (min-width: 768px) {
    .ba-slider-knob {
        width: 48px;
        height: 48px;
    }
}

.transform-label {
    position: absolute;
    top: 1rem;
    padding: 0.25rem 0.75rem;
    border-radius: 9999px;
    font-size: 0.625rem;
    font-weight: bold;
    z-index: 10;
    pointer-events: none;
}

@media (min-width: 768px) {
    .transform-label {
        top: 1.5rem;
        padding: 0.375rem 1rem;
        font-size: 0.75rem;
    }
}

.label-before {
    left: 1rem;
    background: rgba(0, 0, 0, 0.6);
    color: white;
    backdrop-filter: blur(8px);
}

@media (min-width: 768px) {
    .label-before {
        left: 1.5rem;
    }
}

.label-after {
    right: 1rem;
    background: var(--secondary);
    color: white;
}

@media (min-width: 768px) {
    .label-after {
        right: 1.5rem;
    }
}

/* Mini treatment tabs */
.mini-treatment-card {
    background: white;
    padding: 1rem;
    border-radius: 1rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    border: 1px solid rgba(192, 200, 198, 0.2);
    margin-bottom: 0.75rem;
    cursor: pointer;
    transition: all 0.2s;
}

@media (min-width: 768px) {
    .mini-treatment-card {
        padding: 1.25rem;
        margin-bottom: 1rem;
    }
}

.mini-treatment-card:hover {
    transform: translateX(5px);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.mini-treatment-card.active {
    border-color: var(--secondary);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
    border-left: 4px solid var(--secondary);
}

/* REVIEWS */
.reviews-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

@media (min-width: 768px) {
    .reviews-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 2rem;
    }
}

.review-card {
    background-color: var(--surface-container-low);
    padding: 2rem;
    border-radius: 32px;
    border: 1px solid rgba(192, 200, 198, 0.1);
}

@media (min-width: 768px) {
    .review-card {
        padding: 2.5rem;
        border-radius: 40px;
    }
}

.stars {
    display: flex;
    color: var(--secondary);
    margin-bottom: 1.5rem;
}

.review-text {
    font-size: 1rem;
    font-family: var(--font-serif);
    font-style: italic;
    color: var(--primary);
    line-height: 1.6;
}

@media (min-width: 768px) {
    .review-text {
        font-size: 1.125rem;
    }
}

.review-author {
    margin-top: 2rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.author-avatar {
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    background: var(--secondary);
    color: white;
}

/* FAQ */
.faq-container {
    max-width: 48rem;
    margin: 0 auto;
}

.faq-item {
    background: white;
    border-radius: 1rem;
    border: 1px solid rgba(192, 200, 198, 0.1);
    margin-bottom: 1rem;
}

.faq-summary {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.25rem;
    cursor: pointer;
    font-weight: bold;
    color: var(--primary);
    list-style: none;
    font-size: 0.9375rem;
}

@media (min-width: 768px) {
    .faq-summary {
        padding: 1.5rem;
        font-size: 1rem;
    }
}

.faq-summary::-webkit-details-marker {
    display: none;
}

.faq-icon {
    transition: transform 0.3s;
}

.faq-item[open] .faq-icon {
    transform: rotate(180deg);
}

.faq-content {
    padding: 0 1.25rem 1.25rem 1.25rem;
    color: var(--on-surface-variant);
    border-top: 1px solid rgba(192, 200, 198, 0.05);
    margin-top: 0;
    padding-top: 1.25rem;
    font-size: 0.9375rem;
}

@media (min-width: 768px) {
    .faq-content {
        padding: 0 1.5rem 1.5rem 1.5rem;
        padding-top: 1.5rem;
        font-size: 1rem;
    }
}

/* LOCATION & CTA */
.location-layout {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

@media (max-width: 1024px) {
    .location-layout{
        display: block;
    }
}
@media (min-width: 1024px) {
    .location-layout {
        flex-direction: row;
        gap: 4rem;
    }
}

.location-card {
    flex: 1;
    background-color: var(--surface-container-high);
    border-radius: 32px;
    padding: 2rem;
}

@media (min-width: 768px) {
    .location-card {
        border-radius: 48px;
        padding: 3rem;
    }
}

.location-info-row {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.location-map {
    flex: 1;
    height: 450px;
    border-radius: 32px;
    overflow: hidden;
}

@media (min-width: 768px) {
    .location-map {
        border-radius: 48px;
        min-height: 500px;
    }
}

@media (min-width: 1024px) {
    .location-map {
        height: 450px;
        min-height: 450px;
    }
}

.cta-container {
    max-width: 42rem;
    margin: 0 auto;
    text-align: center;
}

.btn-whatsapp {
    background-color: #25D366;
    color: white;
    padding: 1.25rem 2rem;
    border-radius: 1rem;
    font-size: 1rem;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    transition: transform 0.2s, background-color 0.2s;
    text-decoration: none;
    font-weight: bold;
}

@media (min-width: 768px) {
    .btn-whatsapp {
        padding: 1.25rem 2.5rem;
        font-size: 1.125rem;
    }
}

.btn-whatsapp:hover {
    transform: scale(1.02);
    background-color: #128C7E;
}

.btn-outline-glass {
    background-color: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: white;
    padding: 1.25rem 2rem;
    border-radius: 1rem;
    font-size: 1rem;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s;
}

@media (min-width: 768px) {
    .btn-outline-glass {
        padding: 1.25rem 2.5rem;
        font-size: 1.125rem;
    }
}

.btn-outline-glass:hover {
    background-color: var(--secondary);
    border-color: var(--secondary);
}

/* FLOATING BUTTON */
.floating-call-btn {
    position: fixed;
    bottom: 1.5rem;
    right: 1.5rem;
    width: 3.5rem;
    height: 3.5rem;
    background-color: var(--secondary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.3);
    z-index: 100;
    transition: transform 0.3s, background-color 0.3s;
    text-decoration: none;
}

@media (min-width: 768px) {
    .floating-call-btn {
        bottom: 2rem;
        right: 2rem;
        width: 4rem;
        height: 4rem;
    }
}

.floating-call-btn:hover {
    transform: scale(1.1);
    background-color: var(--primary);
}

.floating-call-btn .icon-filled {
    font-size: 1.75rem;
}

@media (min-width: 768px) {
    .floating-call-btn .icon-filled {
        font-size: 2rem;
    }
}

/* FOOTER */
.footer {
    background-color: #f5f5f4;
    padding: 3rem 1.5rem;
    border-top: 1px solid rgba(192, 200, 198, 0.1);
}

@media (min-width: 768px) {
    .footer {
        padding: 4rem 3rem;
    }
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2.5rem;
}

@media (min-width: 640px) {
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .footer-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 3rem;
    }
}

.footer h6 {
    font-weight: bold;
    color: var(--primary);
    margin-bottom: 1rem;
}

.footer ul {
    list-style: none;
    padding: 0;
}

.footer li {
    margin-bottom: 0.5rem;
    font-size: 0.875rem;
    color: #57534e;
}

.footer a {
    text-decoration: none;
    color: inherit;
    transition: color 0.2s;
}

.footer a:hover {
    color: var(--secondary) !important;
}

.footer-logo img {
    height: 80px;
}

@media (min-width: 768px) {
    .footer-logo img {
        height: 120px;
    }
}

.footer-text {
    font-size: 0.875rem;
    color: #78716c;
    line-height: 1.6;
}

/* =========================================
   EXTRACTED INLINE STYLES 
   ========================================= */

/* Nav & Mobile */
header .text-decoration-none {
    text-decoration: none;
}
header .btn-nav {
    padding: 0.5rem 1.5rem;
}
header .nav-logo .logo-image{
    height: 80px;
}
.mobile-nav-actions-layout {
    margin-top: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

/* Hero & Forms */
.mb-0-5 {
    margin-bottom: 0.5rem;
}

.mb-1 {
    margin-bottom: 1rem;
}

.mb-1-5 {
    margin-bottom: 1.5rem;
}

.mb-2 {
    margin-bottom: 2rem;
}

.mb-3 {
    margin-bottom: 3rem;
}

.mb-4 {
    margin-bottom: 4rem;
}

.mt-3 {
    margin-top: 3rem;
}

.mt-4 {
    margin-top: 4rem;
}

.text-color-light {
    color: rgba(255, 255, 255, 0.7);
}

.text-color-lighter {
    color: rgba(255, 255, 255, 0.8);
}

.hero-form-title {
    font-size: 1.875rem;
    margin-bottom: 0.5rem;
}

.form-select-icon {
    position: absolute;
    right: 1rem;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
    color: rgba(255, 255, 255, 0.6);
}

.select-box {
    appearance: none;
    cursor: pointer;
    padding-right: 2.5rem;
}

/* Expertise & Difference */
.text-center {
    text-align: center;
}

/* Path to Radiance & Profile */
.text-opacity-80 {
    opacity: 0.8;
}

.btn-large-text {
    font-size: 1.25rem;
}

.color-secondary {
    color: var(--secondary);
}

/* Treatments & Stories */
.treatment-title-md {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.treatment-desc-md {
    font-size: 1.125rem;
    margin-bottom: 2rem;
}

.fw-bold {
    font-weight: bold;
}

.fs-sm {
    font-size: 0.875rem;
}

.fs-xs {
    font-size: 0.75rem;
}

.flex-between-wrap {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 3rem;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.mb-0 {
    margin-bottom: 0;
}

.btn-reviews {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1.5rem;
}

/* Location & Maps */
.location-title {
    font-size: 2.5rem;
    margin-bottom: 2rem;
}

.lh-1-6 {
    line-height: 1.6;
}

.color-inherit {
    color: inherit;
}

.border-0 {
    border: 0;
}

/* Footer & Socials */
.cta-desc {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 3rem;
}

.flex-center-wrap {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.svg-icon-24 {
    width: 24px;
    height: 24px;
    fill: currentColor;
}

.footer-bg {
    padding-top: 4rem;
    padding-bottom: 2rem;
    background: var(--surface-container-low);
}

.footer-col-center {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.footer-logo-layout {
    margin-bottom: 0.5rem;
}

.footer-logo-img {
    height: 80px;
}

.footer-text-desc {
    max-width: 600px;
    margin-bottom: 1rem;
    color: var(--on-surface-variant);
    line-height: 1.8;
}

.social-links-layout {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.social-link {
    color: var(--primary);
    transition: color 0.2s;
}

.social-link:hover {
    color: var(--secondary);
}

.footer-copyright {
    width: 100%;
    border-top: 1px solid rgba(192, 200, 198, 0.5);
    padding-top: 2rem;
    display: flex;
    justify-content: center;
}