/* ----------------------------------------------------
   KIM PHỤNG BEAUTY SPA - PREMIUM STYLESHEET
   Aesthetics: Soft Beige, Terracotta Clay Red, Gold Bronze
---------------------------------------------------- */

/* Reset & Base Setup */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

:root {
    /* Color Palette */
    --color-bg-primary: #FCF8F5;    /* Soft Beige Background */
    --color-bg-secondary: #F4EAE1;  /* Light Warm Cream */
    --color-bg-tertiary: #EBE0D5;   /* Deep Warm Beige */
    
    --color-clay: #B5523C;          /* Terracotta Clay Red */
    --color-clay-dark: #9A3F2C;     /* Darker Red Clay for hover */
    --color-clay-light: #DF8975;    /* Soft Red Clay */
    
    --color-gold: #A37C4C;          /* Bronze Gold for Brand */
    --color-gold-light: #CBB190;    /* Muted Gold Accent */
    --color-gold-dark: #816035;     /* Deep Gold */
    
    --color-text-dark: #2F231D;     /* Dark Charcoal Brown for text */
    --color-text-muted: #6E5C53;    /* Muted Brown for body */
    --color-white: #FFFFFF;
    --color-shadow: rgba(47, 35, 29, 0.08);
    --color-shadow-hover: rgba(47, 35, 29, 0.16);

    /* Fonts */
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Plus Jakarta Sans', sans-serif;
    
    /* Layout & Animation Variables */
    --transition-slow: 0.8s cubic-bezier(0.25, 1, 0.5, 1);
    --transition-medium: 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    --transition-fast: 0.2s ease;
    --navbar-height: 80px;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    height: 100%;
}

body {
    font-family: var(--font-body);
    background-color: var(--color-bg-primary);
    color: var(--color-text-dark);
    line-height: 1.6;
    overflow-x: hidden;
    height: 100%;
    -webkit-font-smoothing: antialiased;
}

body.is-loading {
    overflow: hidden;
}

/* ====================================================
   PAGE LOADER
   ==================================================== */
.page-loader {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.75s cubic-bezier(0.4, 0, 0.2, 1),
                visibility 0.75s;
}

.page-loader.is-hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.page-loader__backdrop {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 50% 40%, #fff9f4 0%, var(--color-bg-primary) 55%, var(--color-bg-secondary) 100%);
}

.page-loader__orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    opacity: 0.45;
    animation: loaderOrbFloat 6s ease-in-out infinite;
}

.page-loader__orb--1 {
    width: 280px;
    height: 280px;
    top: 15%;
    left: 20%;
    background: rgba(181, 82, 60, 0.2);
}

.page-loader__orb--2 {
    width: 320px;
    height: 320px;
    bottom: 10%;
    right: 15%;
    background: rgba(163, 124, 76, 0.22);
    animation-delay: -3s;
}

@keyframes loaderOrbFloat {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(12px, -18px) scale(1.06); }
}

