/* ============================================
   MOROCCAN SPA — Premium Luxury Spa Website
   Theme: Warm, Calm, Moroccan-Inspired
   ============================================ */

/* ---------- CSS Variables ---------- */
:root {
    /* Primary Colors — Terre Cuite */
    --primary: #a13a1e;
    --primary-light: #b8502e;
    --primary-dark: #862f17;
    --primary-rgb: 161, 58, 30;

    /* Secondary Colors — Espresso */
    --secondary: #542916;
    --secondary-light: #6e3d24;
    --secondary-dark: #3d1c0f;
    --secondary-rgb: 84, 41, 22;

    /* Background — Nuage de Lait */
    --bg: #fefaf0;
    --bg-light: #fffdf8;
    --bg-lighter: #ffffff;
    --bg-dark: #f5edd8;
    --bg-rgb: 254, 250, 240;

    /* Accent — Miel Doré */
    --accent: #f1c166;
    --accent-light: #f5d08a;
    --accent-dark: #b79858;
    --accent-rgb: 241, 193, 102;

    /* Highlight — Bleu Porcelaine */
    --highlight: #88b8ce;
    --highlight-light: #a8cedc;
    --highlight-dark: #6a9db5;
    --highlight-rgb: 136, 184, 206;

    /* Neutrals */
    --white: #ffffff;
    --off-white: #fefaf0;
    --cream: #f5edd8;
    --gray-100: #faf6ee;
    --gray-200: #ede5d6;
    --gray-300: #d9cebb;
    --gray-400: #b8a894;
    --gray-500: #8f7e6b;
    --gray-600: #6b5a48;
    --gray-700: #4a3828;
    --gray-800: #33251a;
    --gray-900: #1e1208;
    --black: #0d0804;

    /* Text */
    --text-dark: #1e1208;
    --text-body: #4a3828;
    --text-muted: #8f7e6b;
    --text-light: #fefaf0;

    /* Fonts */
    --font-heading: 'Montserrat', 'Helvetica Neue', sans-serif;
    --font-body: 'Montserrat', 'Helvetica Neue', sans-serif;
    --font-accent: 'Montserrat', 'Helvetica Neue', sans-serif;

    /* Spacing */
    --section-padding: 7rem 0;
    --container-width: 1200px;
    --container-padding: 0 1.5rem;

    /* Radius */
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --radius-full: 9999px;

    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(30, 18, 8, 0.06);
    --shadow-md: 0 4px 20px rgba(30, 18, 8, 0.08);
    --shadow-lg: 0 8px 40px rgba(30, 18, 8, 0.12);
    --shadow-xl: 0 16px 60px rgba(30, 18, 8, 0.16);
    --shadow-glow: 0 0 30px rgba(161, 58, 30, 0.15);

    /* Transitions */
    --ease: cubic-bezier(0.4, 0, 0.2, 1);
    --ease-bounce: cubic-bezier(0.34, 1.56, 0.64, 1);
    --transition: all 0.4s var(--ease);
    --transition-fast: all 0.25s var(--ease);
    --transition-slow: all 0.6s var(--ease);
}

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

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-size: 16px;
}

html {
    color-scheme: light only;
}

body {
    font-family: var(--font-body);
    color: var(--text-body);
    background-color: var(--off-white);
    line-height: 1.7;
    overflow-x: hidden;
    -webkit-text-size-adjust: 100%;
    text-size-adjust: 100%;
}

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

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

ul, ol {
    list-style: none;
}

button {
    border: none;
    outline: none;
    cursor: pointer;
    background: none;
    font-family: inherit;
}

input, select, textarea {
    font-family: inherit;
    font-size: inherit;
    outline: none;
    border: none;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    color: var(--text-dark);
    line-height: 1.2;
    font-weight: 400;
}

/* ---------- Container ---------- */
.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: var(--container-padding);
}

/* ---------- Section ---------- */
.section {
    padding: var(--section-padding);
    position: relative;
}

.section-cream {
    background-color: var(--bg-lighter);
}

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

.section-dark h2,
.section-dark h3,
.section-dark p,
.section-dark span {
    color: var(--text-light);
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 4rem;
}

.section-header.light h2,
.section-header.light p {
    color: var(--text-light);
}

.section-tag {
    display: inline-block;
    font-family: var(--font-body);
    font-size: 0.75rem;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--primary);
    margin-bottom: 1rem;
    position: relative;
    padding: 0 2rem;
}

.section-tag::before,
.section-tag::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 1.2rem;
    height: 1px;
    background: var(--primary);
}

.section-tag::before {
    left: 0;
}

.section-tag::after {
    right: 0;
}

.section-tag.light {
    color: var(--accent);
}

.section-tag.light::before,
.section-tag.light::after {
    background: var(--accent);
}

.section-header h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 1rem;
    font-weight: 400;
}

.section-desc {
    font-size: 1.05rem;
    color: var(--text-muted);
    line-height: 1.8;
}

/* ---------- Buttons ---------- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-family: var(--font-body);
    font-weight: 400;
    font-size: 0.85rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 0.9rem 2rem;
    border-radius: var(--radius-sm);
    transition: var(--transition);
    cursor: pointer;
    position: relative;
    overflow: hidden;
    white-space: nowrap;
}

.btn::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, transparent 40%, rgba(255,255,255,0.15) 50%, transparent 60%);
    transform: translateX(-100%);
    transition: transform 0.6s var(--ease);
}

.btn:hover::after {
    transform: translateX(100%);
}

.btn-primary {
    background: var(--primary);
    color: var(--white);
    border: 2px solid var(--primary);
}

.btn-primary:hover {
    background: var(--primary-dark);
    border-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

.btn-outline {
    background: transparent;
    color: var(--white);
    border: 2px solid rgba(255,255,255,0.5);
}

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

.btn-lg {
    padding: 1rem 2.5rem;
    font-size: 0.9rem;
}

.btn-sm {
    padding: 0.6rem 1.4rem;
    font-size: 0.75rem;
}

.btn-block {
    display: flex;
    width: 100%;
}

/* ---------- Preloader ---------- */
#preloader {
    position: fixed;
    inset: 0;
    z-index: 99999;
    background: var(--bg);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.6s var(--ease), visibility 0.6s var(--ease);
}

#preloader.hidden {
    opacity: 0;
    visibility: hidden;
}

.loader {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.loader-ring {
    width: 100px;
    height: 100px;
    border: 2px solid var(--bg-dark);
    border-top-color: var(--primary);
    border-radius: 50%;
    animation: spin 1.2s linear infinite;
}

.loader-logo {
    position: absolute;
    width: 50px;
    height: auto;
    animation: pulse 1.5s ease-in-out infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.7; transform: scale(0.92); }
}

/* ---------- Navbar ---------- */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    height: 72px;
    transition: height 0.4s cubic-bezier(.4,0,.2,1), background 0.4s cubic-bezier(.4,0,.2,1), box-shadow 0.4s cubic-bezier(.4,0,.2,1);
}

.navbar.scrolled {
    background: rgba(253, 248, 242, 0.95);
    -webkit-backdrop-filter: blur(20px);
    backdrop-filter: blur(20px);
    height: 58px;
    box-shadow: var(--shadow-md);
}

.nav-container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
}

.nav-logo {
    display: flex;
    align-items: center;
    height: 44px;      /* fixed container — never changes */
    flex-shrink: 0;
}