.page-loader__content {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 24px;
    animation: loaderContentIn 1s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

@keyframes loaderContentIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.page-loader__logo-wrap {
    position: relative;
    width: 108px;
    height: 108px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 10px;
}

.page-loader__logo-reveal {
    width: 108px;
    height: 108px;
    clip-path: inset(0 0 100% 0);
    animation: loaderLogoReveal 2.8s cubic-bezier(0.45, 0, 0.2, 1) forwards;
}

.page-loader__logo {
    display: block;
    width: 108px;
    height: 108px;
    object-fit: contain;
    transform: scale(0.96);
    animation: loaderLogoSettle 2.8s cubic-bezier(0.45, 0, 0.2, 1) forwards;
}

@keyframes loaderLogoReveal {
    0% {
        clip-path: inset(0 0 100% 0);
    }
    100% {
        clip-path: inset(0 0 0 0);
    }
}

@keyframes loaderLogoSettle {
    0% {
        opacity: 0.4;
        transform: scale(0.92);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}

.page-loader__brand {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    margin-bottom: 28px;
}

.page-loader__name {
    font-family: var(--font-heading);
    font-size: 1.85rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    color: var(--color-gold-dark);
    animation: loaderTextUp 0.9s cubic-bezier(0.22, 1, 0.36, 1) 2.4s both;
}

.page-loader__subtitle {
    font-family: var(--font-heading);
    font-style: italic;
    font-size: 0.95rem;
    color: var(--color-text-muted);
    letter-spacing: 0.08em;
    animation: loaderTextUp 0.9s cubic-bezier(0.22, 1, 0.36, 1) 2.7s both;
}

.page-loader__slogan {
    display: block;
    margin-top: 8px;
    font-family: var(--font-heading);
    font-style: italic;
    font-size: clamp(0.95rem, 2.8vw, 1.35rem);
    font-weight: 400;
    color: var(--color-clay);
    letter-spacing: 0.06em;
    white-space: nowrap;
    line-height: 1.2;
    animation: loaderTextUp 0.9s cubic-bezier(0.22, 1, 0.36, 1) 3s both;
}

@keyframes loaderTextUp {
    from {
        opacity: 0;
        transform: translateY(12px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.page-loader__progress {
    width: 160px;
    height: 3px;
    background: rgba(163, 124, 76, 0.15);
    border-radius: 999px;
    overflow: hidden;
}

.page-loader__progress-bar {
    display: block;
    height: 100%;
    width: 0;
    border-radius: inherit;
    background: linear-gradient(90deg, var(--color-gold-light), var(--color-clay));
    animation: loaderProgress 3.6s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

@keyframes loaderProgress {
    0% { width: 0; }
    70% { width: 85%; }
    100% { width: 100%; }
}

@media (prefers-reduced-motion: reduce) {
    .page-loader__orb,
    .page-loader__progress-bar,
    .page-loader__logo-reveal,
    .page-loader__logo {
        animation: none;
    }

    .page-loader__logo-reveal {
        clip-path: inset(0 0 0 0);
    }

    .page-loader__logo {
        opacity: 1;
        transform: scale(1);
    }

    .page-loader__progress-bar {
        width: 100%;
    }

    .page-loader__content,
    .page-loader__name,
    .page-loader__subtitle,
    .page-loader__slogan {
        animation: none;
        opacity: 1;
        transform: none;
    }
}

/* Typography Selection */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 600;
    letter-spacing: 0.02em;
}

p {
    color: var(--color-text-muted);
    font-weight: 400;
}

a {
    color: inherit;
    text-decoration: none;
    transition: color var(--transition-fast);
}

/* Scroll Snap Container (Desktop) */
.snap-container {
    height: 100vh;
    overflow-y: scroll;
    scroll-snap-type: y mandatory;
    scroll-behavior: smooth;
    position: relative;
}

.snap-section {
    height: 100vh;
    width: 100vw;
    scroll-snap-align: start;
    scroll-snap-stop: always;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: var(--navbar-height) 8% 40px 8%;
}

/* Sections Background Variations */
.section-hero {
    background-color: var(--color-bg-primary);
}

.section-services {
    background-color: var(--color-bg-secondary);
}

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

.section-gallery {
    background-color: var(--color-bg-secondary);
}

.section-contact {
    background-color: var(--color-bg-primary);
    padding-bottom: 20px;
}

/* Premium Buttons Styling */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 28px;
    border-radius: 50px;
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all var(--transition-medium);
    border: none;
    outline: none;
}

.btn-primary {
    background-color: var(--color-clay);
    color: var(--color-white);
    box-shadow: 0 4px 15px rgba(181, 82, 60, 0.3);
}

.btn-primary:hover {
    background-color: var(--color-clay-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(181, 82, 60, 0.4);
}

.btn-secondary {
    background-color: transparent;
    color: var(--color-text-dark);
    border: 2px solid var(--color-gold-light);
}

.btn-secondary:hover {
    background-color: var(--color-bg-secondary);
    border-color: var(--color-gold);
    color: var(--color-gold-dark);
    transform: translateY(-2px);
}

.btn-outline {
    background-color: transparent;
    color: var(--color-clay);
    border: 2px solid var(--color-clay);
}

.btn-outline:hover {
    background-color: var(--color-clay);
    color: var(--color-white);
    transform: translateY(-2px);
}

.btn-nav {
    padding: 10px 20px;
    font-size: 0.85rem;
    background-color: var(--color-clay);
    color: var(--color-white);
    box-shadow: 0 4px 10px rgba(181, 82, 60, 0.2);
}

.btn-nav:hover {
    background-color: var(--color-clay-dark);
    transform: translateY(-1px);
}

.btn-sm {
    padding: 8px 16px;
    font-size: 0.85rem;
}

.btn-block {
    width: 100%;
}

/* Wiggle animation for phone icon in button */
@keyframes phoneWiggle {
    0% { transform: rotate(0deg); }
    10% { transform: rotate(-15deg); }
    20% { transform: rotate(15deg); }
    30% { transform: rotate(-15deg); }
    40% { transform: rotate(15deg); }
    50% { transform: rotate(0deg); }
    100% { transform: rotate(0deg); }
}

.phone-wiggle {
    animation: phoneWiggle 2.5s infinite ease-in-out;
}

/* Glassmorphic Top Navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--navbar-height);
    background-color: rgba(252, 248, 245, 0.8);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    z-index: 100;
    border-bottom: 1px solid rgba(163, 124, 76, 0.1);
    transition: all var(--transition-medium);
}

.navbar.scrolled {
    height: 70px;
    background-color: rgba(252, 248, 245, 0.95);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.03);
}

.navbar-container {
    max-width: 1400px;
    height: 100%;
    margin: 0 auto;
    padding: 0 5%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* Premium SVG / Image Logo styling & animations */
.brand-logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.brand-logo-img {
    height: 50px;
    width: auto;
    display: block;
    object-fit: contain;
}

.brand-logo-img-large {
    height: 90px;
    width: auto;
    display: block;
    object-fit: contain;
    margin-bottom: 15px;
}

.brand-text {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
    line-height: 1.15;
    text-align: center;
}

.brand-name {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--color-gold-dark);
    letter-spacing: 0.1em;
}

.brand-subtitle {
    font-family: var(--font-heading);
    font-style: italic;
    font-size: 0.8rem;
    font-weight: 400;
    color: var(--color-text-muted);
    letter-spacing: 0.06em;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 35px;
}

.nav-links a {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--color-text-muted);
    position: relative;
    padding: 6px 0;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--color-gold);
    transition: width var(--transition-medium);
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--color-gold-dark);
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 15px;
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    flex-direction: column;
    gap: 6px;
}

.mobile-menu-btn .bar {
    width: 25px;
    height: 2px;
    background-color: var(--color-text-dark);
    transition: all var(--transition-fast);
}

/* Mobile Nav Overlay */
.mobile-nav-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: var(--color-bg-primary);
    z-index: 200;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 30px;
    transform: translateX(100%);
    transition: transform var(--transition-medium);
}