.nav-logo img {
    height: 44px;
    width: auto;
    transition: transform 0.4s cubic-bezier(.4,0,.2,1), filter 0.4s cubic-bezier(.4,0,.2,1);
    transform-origin: left center;
    filter: brightness(0) invert(1);
}

.navbar.scrolled .nav-logo img {
    transform: scale(0.818);   /* 36/44 ≈ 0.818 — visually same as 36px but no reflow */
    filter: none;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 0.3rem;
    flex-wrap: nowrap;
    white-space: nowrap;
    flex-shrink: 0;
}

.nav-link {
    font-size: 0.82rem;
    font-weight: 300;
    letter-spacing: 0.5px;
    padding: 0.5rem 0.9rem;
    color: var(--white);
    border-radius: var(--radius-sm);
    transition: var(--transition-fast);
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--accent);
    transition: var(--transition-fast);
    transform: translateX(-50%);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 60%;
}

.navbar.scrolled .nav-link {
    color: var(--text-body);
}

.navbar.scrolled .nav-link:hover,
.navbar.scrolled .nav-link.active {
    color: var(--primary);
}

.nav-link:hover {
    color: var(--accent);
}

.nav-link.active {
    color: var(--accent);
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.nav-btn {
    padding: 0.6rem 1.6rem;
    font-size: 0.78rem;
}

/* Hamburger */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 8px;
    cursor: pointer;
    z-index: 1001;
}

.hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--white);
    border-radius: 2px;
    transition: var(--transition-fast);
}

.navbar.scrolled .hamburger span {
    background: var(--text-dark);
}

/* ---------- Mobile Menu ---------- */
.mobile-menu-overlay {
    position: fixed;
    inset: 0;
    background: rgba(13, 10, 7, 0.6);
    z-index: 9998;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    -webkit-backdrop-filter: blur(4px);
    backdrop-filter: blur(4px);
}

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

.mobile-menu {
    position: fixed;
    top: 0;
    right: 0;
    width: 320px;
    max-width: 85vw;
    height: 100vh;
    background: var(--off-white);
    z-index: 9999;
    transform: translateX(100%);
    transition: transform 0.5s var(--ease);
    display: flex;
    flex-direction: column;
    overflow-y: auto;
}

.mobile-menu.active {
    transform: translateX(0);
}

.mobile-menu-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.5rem;
    border-bottom: 1px solid var(--gray-200);
}

.mobile-logo {
    height: 36px;
}

.mobile-close {
    font-size: 2rem;
    color: var(--text-dark);
    cursor: pointer;
    line-height: 1;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-sm);
    transition: var(--transition-fast);
}

.mobile-close:hover {
    background: var(--gray-100);
    color: var(--primary);
}

.mobile-nav {
    display: flex;
    flex-direction: column;
    padding: 1.5rem;
    gap: 0.25rem;
    flex: 1;
}

.mobile-nav-link {
    font-size: 1rem;
    font-weight: 300;
    padding: 0.85rem 1rem;
    color: var(--text-body);
    border-radius: var(--radius-sm);
    transition: var(--transition-fast);
}

.mobile-nav-link:hover {
    background: var(--bg-light);
    color: var(--primary);
    padding-left: 1.5rem;
}

.mobile-book-btn {
    margin: 0 1.5rem;
}

.mobile-menu-footer {
    padding: 1.5rem;
    border-top: 1px solid var(--gray-200);
    text-align: center;
}

.mobile-menu-footer a {
    color: var(--primary);
    font-weight: 400;
    font-size: 1.1rem;
}

.mobile-socials {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 1rem;
}

.mobile-socials a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--bg-light);
    color: var(--text-body);
    transition: var(--transition-fast);
}

.mobile-socials a:hover {
    background: var(--primary);
    color: var(--white);
}

/* ---------- Hero Section ---------- */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background: url('../images/hero-banner.jpg') center/cover no-repeat;
    transform: scale(1.05);
    animation: heroZoom 20s ease-in-out infinite alternate;
}

@keyframes heroZoom {
    0% { transform: scale(1.05); }
    100% { transform: scale(1.12); }
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 50% 40%, rgba(30, 18, 8, 0.5) 0%, transparent 70%),
        linear-gradient(180deg,
            rgba(30, 18, 8, 0.7) 0%,
            rgba(30, 18, 8, 0.55) 30%,
            rgba(30, 18, 8, 0.65) 60%,
            rgba(30, 18, 8, 0.9) 100%
        );
}

.hero-vignette {
    position: absolute;
    inset: 0;
    box-shadow: inset 0 0 150px rgba(0, 0, 0, 0.4);
    pointer-events: none;
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 860px;
    margin: 0 auto;
    padding: 2rem 1.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 1.2rem;
    margin-bottom: 1.8rem;
}

.hero-badge span:not(.badge-line) {
    font-family: var(--font-body);
    font-size: 0.7rem;
    font-weight: 300;
    text-transform: uppercase;
    letter-spacing: 5px;
    color: var(--accent);
}

.badge-line {
    width: 50px;
    height: 1px;
    background: var(--accent);
    display: block;
}

.hero h1 {
    color: var(--white);
    margin-bottom: 0;
}

.hero-title-line {
    display: block;
    font-size: clamp(3rem, 7vw, 5.5rem);
    font-weight: 300;
    line-height: 1;
    letter-spacing: 0.15em;
    text-transform: uppercase;
}

.hero-title-line.accent {
    font-family: var(--font-accent);
    font-weight: 300;
    font-size: clamp(1.1rem, 2.5vw, 1.6rem);
    color: var(--accent);
    margin-top: 0.8rem;
    letter-spacing: 0.4em;
    text-transform: uppercase;
}

.hero-divider {
    width: 60px;
    height: 1px;
    background: var(--accent);
    margin: 1.2rem auto;
}

.hero-subtitle {
    font-size: clamp(0.85rem, 1.5vw, 1rem);
    color: rgba(255,255,255,0.6);
    max-width: none;
    margin: 0 auto 2.5rem;
    line-height: 1.8;
    white-space: nowrap;
    font-weight: 300;
    letter-spacing: 0.5px;
}

.hero-buttons {
    display: flex;
    gap: 1.2rem;
    justify-content: center;
    flex-wrap: wrap;
}

.hero-buttons .btn-outline {
    border-color: rgba(255,255,255,0.25);
    color: rgba(255,255,255,0.8);
    backdrop-filter: blur(4px);
}

.hero-buttons .btn-outline:hover {
    border-color: var(--accent);
    color: var(--white);
    background: rgba(241, 193, 102, 0.1);
}

.hero-scroll {
    position: absolute;
    bottom: 2.5rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.6rem;
    z-index: 2;
}

.hero-scroll span {
    font-size: 0.6rem;
    text-transform: uppercase;
    letter-spacing: 4px;
    color: rgba(255,255,255,0.35);
    font-weight: 300;
}

.scroll-indicator {
    width: 18px;
    height: 30px;
    border: 1.5px solid rgba(255,255,255,0.2);
    border-radius: 10px;
    display: flex;
    justify-content: center;
    padding-top: 5px;
}

.scroll-dot {
    width: 2px;
    height: 6px;
    background: var(--accent);
    border-radius: 2px;
    animation: scrollDown 2s ease-in-out infinite;
}

@keyframes scrollDown {
    0% { opacity: 1; transform: translateY(0); }
    50% { opacity: 0.3; transform: translateY(8px); }
    100% { opacity: 1; transform: translateY(0); }
}

.hero-decorative {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 1;
}

.hero-pattern {
    position: absolute;
    width: 280px;
    height: 280px;
    border: 1px solid rgba(241, 193, 102, 0.06);
    border-radius: 50%;
}

.hero-pattern.left {
    bottom: 5%;
    left: -100px;
}

.hero-pattern.right {
    top: 10%;
    right: -100px;
}

/* ---------- Features / Why Us ---------- */
.features-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 1.5rem;
}

.feature-card {
    text-align: center;
    padding: 1.8rem 1rem;
    background: var(--white);
    border-radius: var(--radius-lg);
    transition: var(--transition);
    border: 1px solid transparent;
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(161, 58, 30, 0.1);
}

.feature-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(161, 58, 30, 0.08), rgba(241, 193, 102, 0.08));
    color: var(--primary);
    transition: var(--transition);
}

.feature-card:hover .feature-icon {
    background: var(--primary);
    color: var(--white);
    transform: scale(1.1);
}

.feature-card h3 {
    font-size: 0.95rem;
    margin-bottom: 0;
    font-weight: 400;
    line-height: 1.4;
}

/* ---------- Certifications Section ---------- */
/* --- Certifications marquee --- */
.cert-marquee {
    overflow: hidden;
    position: relative;
    width: 100%;
    mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
    -webkit-mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
}

.cert-track {
    display: flex;
    gap: 1.5rem;
    width: max-content;
    animation: cert-scroll 30s linear infinite;
}

.cert-marquee:hover .cert-track {
    animation-play-state: paused;
}

@keyframes cert-scroll {
    0%   { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.certification-card {
    text-align: center;
    padding: 1.5rem 1.2rem;
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border: 2px solid transparent;
    flex-shrink: 0;
    width: 180px;
}

.certification-card:hover {
    box-shadow: var(--shadow-lg);
    border-color: var(--primary);
}

.cert-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary-light), var(--primary));
    border-radius: 50%;
    color: var(--white);
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(var(--primary-rgb), 0.2);
}

.cert-icon svg {
    width: 36px;
    height: 36px;
    display: block;
}

.certification-card:hover .cert-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 6px 25px rgba(var(--primary-rgb), 0.35);
}

.certification-card h4 {
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 400;
    color: var(--text-dark);
    margin-bottom: 0.3rem;
}

.certification-card p {
    font-size: 0.8rem;
    color: var(--text-muted);
    line-height: 1.4;
}

/* ---------- About Section ---------- */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3.5rem;
    align-items: center;
}

.about-images {
    position: relative;
}

.about-img-main {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.about-img-main img {
    width: 100%;
    height: 380px;
    object-fit: cover;
    transition: transform 0.8s var(--ease);
}

.about-img-main:hover img {
    transform: scale(1.05);
}

.about-img-accent {
    position: absolute;
    bottom: -30px;
    right: -30px;
    width: 200px;
    height: 200px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 5px solid var(--secondary);
    box-shadow: var(--shadow-lg);
}

.about-img-accent img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-experience {
    position: absolute;
    top: -15px;
    left: -15px;
    background: var(--primary);
    color: var(--white);
    padding: 1.2rem;
    border-radius: var(--radius-lg);
    text-align: center;
    box-shadow: var(--shadow-lg);
}

.exp-number {
    display: block;
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 300;
    line-height: 1;
}

.exp-text {
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 0.2rem;
    display: block;
    opacity: 0.9;
}

.about-content .section-tag {
    padding-left: 0;
}

.about-content .section-tag::before {
    display: none;
}

.about-content h2 {
    font-size: clamp(1.6rem, 2.5vw, 2.2rem);
    margin-bottom: 1rem;
    color: var(--cream);
}

.about-content p {
    color: var(--gray-300);
    margin-bottom: 0;
    font-size: 0.95rem;
    line-height: 1.75;
}

.about-stats {
    display: flex;
    gap: 2.5rem;
    margin: 1.8rem 0;
    padding: 1.5rem 0;
    border-top: 1px solid rgba(255,255,255,0.1);
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.stat {
    text-align: center;
}

.stat-number {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 300;
    color: var(--accent);
    line-height: 1;
}

.stat-suffix {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 300;
    color: var(--accent);
}

.stat-label {
    display: block;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--gray-400);
    margin-top: 0.4rem;
}

/* ---------- Services Section ---------- */
.service-tabs {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.tab-btn {
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 400;
    letter-spacing: 0.5px;
    padding: 0.8rem 1.8rem;
    border-radius: var(--radius-full);
    color: var(--text-body);
    background: var(--white);
    border: 1px solid var(--gray-200);
    cursor: pointer;
    transition: var(--transition-fast);
}

.tab-btn:hover {
    border-color: var(--primary);
    color: var(--primary);
}

.tab-btn.active {
    background: var(--primary);
    color: var(--white);
    border-color: var(--primary);
}

.tab-content {
    display: grid;
    grid-template-rows: 0fr;
    opacity: 0;
    transform: translateY(14px);
    transition: opacity 0.45s var(--ease), transform 0.45s var(--ease), grid-template-rows 0s 0.45s;
    overflow: hidden;
    pointer-events: none;
}

.tab-content > * {
    overflow: hidden;
}

.tab-content.active {
    grid-template-rows: 1fr;
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.45s var(--ease), transform 0.45s var(--ease), grid-template-rows 0s 0s;
    pointer-events: auto;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.service-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
    box-shadow: var(--shadow-sm);
    will-change: transform;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
}

.service-card:hover {
    transform: translateY(-8px) translateZ(0);
    box-shadow: var(--shadow-lg);
}

.service-img {
    position: relative;
    overflow: hidden;
    aspect-ratio: 4/3;
}

.service-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s var(--ease);
    will-change: transform;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
}

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

.service-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 40%, rgba(161, 58, 30, 0.8) 100%);
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding-bottom: 1.5rem;
    opacity: 0;
    transition: opacity 0.4s var(--ease);
}

.service-card:hover .service-overlay {
    opacity: 1;
}

.service-info {
    padding: 1.5rem;
}

.service-info h3 {
    font-size: 1.1rem;
    margin-bottom: 0.6rem;
    font-weight: 400;
}

.service-info p {
    font-size: 0.88rem;
    color: var(--text-muted);
    line-height: 1.6;
}

/* ---------- Treatments Banner ---------- */
.treatments-banner {
    overflow: hidden;
}

.treatments-bg {
    position: absolute;
    inset: 0;
    background: url('../images/gallery-6.jpeg') center/cover no-repeat;
}

.treatments-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(84, 41, 22, 0.92) 0%,
        rgba(30, 18, 8, 0.92) 100%
    );
}

.treatments-content {
    position: relative;
    z-index: 2;
    text-align: center;
    margin-bottom: 4rem;
}

.treatments-content h2 {
    color: var(--cream);
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 1rem;
}

.treatments-content p {
    color: var(--gray-300);
    max-width: 600px;
    margin: 0 auto;
    font-size: 1.05rem;
}

.treatments-list {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    max-width: 900px;
    margin: 0 auto;
}

.treatment-item {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    padding: 2rem;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: var(--radius-lg);
    transition: var(--transition);
    -webkit-backdrop-filter: blur(4px);
    backdrop-filter: blur(4px);
}

.treatment-item:hover {
    background: rgba(255,255,255,0.1);
    border-color: rgba(241, 193, 102, 0.3);
    transform: translateY(-4px);
}

.treatment-number {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 300;
    color: var(--accent);
    line-height: 1;
    opacity: 0.4;
    min-width: 50px;
}

.treatment-item:hover .treatment-number {
    opacity: 1;
}