.mobile-nav-overlay.open {
    transform: translateX(0);
}

.mobile-close-btn {
    position: absolute;
    top: 25px;
    right: 30px;
    font-size: 2.5rem;
    background: none;
    border: none;
    cursor: pointer;
    color: var(--color-text-dark);
}

.mobile-menu-links {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 25px;
}

.mobile-menu-links a:not(.btn) {
    font-size: 1.3rem;
    font-family: var(--font-heading);
    font-weight: 500;
    color: var(--color-text-dark);
}

.btn-mobile-cta {
    margin-top: 20px;
    color: var(--color-white);
}

.btn-mobile-cta i {
    color: inherit;
}

/* Side Dots Navigation Indicator */
.side-dots {
    position: fixed;
    right: 4%;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 20px;
    z-index: 90;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: transparent;
    border: 2px solid var(--color-gold-light);
    transition: all var(--transition-medium);
    position: relative;
}

.dot::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0);
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background-color: var(--color-gold);
    transition: transform var(--transition-medium);
}

.dot:hover,
.dot.active {
    border-color: var(--color-gold);
    transform: scale(1.3);
}

.dot.active::before {
    transform: translate(-50%, -50%) scale(1);
    background-color: var(--color-gold);
}

/* --- Section Layout Content Common --- */
.section-content {
    max-width: 1400px;
    width: 100%;
    margin: 0 auto;
    position: relative;
    z-index: 10;
}

.section-tag {
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--color-gold);
    display: inline-block;
    margin-bottom: 12px;
}

.section-title {
    font-size: 2.5rem;
    color: var(--color-text-dark);
    line-height: 1.25;
}

.section-separator {
    width: 60px;
    height: 3px;
    background-color: var(--color-clay);
    margin: 20px auto 0 auto;
    border-radius: 10px;
}

.section-separator.left {
    margin-left: 0;
}

.text-center {
    text-align: center;
}

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

.decor-waves {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 320px;
    z-index: 1;
    pointer-events: none;
    overflow: hidden;
}

.decor-waves-svg {
    display: block;
    width: 110%;
    height: 100%;
    margin-left: -5%;
}

.wave-layer {
    transform-box: fill-box;
    transform-origin: center;
}

.wave-layer-fill {
    animation: waveFloatFill 8s ease-in-out infinite;
}

.wave-layer-line-1 {
    animation: waveFloatLine1 6s ease-in-out infinite;
}

.wave-layer-line-2 {
    animation: waveFloatLine2 5s ease-in-out infinite;
    animation-delay: -1.2s;
}

@keyframes waveFloatFill {
    0%, 100% {
        transform: translate(0, 0) scaleY(1);
    }
    50% {
        transform: translate(-2%, 6px) scaleY(1.03);
    }
}

@keyframes waveFloatLine1 {
    0%, 100% {
        transform: translate(0, 0);
    }
    33% {
        transform: translate(-3%, 5px);
    }
    66% {
        transform: translate(2%, -4px);
    }
}

@keyframes waveFloatLine2 {
    0%, 100% {
        transform: translate(0, 0);
    }
    40% {
        transform: translate(2.5%, 4px);
    }
    70% {
        transform: translate(-2%, -5px);
    }
}

@media (prefers-reduced-motion: reduce) {
    .wave-layer-fill,
    .wave-layer-line-1,
    .wave-layer-line-2 {
        animation: none;
    }
}

/* ====================================================
   SECTION 1: HERO
   ==================================================== */
.hero-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 50px;
    align-items: center;
}

.logo-wrapper {
    margin-bottom: 25px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.hero-title-main {
    font-size: 4rem;
    font-weight: 700;
    color: var(--color-gold-dark);
    letter-spacing: 0.08em;
    line-height: 1.1;
}

.hero-subtitle {
    font-family: var(--font-heading);
    font-style: italic;
    font-size: 1.8rem;
    color: var(--color-text-dark);
    margin-top: 5px;
    letter-spacing: 0.05em;
}

.hero-services-list {
    margin: 30px 0;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.service-item-bullet {
    display: flex;
    align-items: center;
    gap: 15px;
}

.bullet-gold-circle {
    width: 8px;
    height: 8px;
    background-color: var(--color-gold);
    border-radius: 50%;
    box-shadow: 0 0 10px rgba(163, 124, 76, 0.4);
}

.bullet-text {
    font-family: var(--font-body);
    font-size: 1.15rem;
    font-weight: 500;
    color: var(--color-text-dark);
}

.hero-cta-group {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 35px;
}

.btn-hero-phone {
    font-size: 1.1rem;
    padding: 16px 32px;
}

.hero-meta-info {
    border-top: 1px solid rgba(163, 124, 76, 0.15);
    padding-top: 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.meta-address, .meta-facebook {
    font-size: 0.9rem;
    color: var(--color-text-muted);
}

.meta-address i, .meta-facebook i {
    color: var(--color-gold);
    margin-right: 8px;
    width: 16px;
}

.meta-facebook a {
    font-weight: 600;
    color: var(--color-clay);
    border-bottom: 1.5px solid transparent;
}

.meta-facebook a:hover {
    border-bottom-color: var(--color-clay);
}

/* Collage Container & Insets (Ref image visual replica) */
.hero-visual-area {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.collage-container {
    position: relative;
    width: 460px;
    height: 460px;
}

.collage-main-frame {
    position: absolute;
    width: 100%;
    height: 100%;
    border-top-left-radius: 50% 50%;
    border-bottom-left-radius: 50% 50%;
    border-top-right-radius: 35% 35%;
    border-bottom-right-radius: 35% 35%;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(47, 35, 29, 0.1);
    z-index: 2;
    background-color: var(--color-bg-secondary);
}

.img-hero-main {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.backdrop-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 110%;
    height: 110%;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(163, 124, 76, 0.08) 0%, rgba(252, 248, 245, 0) 70%);
    z-index: -1;
    pointer-events: none;
}

.collage-inset {
    position: absolute;
    border-radius: 50%;
    background-color: var(--color-white);
    padding: 8px;
    box-shadow: 0 10px 25px rgba(47, 35, 29, 0.12);
    z-index: 3;
    overflow: hidden;
    transition: all var(--transition-medium);
}

.collage-inset:hover {
    transform: scale(1.1);
    box-shadow: 0 15px 30px rgba(47, 35, 29, 0.2);
}

.inset-inner {
    border-radius: 50%;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.collage-inset img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.inset-facial {
    bottom: 25%;
    left: -12%;
    width: 160px;
    height: 160px;
}

.inset-wax {
    bottom: -8%;
    left: 20%;
    width: 180px;
    height: 180px;
}

/* Scroll down indicator absolute footer */
.scroll-down-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    z-index: 10;
    pointer-events: none;
}

.scroll-text {
    font-size: 0.75rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--color-text-muted);
}

.scroll-arrow {
    font-size: 1rem;
    color: var(--color-gold);
    animation: bounce 1.8s infinite ease-in-out;
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(6px); }
}

/* ====================================================
   SECTION 2: SERVICES
   ==================================================== */
.decor-backdrop-circle {
    position: absolute;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background-color: rgba(163, 124, 76, 0.03);
    top: -100px;
    left: -200px;
    z-index: 1;
    pointer-events: none;
}

.decor-backdrop-circle.top-right {
    top: -100px;
    left: auto;
    right: -200px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.service-card {
    background-color: var(--color-white);
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 10px 30px var(--color-shadow);
    transition: all var(--transition-medium);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px var(--color-shadow-hover);
}

.service-card.highlight {
    border: 2px solid var(--color-gold);
    position: relative;
    transform: translateY(-5px);
}

.service-card.highlight:hover {
    transform: translateY(-12px);
}

.card-image-box {
    height: 240px;
    position: relative;
    overflow: hidden;
}

.service-card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

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

.card-tag {
    position: absolute;
    top: 20px;
    right: 20px;
    background-color: var(--color-text-dark);
    color: var(--color-white);
    padding: 6px 14px;
    border-radius: 30px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    z-index: 2;
}

.card-tag.gold {
    background-color: var(--color-gold);
}

.card-content {
    padding: 30px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.service-name {
    font-size: 1.5rem;
    color: var(--color-text-dark);
    margin-bottom: 15px;
}

.service-desc {
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 25px;
    flex-grow: 1;
}

.service-perks {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 30px;
}

.service-perks li {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--color-text-muted);
    display: flex;
    align-items: center;
    gap: 10px;
}

/* ====================================================
   SECTION 3: EXPERIENCE
   ==================================================== */
.exp-grid {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 60px;
    align-items: center;
}

.exp-lead {
    font-size: 1.15rem;
    font-weight: 500;
    color: var(--color-text-dark);
    margin: 25px 0 35px 0;
}

.features-list {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.feature-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.feature-icon-wrapper {
    background-color: var(--color-bg-secondary);
    color: var(--color-gold);
    width: 50px;
    height: 50px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    flex-shrink: 0;
    transition: all var(--transition-fast);
}

.feature-item:hover .feature-icon-wrapper {
    background-color: var(--color-gold);
    color: var(--color-white);
    transform: scale(1.05);
}

.feature-text h4 {
    font-family: var(--font-body);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--color-text-dark);
    margin-bottom: 5px;
}

.feature-text p {
    font-size: 0.9rem;
}

.exp-visual-area {
    position: relative;
    display: flex;
    justify-content: flex-end;
}

.exp-frame {
    position: relative;
    width: 440px;
    height: 520px;
    border-radius: 30px;
    overflow: visible;
}

.exp-border-gold {
    position: absolute;
    top: -20px;
    right: -20px;
    width: 100%;
    height: 100%;
    border: 2px solid var(--color-gold-light);
    border-radius: 30px;
    z-index: 1;
}

.img-exp {
    position: relative;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 30px;
    box-shadow: 0 15px 35px var(--color-shadow);
    z-index: 2;
}

.floating-badge {
    position: absolute;
    bottom: 30px;
    left: -30px;
    background-color: var(--color-clay);
    color: var(--color-white);
    padding: 15px 25px;
    border-radius: 20px;
    box-shadow: 0 10px 25px rgba(181, 82, 60, 0.3);
    display: flex;
    flex-direction: column;
    align-items: center;
    z-index: 3;
    animation: floatUpDown 4s infinite ease-in-out;
}

@keyframes floatUpDown {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.badge-num {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 700;
    line-height: 1;
}

.badge-lbl {
    font-size: 0.75rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* ====================================================
   SECTION 4: GALLERY & TESTIMONIALS
   ==================================================== */
.gallery-split-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-top: 40px;
    align-items: center;
}

.gallery-mosaic {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(2, 220px);
    gap: 20px;
}

.mosaic-item {
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 8px 25px var(--color-shadow);
}

.mosaic-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.mosaic-item:hover img {
    transform: scale(1.08);
}

.mosaic-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 20px;
    background: linear-gradient(to top, rgba(47, 35, 29, 0.8) 0%, rgba(47, 35, 29, 0) 100%);
    color: var(--color-white);
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 500;
    opacity: 0;
    transform: translateY(10px);
    transition: all var(--transition-medium);
}

.mosaic-item:hover .mosaic-overlay {
    opacity: 1;
    transform: translateY(0);
}

.cta-mini-card {
    background-color: var(--color-bg-tertiary);
    height: 100%;
    padding: 25px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    border-radius: 20px;
}

.cta-mini-card h3 {
    font-size: 1.25rem;
    color: var(--color-text-dark);
    margin-bottom: 8px;
}

.cta-mini-card p {
    font-size: 0.85rem;
    margin-bottom: 15px;
    line-height: 1.4;
}

/* Testimonial Card Styling */
.testimonials-wrapper {
    perspective: 1000px;
}

.testimonial-card {
    background-color: var(--color-white);
    border-radius: 30px;
    padding: 50px 45px 40px 45px;
    box-shadow: 0 15px 40px var(--color-shadow);
    border: 1px solid rgba(163, 124, 76, 0.1);
    position: relative;
}

.quote-icon {
    position: absolute;
    top: 30px;
    left: 45px;
    font-size: 2.2rem;
    color: rgba(163, 124, 76, 0.15);
}

.testimonial-slider {
    position: relative;
    min-height: 160px;
    overflow: hidden;
}

.testimonial-slide {
    opacity: 0;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    transform: translateX(30px);
    transition: all var(--transition-medium);
    pointer-events: none;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.testimonial-slide.active {
    opacity: 1;
    transform: translateX(0);
    position: relative;
    pointer-events: auto;
}

.testimonial-text {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-style: italic;
    color: var(--color-text-dark);
    line-height: 1.6;
    margin-bottom: 30px;
    padding-top: 15px;
}

.client-info {
    display: flex;
    align-items: center;
    gap: 15px;
}

.client-avatar {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background-color: var(--color-bg-secondary);
    color: var(--color-gold-dark);
    font-weight: 700;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.client-name {
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--color-text-dark);
}

.client-location {
    font-size: 0.8rem;
    color: var(--color-text-muted);
}

.slider-controls {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 30px;
    border-top: 1px solid rgba(163, 124, 76, 0.1);
    padding-top: 20px;
}

.slider-btn {
    background: none;
    border: none;
    cursor: pointer;
    font-size: 0.9rem;
    color: var(--color-gold);
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 1px solid rgba(163, 124, 76, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition-fast);
}

.slider-btn:hover {
    background-color: var(--color-gold);
    color: var(--color-white);
    border-color: var(--color-gold);
}

.slider-dots-indicator {
    display: flex;
    gap: 8px;
}

.slider-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: rgba(163, 124, 76, 0.25);
    cursor: pointer;
    transition: all var(--transition-fast);
}

.slider-dot.active {
    background-color: var(--color-gold);
    transform: scale(1.2);
}

/* ====================================================
   SECTION 5: CONTACT & BOOKING
   ==================================================== */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.contact-intro {
    font-size: 0.95rem;
    margin: 20px 0 30px 0;
}

.contact-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 25px;
}

.contact-card-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.item-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background-color: var(--color-bg-secondary);
    color: var(--color-clay);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.15rem;
    flex-shrink: 0;
}