.treatment-info h3 {
    font-size: 1.1rem;
    color: var(--cream);
    margin-bottom: 0.5rem;
    font-weight: 400;
}

.treatment-info p {
    font-size: 0.88rem;
    color: var(--gray-400);
    line-height: 1.6;
}

/* ---------- Gallery Section ---------- */
.gallery-wrapper {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 220px;
    gap: 1rem;
}

.gallery-item {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    cursor: pointer;
}

.gallery-item.tall {
    grid-row: span 2;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s var(--ease);
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-hover {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 50%, rgba(161, 58, 30, 0.7) 100%);
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding-bottom: 1.5rem;
    opacity: 0;
    transition: var(--transition);
}

.gallery-item:hover .gallery-hover {
    opacity: 1;
}

.gallery-hover span {
    color: var(--white);
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 300;
    transform: translateY(10px);
    transition: var(--transition);
}

.gallery-item:hover .gallery-hover span {
    transform: translateY(0);
}

/* ---------- Gift Card Section ---------- */
.giftcard-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3.5rem;
    align-items: flex-start;
}

/* Gift Card Preview */
.giftcard-preview {
    position: sticky;
    top: 120px;
}

.giftcard-visual {
    perspective: 800px;
    margin-bottom: 2.5rem;
}

.giftcard-front {
    position: relative;
    background: linear-gradient(145deg, var(--gc-color-1, var(--primary)), var(--gc-color-2, var(--primary-dark)));
    border-radius: var(--radius-xl);
    padding: 2.5rem;
    color: var(--white);
    overflow: hidden;
    min-height: 260px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    box-shadow: 0 20px 50px var(--gc-shadow, rgba(161, 58, 30, 0.35));
    transition: box-shadow 0.6s var(--ease), background 0.5s var(--ease);
    transform-style: preserve-3d;
    will-change: transform;
}

.giftcard-front:hover {
    box-shadow:
        -15px 25px 50px var(--gc-shadow, rgba(161, 58, 30, 0.35)),
        0 0 80px rgba(241, 193, 102, 0.08);
}

/* Mouse-follow glow overlay */
.gc-glow {
    position: absolute;
    inset: 0;
    border-radius: inherit;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.15s ease;
    z-index: 1;
}

/* Gift Card Floating Emoji */
.gc-floating-emoji {
    position: absolute;
    bottom: -0.5rem;
    right: -0.3rem;
    font-size: 9rem;
    opacity: 0.1;
    z-index: 0;
    pointer-events: none;
    transition: opacity 0.4s var(--ease), font-size 0.4s var(--ease);
    line-height: 1;
}

/* Occasion Color Themes */
.giftcard-front[data-theme="birthday"] {
    --gc-color-1: #a13a1e;
    --gc-color-2: #862f17;
    --gc-shadow: rgba(161, 58, 30, 0.3);
}
.giftcard-front[data-theme="anniversary"] {
    --gc-color-1: #6e3d24;
    --gc-color-2: #3d1c0f;
    --gc-shadow: rgba(110, 61, 36, 0.3);
}
.giftcard-front[data-theme="wedding"] {
    --gc-color-1: #b79858;
    --gc-color-2: #8f7540;
    --gc-shadow: rgba(183, 152, 88, 0.3);
}
.giftcard-front[data-theme="valentine"] {
    --gc-color-1: #8b4a4a;
    --gc-color-2: #5e2e2e;
    --gc-shadow: rgba(139, 74, 74, 0.3);
}
.giftcard-front[data-theme="corporate"] {
    --gc-color-1: #542916;
    --gc-color-2: #3d1c0f;
    --gc-shadow: rgba(84, 41, 22, 0.3);
}
.giftcard-front[data-theme="festival"] {
    --gc-color-1: #f1c166;
    --gc-color-2: #d4a44c;
    --gc-shadow: rgba(241, 193, 102, 0.3);
}
.giftcard-front[data-theme="thankyou"] {
    --gc-color-1: #6a9db5;
    --gc-color-2: #4a7e95;
    --gc-shadow: rgba(136, 184, 206, 0.25);
}
.giftcard-front[data-theme="selfcare"] {
    --gc-color-1: #88b8ce;
    --gc-color-2: #6a9db5;
    --gc-shadow: rgba(136, 184, 206, 0.25);
}

.gc-pattern-overlay {
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(circle at 20% 80%, rgba(241, 193, 102, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255,255,255,0.06) 0%, transparent 50%);
    pointer-events: none;
}

.gc-pattern-overlay::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -30%;
    width: 300px;
    height: 300px;
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 50%;
}

.gc-pattern-overlay::after {
    content: '';
    position: absolute;
    bottom: -40%;
    left: -20%;
    width: 250px;
    height: 250px;
    border: 1px solid rgba(241, 193, 102, 0.12);
    border-radius: 50%;
}

.gc-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    z-index: 1;
}

.gc-logo {
    height: 32px;
    filter: brightness(0) invert(1);
    opacity: 0.9;
}

.gc-type {
    font-size: 0.72rem;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 2px;
    background: rgba(255,255,255,0.15);
    padding: 0.35rem 0.9rem;
    border-radius: var(--radius-full);
    transition: var(--transition-fast);
}

.gc-body {
    text-align: center;
    position: relative;
    z-index: 1;
    padding: 1.5rem 0;
}

.gc-amount-label {
    display: block;
    font-size: 0.7rem;
    font-weight: 300;
    text-transform: uppercase;
    letter-spacing: 3px;
    opacity: 0.7;
    margin-bottom: 0.5rem;
}

.gc-amount {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 300;
    line-height: 1;
    text-shadow: 0 2px 15px rgba(0,0,0,0.2);
    transition: var(--transition-fast);
}

.gc-footer {
    display: flex;
    justify-content: space-between;
    position: relative;
    z-index: 1;
    border-top: 1px solid rgba(255,255,255,0.12);
    padding-top: 1rem;
}

.gc-detail {
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
}

.gc-label {
    font-size: 0.6rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    opacity: 0.5;
}

.gc-value {
    font-size: 0.9rem;
    font-weight: 400;
    transition: var(--transition-fast);
}

/* Amount Selector (below card) */
.gc-amount-selector {
    margin-bottom: 1.5rem;
}

.gc-amount-selector h4 {
    font-size: 0.95rem;
    color: var(--cream);
    margin-bottom: 1rem;
    font-weight: 400;
}

/* Occasions Grid */
.gc-occasions h4 {
    font-size: 0.95rem;
    color: var(--cream);
    margin-bottom: 1rem;
    font-weight: 400;
}

.gc-occasion-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0.6rem;
}

.gc-occasion-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.35rem;
    padding: 0.8rem 0.5rem;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: var(--radius-md);
    color: var(--gray-400);
    font-size: 0.72rem;
    font-weight: 300;
    cursor: pointer;
    transition: var(--transition-fast);
}

.gc-occasion-btn:hover {
    background: rgba(255,255,255,0.08);
    border-color: rgba(241, 193, 102, 0.25);
    color: var(--cream);
}

.gc-occasion-btn.active {
    background: rgba(161, 58, 30, 0.2);
    border-color: var(--primary);
    color: var(--accent);
}

.gc-occasion-icon {
    font-size: 1.3rem;
    line-height: 1;
}

/* Gift Card Form */
.giftcard-form-wrapper {
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: 2.5rem;
    box-shadow: var(--shadow-xl);
    display: flex;
    align-items: center;
}

.giftcard-form {
    width: 100%;
}