.item-content h5 {
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--color-text-dark);
    margin-bottom: 4px;
}

.item-content p {
    font-size: 0.95rem;
    color: var(--color-text-muted);
    font-weight: 500;
}

.phone-highlight {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    color: var(--color-clay) !important;
    font-weight: 700 !important;
}

.link-map, .link-facebook {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--color-gold-dark);
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 5px;
}

.link-map:hover, .link-facebook:hover {
    color: var(--color-clay);
}

.btn-call-direct {
    margin-top: 8px;
    padding: 8px 16px;
    font-size: 0.8rem;
}

/* Google Maps embed */
.map-embed {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
    border: 1px solid rgba(163, 124, 76, 0.12);
}

.map-embed iframe {
    display: block;
    width: 100%;
    height: 220px;
    border: 0;
}

.map-embed-link {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 10px 14px;
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--color-gold-dark);
    background-color: var(--color-bg-secondary);
    transition: background-color var(--transition-fast), color var(--transition-fast);
}

.map-embed-link:hover {
    background-color: var(--color-bg-tertiary);
    color: var(--color-clay);
}

.text-clay {
    color: var(--color-clay);
}

/* Booking Online Form */
.booking-form-panel {
    display: flex;
    justify-content: flex-end;
}

.booking-form-card {
    width: 100%;
    max-width: 520px;
    background-color: var(--color-white);
    border-radius: 28px;
    padding: 40px;
    box-shadow: 0 15px 45px var(--color-shadow);
    border: 1px solid rgba(163, 124, 76, 0.08);
}