.giftcard-form h3 {
    font-size: 1.4rem;
    margin-bottom: 1.5rem;
    text-align: center;
    color: var(--text-dark);
}

.gc-form-step {
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--gray-200);
}

.gc-form-step:last-of-type {
    border-bottom: none;
    padding-bottom: 0.5rem;
}

.gc-step-label {
    display: flex;
    align-items: center;
    gap: 0.7rem;
    font-size: 0.88rem;
    font-weight: 300;
    color: var(--text-dark);
    margin-bottom: 1.2rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.gc-step-num {
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary);
    color: var(--white);
    border-radius: 50%;
    font-size: 0.75rem;
    font-weight: 300;
    flex-shrink: 0;
}

.gc-amount-options {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.6rem;
    margin-bottom: 1.2rem;
}

.gc-amt-btn {
    padding: 0.75rem 0.5rem;
    background: var(--gray-100);
    border: 1.5px solid transparent;
    border-radius: var(--radius-md);
    font-size: 0.9rem;
    font-weight: 400;
    color: var(--text-body);
    cursor: pointer;
    transition: var(--transition-fast);
    text-align: center;
}

.gc-amt-btn:hover {
    border-color: var(--primary);
    color: var(--primary);
    background: rgba(161, 58, 30, 0.04);
}

.gc-amt-btn.active {
    background: var(--primary);
    color: var(--white);
    border-color: var(--primary);
}

.gc-custom-amount {
    margin-top: 1rem;
}

.gc-custom-amount label {
    display: block;
    font-size: 0.78rem;
    font-weight: 400;
    color: var(--text-muted);
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.gc-custom-input-wrap {
    position: relative;
    display: flex;
    align-items: center;
}

.gc-currency-symbol {
    position: absolute;
    left: 1rem;
    font-size: 1rem;
    font-weight: 400;
    color: var(--text-muted);
    pointer-events: none;
}

.gc-custom-input-wrap input {
    width: 100%;
    padding: 0.85rem 1rem 0.85rem 2.2rem;
    background: var(--gray-100);
    border: 1.5px solid transparent;
    border-radius: var(--radius-md);
    color: var(--text-dark);
    font-size: 0.9rem;
    transition: var(--transition-fast);
}

.gc-custom-input-wrap input:focus {
    border-color: var(--primary);
    background: var(--white);
    box-shadow: 0 0 0 4px rgba(161, 58, 30, 0.08);
}

.gc-custom-input-wrap input::placeholder {
    color: var(--gray-400);
}

.gc-optional {
    font-weight: 400;
    font-size: 0.72rem;
    color: var(--gray-400);
    text-transform: none;
    letter-spacing: 0;
}

.gc-submit-btn {
    gap: 0.6rem;
    margin-bottom: 1rem;
}

.gc-note {
    font-size: 0.78rem;
    color: var(--text-muted);
    text-align: center;
    line-height: 1.6;
}

/* ---------- Membership Section ---------- */
.membership-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.8rem;
}

.membership-card {
    background: var(--off-white);
    border-radius: var(--radius-xl);
    overflow: hidden;
    position: relative;
    transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    display: flex;
    flex-direction: column;
}

.membership-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.15);
}

.membership-card.featured {
    box-shadow: 0 8px 30px rgba(161, 58, 30, 0.2);
}

.membership-card.featured:hover {
    transform: translateY(-10px);
    box-shadow: 0 24px 60px rgba(161, 58, 30, 0.25);
}

/* Card Header - Colored top section */
.membership-card-header {
    background: linear-gradient(145deg, rgba(255,255,255,0.06), rgba(255,255,255,0.02));
    background-color: var(--gray-800);
    padding: 2rem 1.8rem 1.6rem;
    text-align: center;
    position: relative;
}

.membership-card.featured .membership-card-header {
    background: linear-gradient(145deg, var(--primary), var(--primary-dark));
}

.membership-badge {
    display: inline-block;
    font-size: 0.6rem;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 2.5px;
    color: var(--accent);
    background: rgba(241, 193, 102, 0.15);
    padding: 0.25rem 0.85rem;
    border-radius: var(--radius-full);
    margin-bottom: 0.8rem;
}

.membership-card.featured .membership-badge {
    background: rgba(255,255,255,0.2);
    color: var(--white);
}

.membership-card-header h3 {
    font-size: 1.4rem;
    font-weight: 400;
    color: var(--white);
    margin-bottom: 0.3rem;
    letter-spacing: 0.5px;
}

.membership-tagline {
    font-size: 0.78rem;
    color: rgba(255,255,255,0.55);
    letter-spacing: 0.3px;
}

.membership-card.featured .membership-tagline {
    color: rgba(255,255,255,0.7);
}

/* Card Body - White section */
.membership-card-body {
    padding: 2rem 1.8rem 2.2rem;
    text-align: center;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.membership-price {
    margin-bottom: 0.4rem;
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 0.15rem;
}

.membership-price .currency {
    font-size: 1.1rem;
    color: var(--primary);
    font-weight: 400;
}

.membership-price .amount {
    font-family: var(--font-heading);
    font-size: 2.4rem;
    font-weight: 400;
    color: var(--text-dark);
    line-height: 1;
}

.membership-price .period {
    font-size: 0.8rem;
    color: var(--gray-500);
    margin-left: 0.2rem;
}

.membership-note {
    font-size: 0.7rem;
    color: var(--gray-400);
    margin-bottom: 1.6rem;
    letter-spacing: 0.5px;
}

.membership-features {
    text-align: left;
    margin-bottom: 2rem;
    flex: 1;
}

.membership-features li {
    font-size: 0.85rem;
    color: var(--text-body);
    padding: 0.55rem 0;
    padding-left: 1.5rem;
    position: relative;
    border-bottom: 1px solid var(--gray-200);
}

.membership-features li:last-child {
    border-bottom: none;
}

.membership-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary);
    font-weight: 400;
    font-size: 0.85rem;
}

.membership-card .btn-outline {
    border-color: var(--gray-300);
    color: var(--text-body);
    border-radius: var(--radius-full);
    padding: 0.75rem 1.5rem;
    font-size: 0.82rem;
    letter-spacing: 0.5px;
    transition: all 0.3s var(--ease);
}

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

.membership-card .btn-primary {
    border-radius: var(--radius-full);
    padding: 0.75rem 1.5rem;
    font-size: 0.82rem;
    letter-spacing: 0.5px;
}

/* ---------- Locations Section ---------- */
.locations-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.location-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 2.5rem 2rem;
    text-align: center;
    transition: var(--transition);
    border: 1px solid transparent;
    position: relative;
    overflow: hidden;
}

.location-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    transform: scaleX(0);
    transition: var(--transition);
}

.location-card:hover::after {
    transform: scaleX(1);
}

.location-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(161, 58, 30, 0.1);
}

.location-icon {
    width: 56px;
    height: 56px;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(161, 58, 30, 0.08), rgba(241, 193, 102, 0.08));
    color: var(--primary);
    transition: var(--transition);
}

.location-card:hover .location-icon {
    background: var(--primary);
    color: var(--white);
}

.location-card h3 {
    font-size: 1.1rem;
    margin-bottom: 0.8rem;
    font-weight: 400;
}

.location-card p {
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.location-phone {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.88rem;
    font-weight: 400;
    color: var(--primary);
    transition: var(--transition-fast);
}

.location-phone:hover {
    color: var(--primary-dark);
}

/* ---------- Booking Section ---------- */
.section-booking {
    overflow: hidden;
}

.booking-bg {
    position: absolute;
    inset: 0;
    background: url('../images/gallery-8.jpeg') center/cover no-repeat;
}

.booking-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(30, 18, 8, 0.93) 0%,
        rgba(84, 41, 22, 0.93) 100%
    );
}