.booking-form-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin-bottom: 28px;
}

.booking-form-icon {
    width: 76px;
    height: 76px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
    background: linear-gradient(145deg, var(--color-bg-secondary) 0%, var(--color-white) 100%);
    border: 2px solid rgba(163, 124, 76, 0.18);
    box-shadow: 0 12px 28px rgba(163, 124, 76, 0.14);
    color: var(--color-clay);
    font-size: 2rem;
    position: relative;
}

.booking-form-icon::after {
    content: '';
    position: absolute;
    inset: -6px;
    border-radius: 50%;
    border: 1px dashed rgba(163, 124, 76, 0.25);
    pointer-events: none;
}

.booking-form-card h3 {
    font-size: 1.6rem;
    color: var(--color-text-dark);
    margin-bottom: 8px;
}

.booking-subtitle {
    font-size: 0.85rem;
    margin-bottom: 0;
    max-width: 320px;
}

.form-group {
    margin-bottom: 16px;
    display: flex;
    flex-direction: column;
    gap: 6px;
    min-width: 0;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    min-width: 0;
}

label {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--color-text-muted);
}

label i {
    color: var(--color-gold);
    margin-right: 4px;
}

.required {
    color: var(--color-clay);
}

input[type="text"],
input[type="tel"],
input[type="date"],
select,
textarea {
    width: 100%;
    max-width: 100%;
    min-width: 0;
    box-sizing: border-box;
    padding: 12px 16px;
    border-radius: 12px;
    border: 1.5px solid var(--color-bg-tertiary);
    background-color: var(--color-bg-primary);
    color: var(--color-text-dark);
    font-family: var(--font-body);
    font-size: 0.9rem;
    transition: all var(--transition-fast);
    outline: none;
}

input[type="date"] {
    display: block;
    -webkit-appearance: none;
    appearance: none;
    min-height: 46px;
}

input[type="date"]::-webkit-date-and-time-value {
    text-align: left;
}

input:focus,
select:focus,
textarea:focus {
    border-color: var(--color-gold);
    background-color: var(--color-white);
    box-shadow: 0 0 0 3px rgba(163, 124, 76, 0.08);
}

textarea {
    resize: none;
}

/* iOS Safari: font-size < 16px triggers auto-zoom on focus */
@media (hover: none) and (pointer: coarse) {
    input[type="text"],
    input[type="tel"],
    input[type="date"],
    select,
    textarea {
        font-size: 16px;
    }
}

.btn-submit-booking {
    margin-top: 15px;
    padding: 15px 0;
}

/* Footer Section inside Section 5 */
.spa-footer {
    width: 100%;
    margin-top: 30px;
}

.footer-divider {
    height: 1px;
    background-color: rgba(163, 124, 76, 0.1);
    width: 100%;
}

.footer-bottom {
    padding: 20px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.copyright {
    font-size: 0.8rem;
}

.footer-links {
    display: flex;
    gap: 20px;
}

.footer-links a {
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--color-text-muted);
}

.footer-links a:hover {
    color: var(--color-gold-dark);
}

/* ====================================================
   BOOKING SUCCESS DIALOG MODAL
   ==================================================== */
.modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(47, 35, 29, 0.5);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    z-index: 500;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity var(--transition-medium);
}

.modal.open {
    opacity: 1;
    pointer-events: auto;
}

.modal-dialog {
    width: 100%;
    max-width: 520px;
    padding: 20px;
}

.modal-content {
    background-color: var(--color-white);
    border-radius: 28px;
    padding: 40px;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.15);
    position: relative;
    transform: translateY(30px);
    transition: transform var(--transition-medium);
}

.modal.open .modal-content {
    transform: translateY(0);
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 25px;
    font-size: 2rem;
    background: none;
    border: none;
    cursor: pointer;
    color: var(--color-text-muted);
}

.modal-title {
    font-size: 1.8rem;
    color: var(--color-gold-dark);
    margin-top: 15px;
    margin-bottom: 12px;
}

.modal-text {
    font-size: 0.95rem;
    color: var(--color-text-dark);
    margin-bottom: 12px;
    line-height: 1.6;
}

.modal-notice {
    font-size: 0.85rem;
    color: var(--color-text-muted);
    background-color: var(--color-bg-primary);
    padding: 12px 18px;
    border-radius: 12px;
    border-left: 3px solid var(--color-clay);
    margin-bottom: 25px;
}

.modal-cta {
    display: flex;
    justify-content: center;
}

.modal-close-btn-cta {
    width: 100%;
}

/* Success Checkmark Circle Drawing Animation */
.success-icon-animate {
    width: 70px;
    height: 70px;
    margin: 0 auto;
}

.checkmark {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    display: block;
    stroke-width: 2.5;
    stroke: var(--color-clay);
    stroke-miterlimit: 10;
    box-shadow: inset 0px 0px 0px var(--color-clay);
    animation: fill .4s ease-in-out .4s forwards, scale .3s ease-in-out .9s both;
}

.checkmark__circle {
    stroke-dasharray: 166;
    stroke-dashoffset: 166;
    stroke-width: 2.5;
    stroke-miterlimit: 10;
    stroke: var(--color-clay);
    fill: none;
    animation: stroke .6s cubic-bezier(0.65, 0, 0.45, 1) forwards;
}

.checkmark__check {
    transform-origin: 50% 50%;
    stroke-dasharray: 48;
    stroke-dashoffset: 48;
    animation: stroke .3s cubic-bezier(0.65, 0, 0.45, 1) .8s forwards;
}

@keyframes stroke {
    100% { stroke-dashoffset: 0; }
}

@keyframes fill {
    100% { box-shadow: inset 0px 0px 0px 40px rgba(181, 82, 60, 0.1); }
}

/* Mobile Quick Contact Floating Actions (Bar) */
.mobile-floating-actions {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: var(--color-white);
    box-shadow: 0 -4px 20px rgba(47, 35, 29, 0.08);
    grid-template-columns: 1fr 1fr;
    z-index: 150;
    border-top: 1px solid rgba(163, 124, 76, 0.1);
}

.floating-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 16px 0;
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--color-white);
}

.floating-btn.call-btn {
    background-color: var(--color-clay);
}

.floating-btn.fb-btn {
    background-color: #3b5998; /* Facebook brand color */
}

/* ====================================================
   SCROLL INTERSECTION TRIGGER ANIMATIONS
   ==================================================== */

/* Initially hidden state rules */
.animate-fade-in-up {
    opacity: 0;
    transform: translateY(35px);
    transition: opacity 0.8s cubic-bezier(0.25, 1, 0.5, 1), 
                transform 0.8s cubic-bezier(0.25, 1, 0.5, 1);
}

.animate-scale-in {
    opacity: 0;
    transform: scale(0.92);
    transition: opacity 1s cubic-bezier(0.25, 1, 0.5, 1), 
                transform 1s cubic-bezier(0.25, 1, 0.5, 1);
}

/* Triggered when element scrolls into view */
.animate-fade-in-up.in-view,
.animate-scale-in.in-view,
.snap-section.active .animate-fade-in-up,
.snap-section.active .animate-scale-in {
    opacity: 1;
    transform: translateY(0) scale(1);
}

/* Animation Delays */
.delay-100 { transition-delay: 0.1s; }
.delay-200 { transition-delay: 0.25s; }
.delay-300 { transition-delay: 0.4s; }

@media (prefers-reduced-motion: reduce) {
    .animate-fade-in-up,
    .animate-scale-in {
        opacity: 1;
        transform: none;
        transition: none;
    }
}


/* ====================================================
   RESPONSIVE MEDIA QUERIES
   ==================================================== */