.booking-grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.booking-info .section-tag {
    padding-left: 0;
}

.booking-info .section-tag::before {
    display: none;
}

.booking-info h2 {
    font-size: clamp(2rem, 3.5vw, 2.8rem);
    color: var(--cream);
    margin-bottom: 1.5rem;
}

.booking-info > p {
    color: var(--gray-300);
    font-size: 1rem;
    margin-bottom: 2rem;
}

.booking-perks {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2.5rem;
}

.perk {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    color: var(--gray-300);
    font-size: 0.92rem;
}

.perk svg {
    color: var(--accent);
    flex-shrink: 0;
}

.booking-contact p {
    font-size: 0.85rem;
    color: var(--gray-400);
    margin-bottom: 0.3rem;
}

.booking-phone {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 300;
    color: var(--accent) !important;
    transition: var(--transition-fast);
}

.booking-phone:hover {
    color: var(--white) !important;
}

/* Booking Form */
.booking-form-wrapper {
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: 3rem;
    box-shadow: var(--shadow-xl);
}

.booking-form h3 {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    text-align: center;
    color: var(--text-dark);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 1rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    margin-bottom: 0.5rem;
}

.form-group label {
    font-size: 0.78rem;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--text-muted);
    margin-bottom: 0.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 0.85rem 1rem;
    background: var(--gray-100);
    border: 1.5px solid transparent;
    border-radius: var(--radius-md);
    color: var(--text-dark);
    transition: var(--transition-fast);
    font-size: 0.9rem;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--primary);
    background: var(--white);
    box-shadow: 0 0 0 4px rgba(161, 58, 30, 0.08);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--gray-400);
}

.form-group select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%238c7e6e' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    padding-right: 2.5rem;
    cursor: pointer;
}

.form-group textarea {
    resize: vertical;
    min-height: 80px;
}

.booking-form .btn-lg {
    margin-top: 1rem;
}

/* ---------- Contact Section ---------- */
.contact-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.contact-card {
    text-align: center;
    background: var(--white);
    padding: 2.5rem 2rem;
    border-radius: var(--radius-lg);
    transition: var(--transition);
    border: 1px solid transparent;
}

.contact-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(161, 58, 30, 0.1);
}

.contact-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(161, 58, 30, 0.08), rgba(241, 193, 102, 0.08));
    color: var(--primary);
    transition: var(--transition);
}

.contact-card:hover .contact-icon {
    background: var(--primary);
    color: var(--white);
}

.contact-card h3 {
    font-size: 1.1rem;
    margin-bottom: 0.8rem;
    font-weight: 400;
}

.contact-card a {
    display: block;
    color: var(--primary);
    font-weight: 300;
    font-size: 0.92rem;
    margin-bottom: 0.3rem;
}

.contact-card a:hover {
    color: var(--primary-dark);
}

.contact-card p {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.6;
}

.visit-locations {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.visit-locations li {
    font-size: 0.88rem;
    color: var(--text-muted);
    line-height: 1.5;
    padding-left: 1.2rem;
    position: relative;
    font-weight: 300;
}

.visit-locations li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.5em;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--primary);
}

/* ---------- Footer ---------- */
.footer {
    background: var(--gray-900);
    color: var(--gray-400);
}

.footer-top {
    padding: 5rem 0 3rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.2fr;
    gap: 3rem;
}

.footer-logo {
    height: 40px;
    margin-bottom: 1.5rem;
}

.footer-brand p {
    font-size: 0.88rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: var(--gray-500);
}

.footer-socials {
    display: flex;
    gap: 0.8rem;
}

.footer-socials a {
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255,255,255,0.05);
    color: var(--gray-400);
    transition: var(--transition-fast);
}

.footer-socials a:hover {
    background: var(--primary);
    color: var(--white);
    transform: translateY(-3px);
}

.footer-links h4,
.footer-contact h4 {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 400;
    color: var(--cream);
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 0.8rem;
}

.footer-links h4::after,
.footer-contact h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background: var(--primary);
}

.footer-links a {
    display: block;
    font-size: 0.88rem;
    color: var(--gray-500);
    padding: 0.4rem 0;
    transition: var(--transition-fast);
}

.footer-links a:hover {
    color: var(--accent);
    padding-left: 0.5rem;
}

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 0.8rem;
    margin-bottom: 1rem;
    font-size: 0.88rem;
}

.footer-contact-item svg {
    flex-shrink: 0;
    margin-top: 2px;
    color: var(--primary);
}

.footer-contact-item a,
.footer-contact-item span {
    color: var(--gray-500);
    transition: var(--transition-fast);
}

.footer-contact-item a:hover {
    color: var(--accent);
}

.footer-bottom {
    padding: 1.5rem 0;
    border-top: 1px solid rgba(255,255,255,0.05);
}

.footer-bottom .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-bottom p {
    font-size: 0.82rem;
    color: var(--gray-600);
}

.footer-credit a {
    color: var(--primary);
    font-weight: 300;
}

.footer-credit a:hover {
    color: var(--accent);
}

/* ---------- WhatsApp Float ---------- */
.whatsapp-float {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 999;
    width: 56px;
    height: 56px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    transition: var(--transition);
    animation: whatsappPulse 2s ease-in-out infinite;
}

.whatsapp-float:hover {
    transform: scale(1.1) translateY(-3px);
    box-shadow: 0 8px 30px rgba(37, 211, 102, 0.5);
}

@keyframes whatsappPulse {
    0%, 100% { box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4); }
    50% { box-shadow: 0 4px 30px rgba(37, 211, 102, 0.6); }
}

/* ---------- Spin Wheel Float & Modals ---------- */
.whatsapp-float {
    bottom: 5.5rem; /* push up to make room for spin float */
}

.spin-float {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 999;
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    border-radius: 50%;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 4px 20px rgba(var(--primary-rgb), 0.4);
    transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
    animation: spinFloat 3s ease-in-out infinite;
}

.spin-float.sw-hide { display: none; }

.spin-float:hover {
    transform: scale(1.12) translateY(-3px);
    box-shadow: 0 8px 30px rgba(var(--primary-rgb), 0.5);
}

@keyframes spinFloat {
    0%, 100% { box-shadow: 0 4px 20px rgba(var(--primary-rgb), 0.4); }
    50% { box-shadow: 0 4px 30px rgba(var(--accent-rgb), 0.5); }
}

/* Shared modal layout */
.sw-modal, .sw-win-modal, .sw-lose-modal {
    position: fixed;
    inset: 0;
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.35s var(--ease), visibility 0s 0.35s;
}

.sw-modal.open, .sw-win-modal.open, .sw-lose-modal.open {
    opacity: 1;
    visibility: visible;
    transition: opacity 0.35s var(--ease), visibility 0s 0s;
}

.sw-modal-backdrop, .sw-win-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(13, 8, 4, 0.7);
    -webkit-backdrop-filter: blur(6px);
    backdrop-filter: blur(6px);
}

.sw-modal-body {
    position: relative;
    background: var(--bg);
    border-radius: var(--radius-xl);
    padding: 2.5rem 2rem 2rem;
    max-width: 380px;
    width: 90%;
    text-align: center;
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
    transform: translateY(30px) scale(0.95);
    transition: transform 0.4s var(--ease);
}