/* --- Tablet Devices (Landscape & Portrait) --- */
@media screen and (max-width: 1024px) {
    .snap-section {
        padding: calc(var(--navbar-height) + 20px) 5% 40px 5%;
    }

    .side-dots {
        display: none; /* Hide side pagination dots on medium devices to avoid clutter */
    }

    /* Hero */
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .logo-wrapper {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .hero-services-list {
        align-items: center;
        margin: 20px 0;
    }

    .hero-cta-group {
        justify-content: center;
    }

    .hero-meta-info {
        align-items: center;
    }

    .hero-visual-area {
        justify-content: center;
        margin-top: 10px;
    }

    .collage-container {
        width: 380px;
        height: 380px;
    }

    .inset-facial {
        width: 130px;
        height: 130px;
        left: -8%;
    }

    .inset-wax {
        width: 140px;
        height: 140px;
        bottom: -5%;
    }

    /* Services */
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
        margin-top: 30px;
    }

    .service-card.highlight {
        transform: translateY(0);
    }
    
    .service-card.highlight:hover {
        transform: translateY(-8px);
    }

    /* Experience */
    .exp-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .exp-visual-area {
        justify-content: center;
    }

    .exp-frame {
        width: 100%;
        max-width: 440px;
        height: 480px;
    }

    /* Gallery */
    .gallery-split-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    /* Contact */
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .booking-form-panel {
        justify-content: center;
    }

    .booking-form-card {
        max-width: 100%;
    }
}

/* --- Mobile Devices (Landscape & Portrait) --- */
@media screen and (max-width: 768px) {
    /* Disable snap scroll behavior on mobile to avoid viewport jumping issues */
    .snap-container {
        height: auto;
        overflow-y: visible;
        scroll-snap-type: none;
    }

    .snap-section {
        height: auto;
        min-height: 100vh;
        scroll-snap-align: none;
        padding: calc(var(--navbar-height) + 20px) 20px 100px 20px;
        display: block; /* Stack naturally */
    }

    .navbar-container {
        position: relative;
        padding: 0 20px;
        justify-content: flex-end;
    }

    .brand-logo {
        position: absolute;
        left: 50%;
        top: 50%;
        transform: translate(-50%, -50%);
    }

    .nav-links, .nav-actions .btn-nav {
        display: none; /* Hide standard links and CTA button */
    }

    .mobile-menu-btn {
        display: flex; /* Show mobile menu trigger */
    }

    /* Section Titles */
    .section-title {
        font-size: 2rem;
    }

    /* Hero mobile */
    .hero-title-main {
        font-size: 2.8rem;
    }

    .brand-subtitle {
        font-size: 0.72rem;
    }

    .hero-subtitle {
        font-size: 1.4rem;
    }

    .bullet-text {
        font-size: 1rem;
    }

    .hero-cta-group {
        flex-direction: column;
        gap: 12px;
        width: 100%;
    }

    .hero-cta-group .btn {
        width: 100%;
    }

    .collage-container {
        width: 290px;
        height: 290px;
        margin-top: 20px;
    }

    .inset-facial {
        width: 100px;
        height: 100px;
        left: -10%;
        bottom: 20%;
        padding: 4px;
    }

    .inset-wax {
        width: 110px;
        height: 110px;
        bottom: -5%;
        left: 15%;
        padding: 4px;
    }

    .scroll-down-indicator {
        display: none; /* No scroll indicators on mobile standard flow */
    }

    /* Services cards mobile stack */
    .services-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .card-image-box {
        height: 200px;
    }

    .card-content {
        padding: 24px;
    }

    /* Experience */
    .exp-frame {
        height: 380px;
    }

    .floating-badge {
        left: -10px;
        bottom: 15px;
        padding: 10px 18px;
    }

    /* Gallery & Testimonials */
    .gallery-split-grid {
        margin-top: 24px;
        gap: 16px;
    }

    .gallery-mosaic {
        grid-template-rows: 155px auto;
        gap: 12px;
    }

    .mosaic-item.m3 {
        min-height: 155px;
    }

    .mosaic-item.m4 {
        overflow: visible;
        min-height: 0;
    }

    .cta-mini-card {
        padding: 16px;
        justify-content: center;
        gap: 10px;
        min-height: 0;
        box-sizing: border-box;
    }

    .cta-mini-card h3 {
        font-size: 1.1rem;
        margin-bottom: 0;
    }

    .cta-mini-card p {
        font-size: 0.8rem;
        margin-bottom: 0;
    }

    .cta-mini-card .btn {
        align-self: stretch;
        flex-shrink: 0;
        justify-content: center;
        min-height: 44px;
    }

    .testimonial-card {
        padding: 40px 25px 30px 25px;
    }

    .testimonial-text {
        font-size: 1.05rem;
        margin-bottom: 20px;
    }

    /* Contact & Form */
    .booking-form-panel {
        min-width: 0;
    }

    .booking-form-card {
        padding: 25px 20px;
        max-width: 100%;
        overflow-x: clip;
    }

    #spa-booking-form {
        width: 100%;
        max-width: 100%;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
        width: 100%;
    }

    .form-row .form-group {
        width: 100%;
        max-width: 100%;
    }

    input[type="date"],
    input[type="text"],
    input[type="tel"],
    select {
        width: 100%;
        max-width: 100%;
    }

    .spa-footer {
        margin-top: 40px;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }

    /* Enable Mobile Floating Actions Bar */
    .mobile-floating-actions {
        display: grid;
    }
}