.sw-modal.open .sw-modal-body {
    transform: translateY(0) scale(1);
}

.sw-close {
    position: absolute;
    top: 0.8rem;
    right: 0.8rem;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: none;
    background: var(--gray-100);
    color: var(--text-body);
    font-size: 1.3rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s;
}

.sw-close:hover {
    background: var(--gray-200);
}

.sw-title {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 400;
    color: var(--text-dark);
    margin-bottom: 0.3rem;
}

.sw-subtitle {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 1.5rem;
}

/* Wheel */
.sw-wheel-container {
    position: relative;
    width: 280px;
    height: 280px;
    margin: 0 auto 1.5rem;
}

.sw-pointer {
    position: absolute;
    top: -8px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.2));
}

#spinWheelCanvas {
    width: 280px;
    height: 280px;
    border-radius: 50%;
    box-shadow: 0 0 0 6px var(--secondary), 0 0 0 10px var(--accent), 0 8px 30px rgba(0,0,0,0.15);
}

.sw-spin-btn {
    font-size: 1rem;
    letter-spacing: 2px;
    padding: 0.8rem 3rem;
    border-radius: var(--radius-full);
}

.sw-spin-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.sw-note {
    font-size: 0.75rem;
    color: var(--text-muted);
    margin-top: 0.8rem;
}

/* Win modal */
.sw-win-body {
    position: relative;
    background: var(--bg);
    border-radius: var(--radius-xl);
    padding: 2.5rem 2rem 2rem;
    max-width: 380px;
    width: 90%;
    text-align: center;
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
    transform: translateY(30px) scale(0.95);
    transition: transform 0.4s var(--ease);
    overflow: hidden;
}

.sw-win-modal.open .sw-win-body,
.sw-lose-modal.open .sw-win-body {
    transform: translateY(0) scale(1);
}

.sw-win-icon {
    font-size: 3.5rem;
    margin-bottom: 0.5rem;
    animation: swBounce 0.6s var(--ease-bounce);
}

@keyframes swBounce {
    0% { transform: scale(0); }
    60% { transform: scale(1.3); }
    100% { transform: scale(1); }
}

.sw-win-title {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    font-weight: 400;
    color: var(--text-dark);
    margin-bottom: 0.3rem;
}

.sw-win-prize {
    font-size: 1.1rem;
    color: var(--primary);
    font-weight: 500;
    margin-bottom: 1.2rem;
}

.sw-win-code-wrap {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--gray-100);
    border: 2px dashed var(--primary);
    border-radius: var(--radius-md);
    padding: 0.7rem 1.2rem;
    margin-bottom: 0.8rem;
}

.sw-win-code {
    font-family: 'Courier New', monospace;
    font-size: 1.15rem;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--primary);
    -webkit-user-select: all;
    user-select: all;
}

.sw-copy-btn {
    background: none;
    border: none;
    color: var(--text-muted);
    cursor: pointer;
    padding: 4px;
    border-radius: 4px;
    transition: color 0.2s;
}

.sw-copy-btn:hover { color: var(--primary); }

.sw-copy-btn.copied { color: #25D366; }

.sw-win-note {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-bottom: 1.2rem;
}

.sw-lose-text {
    font-size: 0.95rem;
    color: var(--text-body);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.sw-win-done {
    border-radius: var(--radius-full);
    padding: 0.7rem 2.5rem;
}

/* Confetti */
.sw-win-confetti {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
    z-index: 0;
}

.sw-confetti-piece {
    position: absolute;
    width: 8px;
    height: 8px;
    border-radius: 2px;
    top: -10px;
    animation: swConfettiFall 2.5s ease-in forwards;
}

@keyframes swConfettiFall {
    0% { transform: translateY(0) rotate(0deg); opacity: 1; }
    100% { transform: translateY(400px) rotate(720deg); opacity: 0; }
}

/* ---------- Back to Top ---------- */
.back-to-top {
    position: fixed;
    bottom: 2rem;
    right: 6rem;
    z-index: 999;
    width: 44px;
    height: 44px;
    background: var(--primary);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-md);
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: var(--transition);
    cursor: pointer;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    background: var(--primary-dark);
    transform: translateY(-3px);
}

/* ---------- Modal ---------- */
.modal {
    position: fixed;
    inset: 0;
    z-index: 99999;
    background: rgba(13, 10, 7, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    -webkit-backdrop-filter: blur(8px);
    backdrop-filter: blur(8px);
}

.modal.active {
    opacity: 1;
    visibility: visible;
}

.modal-content {
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: 3rem;
    max-width: 440px;
    width: 100%;
    text-align: center;
    position: relative;
    transform: scale(0.9) translateY(20px);
    transition: var(--transition);
}

.modal.active .modal-content {
    transform: scale(1) translateY(0);
}

.modal-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--gray-500);
    border-radius: 50%;
    cursor: pointer;
    transition: var(--transition-fast);
}

.modal-close:hover {
    background: var(--gray-100);
    color: var(--primary);
}

.modal-icon {
    color: #22c55e;
    margin-bottom: 1.5rem;
}

.modal-content h3 {
    font-size: 1.5rem;
    margin-bottom: 0.8rem;
}

.modal-content p {
    color: var(--text-muted);
    margin-bottom: 2rem;
    font-size: 0.95rem;
}

/* ---------- Scroll Animations ---------- */
[data-animate] {
    opacity: 0;
    transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}

[data-animate="fade-up"] {
    transform: translateY(40px);
}

[data-animate="fade-down"] {
    transform: translateY(-40px);
}

[data-animate="fade-left"] {
    transform: translateX(40px);
}

[data-animate="fade-right"] {
    transform: translateX(-40px);
}

[data-animate].animated {
    opacity: 1;
    transform: translate(0);
}

/* ---------- Selection ---------- */
::selection {
    background: rgba(161, 58, 30, 0.15);
    color: var(--primary-dark);
}

/* ---------- Scrollbar ---------- */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--bg-lighter);
}

::-webkit-scrollbar-thumb {
    background: var(--gray-400);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primary);
}

/* ==========================================
   RESPONSIVE DESIGN
   ========================================== */

/* ---------- Large Screens (<= 1200px) ---------- */
@media (max-width: 1200px) {
    .membership-grid {
        grid-template-columns: repeat(2, 1fr);
    }

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

    .footer-grid {
        grid-template-columns: 2fr 1fr 1fr;
    }

    .footer-contact {
        grid-column: span 3;
        margin-top: 1rem;
    }
}

/* ---------- Medium Screens (<= 1024px) ---------- */
@media (max-width: 1024px) {
    .nav-menu {
        display: none;
    }

    .nav-btn {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .about-images {
        max-width: 500px;
        margin: 0 auto;
    }

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

    .about-content .section-tag {
        padding: 0 2rem;
    }

    .about-content .section-tag::before {
        display: block;
    }

    .about-stats {
        justify-content: center;
    }

    .about-content .btn {
        margin: 0 auto;
    }

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

    .treatments-list {
        grid-template-columns: 1fr;
    }

    .gallery-grid {
        grid-template-columns: repeat(3, 1fr);
        grid-auto-rows: 200px;
    }

    .booking-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

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

    .booking-perks {
        align-items: center;
    }

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

    .giftcard-layout {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .giftcard-preview {
        position: static;
        max-width: 500px;
        margin: 0 auto;
    }
}

/* ---------- Tablet (<= 768px) ---------- */
@media (max-width: 768px) {
    :root {
        --section-padding: 5rem 0;
    }

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

    .features-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 1.2rem;
    }

    .cert-track {
        gap: 1.2rem;
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-auto-rows: 180px;
    }

    .gallery-item.tall {
        grid-row: span 2;
    }

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

    .locations-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto;
    }

    .contact-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .gc-amount-options {
        grid-template-columns: repeat(3, 1fr);
        gap: 0.5rem;
    }

    .gc-occasion-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 0.5rem;
    }

    .gc-occasion-btn {
        padding: 0.6rem 0.4rem;
        font-size: 0.68rem;
    }

    .gc-occasion-icon {
        font-size: 1.1rem;
    }

    .giftcard-front {
        padding: 2rem;
        min-height: 240px;
    }

    .gc-amount {
        font-size: 2.5rem;
    }

    .gc-form-step {
        margin-bottom: 1.5rem;
        padding-bottom: 1.5rem;
    }

    .giftcard-form h3 {
        font-size: 1.2rem;
        margin-bottom: 1.2rem;
    }

    .giftcard-form-wrapper {
        padding: 1.8rem;
    }

    .booking-form-wrapper {
        padding: 2rem;
    }

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

    .footer-brand {
        grid-column: span 2;
    }

    .footer-contact {
        grid-column: span 2;
    }

    .footer-bottom .container {
        flex-direction: column;
        gap: 0.5rem;
        text-align: center;
    }
}

/* ---------- Mobile (<= 576px) ---------- */
@media (max-width: 576px) {
    :root {
        --section-padding: 4rem 0;
    }

    .hero-title-line {
        font-size: clamp(2.5rem, 12vw, 4rem);
        letter-spacing: 0.1em;
    }

    .hero-title-line.accent {
        font-size: clamp(0.8rem, 3.5vw, 1.2rem);
        letter-spacing: 0.3em;
    }

    .hero-subtitle {
        white-space: normal;
        max-width: 320px;
        font-size: 0.85rem;
    }

    .hero-divider {
        width: 40px;
        margin: 1.2rem auto;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .hero-buttons .btn {
        width: 100%;
        max-width: 280px;
    }

    .hero-scroll {
        display: none;
    }

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

    .cert-track {
        gap: 1rem;
    }

    .certification-card {
        width: 160px;
        padding: 1.2rem 1rem;
    }

    .cert-icon {
        width: 56px;
        height: 56px;
    }

    .cert-icon svg {
        width: 32px;
        height: 32px;
    }

    .feature-card {
        padding: 1.5rem 1rem;
    }

    .about-img-main img {
        height: 350px;
    }

    .about-img-accent {
        width: 140px;
        height: 140px;
        right: -10px;
        bottom: -20px;
    }

    .about-experience {
        left: -10px;
        top: -15px;
        padding: 1rem;
    }

    .exp-number {
        font-size: 2rem;
    }

    .service-tabs {
        gap: 0.4rem;
    }

    .tab-btn {
        font-size: 0.78rem;
        padding: 0.6rem 1.2rem;
    }

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

    .gc-occasion-grid {
        display: flex;
        overflow-x: auto;
        gap: 0.5rem;
        padding-bottom: 0.5rem;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
    }

    .gc-occasion-grid::-webkit-scrollbar {
        display: none;
    }

    .gc-occasion-btn {
        flex: 0 0 auto;
        min-width: 72px;
        padding: 0.6rem 0.5rem;
        font-size: 0.65rem;
    }

    .gc-occasion-icon {
        font-size: 1rem;
    }

    .gc-amount-options {
        grid-template-columns: repeat(3, 1fr);
        gap: 0.4rem;
    }

    .gc-amt-btn {
        padding: 0.6rem 0.3rem;
        font-size: 0.8rem;
    }

    .giftcard-form-wrapper {
        padding: 1.2rem;
    }

    .giftcard-front {
        padding: 1.5rem;
        min-height: 200px;
    }

    .gc-amount {
        font-size: 2rem;
    }

    .gc-amount-label {
        font-size: 0.6rem;
        letter-spacing: 2px;
    }

    .gc-floating-emoji {
        font-size: 6rem;
    }

    .gc-type {
        font-size: 0.62rem;
        padding: 0.25rem 0.6rem;
    }

    .gc-logo {
        height: 26px;
    }

    .gc-label {
        font-size: 0.55rem;
    }

    .gc-value {
        font-size: 0.78rem;
    }

    .gc-form-step {
        margin-bottom: 1.2rem;
        padding-bottom: 1.2rem;
    }

    .gc-step-label {
        font-size: 0.8rem;
        margin-bottom: 0.8rem;
        gap: 0.5rem;
    }

    .gc-step-num {
        width: 24px;
        height: 24px;
        font-size: 0.68rem;
    }

    .giftcard-form h3 {
        font-size: 1.1rem;
        margin-bottom: 1rem;
    }

    .gc-custom-amount {
        margin-top: 0.7rem;
    }

    .gc-custom-input-wrap input {
        padding: 0.7rem 1rem 0.7rem 2rem;
        font-size: 0.85rem;
    }

    .gc-occasions h4 {
        font-size: 0.85rem;
        margin-bottom: 0.7rem;
    }

    .gc-submit-btn {
        margin-bottom: 0.7rem;
    }

    .gc-note {
        font-size: 0.7rem;
    }

    .giftcard-layout {
        gap: 1.5rem;
    }

    .giftcard-visual {
        margin-bottom: 1.5rem;
    }

    .treatment-item {
        padding: 1.5rem;
    }

    .treatment-number {
        font-size: 2rem;
        min-width: 40px;
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-auto-rows: 150px;
    }

    .gallery-item.tall {
        grid-row: span 1;
    }

    .membership-grid {
        grid-template-columns: 1fr;
        max-width: 420px;
        margin: 0 auto;
    }

    .booking-form-wrapper {
        padding: 1.5rem;
    }

    .booking-form h3 {
        font-size: 1.3rem;
    }

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

    .footer-brand {
        grid-column: auto;
    }

    .footer-contact {
        grid-column: auto;
    }

    .whatsapp-float {
        bottom: 5rem;
        right: 1.5rem;
        width: 50px;
        height: 50px;
    }

    .spin-float {
        bottom: 1.5rem;
        right: 1.5rem;
        width: 50px;
        height: 50px;
    }

    .back-to-top {
        right: 5rem;
        width: 40px;
        height: 40px;
    }
}

/* ---------- Small Mobile (<= 380px) ---------- */
@media (max-width: 380px) {
    .hero-badge span:not(.badge-line) {
        font-size: 0.65rem;
        letter-spacing: 2px;
    }

    .badge-line {
        width: 25px;
    }

    .certification-card {
        width: 150px;
    }

    .certification-card h4 {
        font-size: 0.85rem;
    }

    .about-stats {
        gap: 1.5rem;
    }

    .stat-number {
        font-size: 2rem;
    }

    .membership-price .amount {
        font-size: 2rem;
    }

    .giftcard-front {
        padding: 1.2rem;
        min-height: 180px;
    }

    .gc-amount {
        font-size: 1.8rem;
    }

    .gc-body {
        padding: 1rem 0;
    }

    .gc-amount-options {
        grid-template-columns: repeat(3, 1fr);
        gap: 0.35rem;
    }

    .gc-amt-btn {
        padding: 0.5rem 0.2rem;
        font-size: 0.75rem;
    }

    .giftcard-form-wrapper {
        padding: 1rem;
    }

    .gc-occasion-btn {
        min-width: 64px;
    }
}
