/* ============================================================
   Mayssage Therapy — Premium Spa Design System
   Mobile-first, modern, luxury Mediterranean aesthetic
   ============================================================ */

/* --- CSS Custom Properties --- */
:root {
    /* Colors */
    --color-primary: #1a3a3a;
    --color-primary-light: #245454;
    --color-primary-dark: #0f2424;
    --color-accent: #c9a96e;
    --color-accent-light: #d4bb8a;
    --color-accent-dark: #b08d4a;
    --color-cream: #f5f0e8;
    --color-cream-dark: #ebe4d8;
    --color-white: #ffffff;
    --color-black: #0a0a0a;
    --color-text: #2d2d2d;
    --color-text-light: #6b6b6b;
    --color-text-muted: #999999;
    --color-border: rgba(0, 0, 0, 0.08);
    --color-shadow: rgba(26, 58, 58, 0.12);
    --color-overlay: rgba(10, 10, 10, 0.55);
    --color-glass: rgba(255, 255, 255, 0.12);
    --color-glass-border: rgba(255, 255, 255, 0.2);
    --color-success: #2d8a5e;
    --color-whatsapp: #25d366;

    /* Typography */
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-heading: 'Playfair Display', 'Georgia', serif;
    --fw-light: 300;
    --fw-regular: 400;
    --fw-medium: 500;
    --fw-semibold: 600;
    --fw-bold: 700;

    /* Spacing */
    --space-xs: 0.25rem;
    --space-sm: 0.5rem;
    --space-md: 1rem;
    --space-lg: 1.5rem;
    --space-xl: 2rem;
    --space-2xl: 3rem;
    --space-3xl: 4rem;
    --space-4xl: 6rem;
    --space-5xl: 8rem;

    /* Layout */
    --container-max: 1200px;
    --container-narrow: 800px;
    --header-height: 50px;
    --border-radius: 12px;
    --border-radius-sm: 8px;
    --border-radius-lg: 20px;
    --border-radius-full: 9999px;

    /* Transitions */
    --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-base: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-spring: 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);

    /* Shadows */
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.06), 0 1px 2px rgba(0, 0, 0, 0.04);
    --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.08), 0 2px 4px rgba(0, 0, 0, 0.04);
    --shadow-lg: 0 12px 40px rgba(0, 0, 0, 0.12), 0 4px 12px rgba(0, 0, 0, 0.06);
    --shadow-xl: 0 20px 60px rgba(0, 0, 0, 0.15), 0 8px 20px rgba(0, 0, 0, 0.08);
    --shadow-gold: 0 4px 20px rgba(201, 169, 110, 0.3);
}

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

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    font-weight: var(--fw-regular);
    color: var(--color-text);
    background-color: var(--color-white);
    line-height: 1.7;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

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

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

/* --- Accessibility --- */
.skip-link {
    position: absolute;
    top: -100%;
    left: var(--space-md);
    background: var(--color-primary);
    color: var(--color-white);
    padding: var(--space-sm) var(--space-md);
    border-radius: var(--border-radius-sm);
    z-index: 10000;
    font-weight: var(--fw-semibold);
}

.skip-link:focus {
    top: var(--space-md);
}

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

.container-narrow {
    max-width: var(--container-narrow);
}

/* --- Typography --- */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    font-weight: var(--fw-bold);
    color: var(--color-primary);
    line-height: 1.2;
}

h1 {
    font-size: clamp(2rem, 5vw, 3.5rem);
}

h2 {
    font-size: clamp(1.6rem, 4vw, 2.5rem);
}

h3 {
    font-size: clamp(1.25rem, 3vw, 1.75rem);
}

h4 {
    font-size: 1.25rem;
}

.section-label {
    display: inline-block;
    font-family: var(--font-body);
    font-size: 0.8rem;
    font-weight: var(--fw-semibold);
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--color-accent);
    margin-bottom: var(--space-sm);
}

.section-title {
    margin-bottom: var(--space-lg);
    position: relative;
}

.section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--color-accent), var(--color-accent-light));
    margin-top: var(--space-md);
    border-radius: 2px;
}

.section-title.text-center::after {
    margin-left: auto;
    margin-right: auto;
}

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

/* --- Buttons --- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-sm);
    padding: 0.85rem 2rem;
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: var(--fw-semibold);
    border: none;
    border-radius: var(--border-radius-full);
    cursor: pointer;
    transition: all var(--transition-base);
    text-decoration: none;
    line-height: 1.2;
    white-space: nowrap;
}

.btn-primary {
    background: linear-gradient(135deg, var(--color-accent), var(--color-accent-dark));
    color: var(--color-white);
    box-shadow: var(--shadow-gold);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(201, 169, 110, 0.45);
    color: var(--color-white);
}

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

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

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

.btn-white:hover {
    background: var(--color-cream);
    color: var(--color-primary);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

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

.btn-icon {
    font-size: 1.2rem;
}

/* ============================================================
   HEADER & NAVIGATION
   ============================================================ */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1100;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--color-border);
    transition: all var(--transition-base);
    height: var(--header-height);
}

.site-header.scrolled {
    background: rgba(255, 255, 255, 0.97);
    box-shadow: var(--shadow-md);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: var(--header-height);
    gap: var(--space-lg);
}

/* Logo */
.site-logo,
.footer-logo {
    display: flex;
    align-items: baseline;
    gap: 0.35rem;
    font-family: var(--font-heading);
    font-size: 1.35rem;
    font-weight: var(--fw-bold);
    text-decoration: none;
    flex-shrink: 0;
}

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

.logo-accent {
    color: var(--color-accent);
    font-weight: var(--fw-regular);
    font-style: italic;
}

/* Navigation */
.main-nav {
    display: none;
}

.nav-list {
    display: flex;
    list-style: none;
    gap: var(--space-xs);
    align-items: center;
}

.nav-link {
    display: block;
    padding: var(--space-sm) var(--space-md);
    color: var(--color-text);
    font-size: 0.9rem;
    font-weight: var(--fw-medium);
    border-radius: var(--border-radius-sm);
    transition: all var(--transition-fast);
    text-decoration: none;
    position: relative;
}

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

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: var(--space-md);
    right: var(--space-md);
    height: 2px;
    background: var(--color-accent);
    border-radius: 1px;
}

.nav-arrow {
    font-size: 0.7rem;
    margin-left: 2px;
    transition: transform var(--transition-fast);
}

/* Dropdown */
.nav-dropdown {
    position: relative;
}

.dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 240px;
    background: var(--color-white);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--color-border);
    padding: var(--space-sm) 0;
    list-style: none;
    z-index: 100;
    animation: dropdownFade 0.2s ease;
}

.nav-dropdown:hover .dropdown-menu {
    display: block;
}

.nav-dropdown:hover .nav-arrow {
    transform: rotate(180deg);
}

.dropdown-menu a {
    display: block;
    padding: var(--space-sm) var(--space-lg);
    color: var(--color-text);
    font-size: 0.88rem;
    transition: all var(--transition-fast);
}

.dropdown-menu a:hover {
    background: var(--color-cream);
    color: var(--color-accent-dark);
    padding-left: var(--space-xl);
}

@keyframes dropdownFade {
    from {
        opacity: 0;
        transform: translateY(-8px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Header Actions */
.header-actions {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    flex-shrink: 0;
}

.header-cta {
    display: none;
}

/* Language Switcher */
.lang-switcher {
    position: relative;
}

.lang-current {
    display: flex;
    align-items: center;
    gap: var(--space-xs);
    padding: 0.4rem 0.75rem;
    background: transparent;
    border: 1.5px solid var(--color-border);
    border-radius: var(--border-radius-full);
    cursor: pointer;
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: var(--fw-medium);
    color: var(--color-text);
    transition: all var(--transition-fast);
}

.lang-current:hover {
    border-color: var(--color-accent);
    background: var(--color-cream);
}

.lang-flag {
    font-size: 1.1rem;
    line-height: 1;
}

.lang-code {
    font-size: 0.8rem;
    font-weight: var(--fw-semibold);
}

.lang-arrow {
    font-size: 0.65rem;
    transition: transform var(--transition-fast);
}

.lang-switcher.open .lang-arrow {
    transform: rotate(180deg);
}

.lang-dropdown {
    display: none;
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    min-width: 170px;
    background: var(--color-white);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--color-border);
    padding: var(--space-xs) 0;
    list-style: none;
    z-index: 200;
    animation: dropdownFade 0.2s ease;
}

.lang-switcher.open .lang-dropdown {
    display: block;
}

.lang-option {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    padding: var(--space-sm) var(--space-md);
    color: var(--color-text);
    font-size: 0.88rem;
    transition: all var(--transition-fast);
}

.lang-option:hover {
    background: var(--color-cream);
    color: var(--color-accent-dark);
}

.lang-option.current {
    color: var(--color-accent-dark);
    font-weight: var(--fw-semibold);
    background: var(--color-cream);
}

.lang-name {
    font-size: 0.88rem;
}

/* Mobile Toggle */
.mobile-toggle {
    display: flex;
    flex-direction: column;
    gap: 5px;
    width: 28px;
    padding: 4px 0;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 1100;
}

.hamburger-line {
    display: block;
    width: 100%;
    height: 2px;
    background: var(--color-primary);
    border-radius: 2px;
    transition: all var(--transition-base);
    transform-origin: center;
}

.mobile-toggle.active .hamburger-line:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.mobile-toggle.active .hamburger-line:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}

.mobile-toggle.active .hamburger-line:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* Mobile Navigation Overlay */
.mobile-nav-overlay {
    position: fixed;
    inset: 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    z-index: 1050;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition-base);
}

.mobile-nav-overlay.open {
    opacity: 1;
    visibility: visible;
}

.mobile-nav {
    text-align: center;
    padding: var(--space-xl);
    max-height: 90vh;
    overflow-y: auto;
}

.mobile-nav-list {
    list-style: none;
    margin-bottom: var(--space-xl);
}

.mobile-nav-link {
    display: block;
    padding: var(--space-md) 0;
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: var(--fw-semibold);
    color: var(--color-primary);
    transition: color var(--transition-fast);
}

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

.mobile-nav-sub {
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: var(--fw-regular);
    padding: var(--space-sm) 0;
    color: var(--color-text-light);
}

.mobile-lang-switcher {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: var(--space-sm);
    margin-bottom: var(--space-xl);
}

.mobile-lang-btn {
    display: flex;
    align-items: center;
    gap: var(--space-xs);
    padding: var(--space-sm) var(--space-md);
    border: 1.5px solid var(--color-border);
    border-radius: var(--border-radius-full);
    font-size: 0.85rem;
    color: var(--color-text);
    transition: all var(--transition-fast);
}

.mobile-lang-btn:hover,
.mobile-lang-btn.current {
    border-color: var(--color-accent);
    color: var(--color-accent-dark);
    background: var(--color-cream);
}

.mobile-cta {
    width: 100%;
    max-width: 300px;
}

/* ============================================================
   HERO SECTION
   ============================================================ */
.hero {
    position: relative;
    min-height: 60vh;
    min-height: 60dvh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: calc(var(--header-height) + var(--space-2xl)) var(--space-lg) var(--space-2xl);
    background: var(--color-primary);
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0.4;
}

.hero-video-container {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    opacity: 0.4;
}

.hero-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg,
            rgba(10, 10, 10, 0.3) 0%,
            rgba(26, 58, 58, 0.7) 50%,
            rgba(26, 58, 58, 0.9) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 700px;
}

.hero-label {
    display: inline-block;
    padding: var(--space-sm) var(--space-lg);
    background: var(--color-glass);
    border: 1px solid var(--color-glass-border);
    border-radius: var(--border-radius-full);
    color: var(--color-accent-light);
    font-size: 0.85rem;
    font-weight: var(--fw-semibold);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: var(--space-xl);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.hero h1 {
    color: var(--color-white);
    font-size: clamp(2.5rem, 7vw, 4.5rem);
    line-height: 1.1;
    margin-bottom: var(--space-lg);
}

.hero-subtitle {
    color: var(--color-accent-light);
    font-family: var(--font-body);
    font-size: clamp(1rem, 2.5vw, 1.3rem);
    font-weight: var(--fw-light);
    margin-bottom: var(--space-2xl);
    letter-spacing: 0.15em;
}

.hero-actions {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: var(--space-md);
}

.hero-scroll {
    position: absolute;
    bottom: var(--space-md);
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    color: var(--color-accent-light);
    opacity: 0.6;
    animation: scrollBounce 2s ease-in-out infinite;
}

@keyframes scrollBounce {

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

    50% {
        transform: translateX(-50%) translateY(10px);
    }
}

/* Inner page hero (smaller) */
.hero-inner {
    min-height: auto;
    padding: calc(var(--header-height) + var(--space-3xl)) var(--space-lg) var(--space-3xl);
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-light) 100%);
}

.hero-inner h1 {
    font-size: clamp(2rem, 5vw, 3rem);
    margin-bottom: var(--space-md);
}

.hero-inner .hero-subtitle {
    margin-bottom: 0;
    letter-spacing: 0.05em;
}

/* ============================================================
   SECTIONS
   ============================================================ */
.section {
    padding: var(--space-3xl) 0;
}

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

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

.section-dark h2,
.section-dark h3 {
    color: var(--color-white);
}

.section-dark .section-title::after {
    background: linear-gradient(90deg, var(--color-accent), transparent);
}

/* ============================================================
   BREADCRUMBS
   ============================================================ */
.breadcrumbs {
    padding: var(--space-md) 0;
    background: var(--color-cream);
}

.breadcrumb-list {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-sm);
    list-style: none;
    font-size: 0.85rem;
    color: var(--color-text-muted);
}

.breadcrumb-list a {
    color: var(--color-text-light);
}

.breadcrumb-list a:hover {
    color: var(--color-accent);
}

.breadcrumb-sep {
    color: var(--color-text-muted);
}

/* ============================================================
   SERVICE CARDS
   ============================================================ */
.services-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-xl);
}

.service-card {
    background: var(--color-white);
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    border: 1px solid var(--color-border);
    transition: all var(--transition-base);
    position: relative;
}

.service-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-xl);
    border-color: var(--color-accent-light);
}

.service-card-image {
    height: 200px;
    background: linear-gradient(135deg, var(--color-primary-light), var(--color-primary));
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

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

.service-card-icon {
    font-size: 3rem;
    color: var(--color-accent-light);
    opacity: 0.8;
}

.service-card-body {
    padding: var(--space-xl);
}

.service-card-title {
    font-size: 1.25rem;
    margin-bottom: var(--space-sm);
    color: var(--color-primary);
}

.service-card-desc {
    color: var(--color-text-light);
    font-size: 0.92rem;
    line-height: 1.7;
    margin-bottom: var(--space-lg);
}

.service-card-link {
    display: inline-flex;
    align-items: center;
    gap: var(--space-xs);
    color: var(--color-accent-dark);
    font-weight: var(--fw-semibold);
    font-size: 0.9rem;
    transition: gap var(--transition-fast);
}

.service-card-link::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 1;
}

.service-card:hover .service-card-link {
    gap: var(--space-sm);
    color: var(--color-accent);
}

/* ============================================================
   HOW IT WORKS
   ============================================================ */
.steps-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-2xl);
    counter-reset: step;
}

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

.step-number {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, var(--color-accent), var(--color-accent-dark));
    color: var(--color-white);
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: var(--fw-bold);
    border-radius: 50%;
    margin: 0 auto var(--space-lg);
    box-shadow: var(--shadow-gold);
}

.step-title {
    font-size: 1.3rem;
    margin-bottom: var(--space-sm);
}

.step-text {
    color: var(--color-text-light);
    font-size: 0.95rem;
    max-width: 320px;
    margin: 0 auto;
}

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonials-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-xl);
    max-width: var(--container-max);
    margin: 0 auto;
}

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

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

.testimonial-card {
    text-align: center;
    padding: var(--space-2xl) var(--space-lg);
    background: var(--color-white);
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-lg);
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 250px;
}

.testimonial-quote {
    font-size: 4rem;
    line-height: 1;
    color: var(--color-accent);
    opacity: 0.3;
    font-family: var(--font-heading);
    position: absolute;
    top: var(--space-lg);
    left: var(--space-xl);
}

.testimonial-text {
    font-family: var(--font-heading);
    font-size: clamp(1.1rem, 2.5vw, 1.4rem);
    font-style: italic;
    color: var(--color-primary);
    line-height: 1.6;
    margin-bottom: var(--space-xl);
}

.testimonial-author {
    font-weight: var(--fw-semibold);
    color: var(--color-primary);
}

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

.testimonial-stars {
    color: var(--color-accent);
    font-size: 1.2rem;
    letter-spacing: 4px;
    margin-bottom: var(--space-md);
}

/* ============================================================
   ABOUT SECTION
   ============================================================ */
.about-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-2xl);
    align-items: center;
}

.about-image {
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    aspect-ratio: 4/5;
    background: linear-gradient(135deg, var(--color-primary-light), var(--color-primary));
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.about-image-placeholder {
    color: var(--color-accent-light);
    opacity: 0.5;
    font-size: 4rem;
}

.about-text p {
    margin-bottom: var(--space-md);
    color: var(--color-text-light);
    font-size: 0.95rem;
    line-height: 1.8;
}

.about-text p:first-of-type {
    font-size: 1.05rem;
    color: var(--color-text);
}

/* ============================================================
   AREAS
   ============================================================ */
.areas-tags {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-sm);
    justify-content: center;
    margin-top: var(--space-xl);
}

.area-tag {
    padding: var(--space-sm) var(--space-lg);
    background: var(--color-glass);
    border: 1px solid var(--color-glass-border);
    border-radius: var(--border-radius-full);
    color: var(--color-white);
    font-size: 0.88rem;
    font-weight: var(--fw-medium);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

/* ============================================================
   FAQ ACCORDION
   ============================================================ */
.faq-list {
    max-width: var(--container-narrow);
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid var(--color-border);
}

.faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: var(--space-lg) 0;
    background: none;
    border: none;
    cursor: pointer;
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: var(--fw-semibold);
    color: var(--color-primary);
    text-align: left;
    gap: var(--space-md);
    transition: color var(--transition-fast);
}

.faq-question:hover {
    color: var(--color-accent-dark);
}

.faq-icon {
    flex-shrink: 0;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: var(--color-cream);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    color: var(--color-accent);
    transition: all var(--transition-base);
}

.faq-item.open .faq-icon {
    transform: rotate(45deg);
    background: var(--color-accent);
    color: var(--color-white);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--transition-slow), padding var(--transition-slow);
}

.faq-answer-inner {
    padding-bottom: var(--space-lg);
    color: var(--color-text-light);
    font-size: 0.95rem;
    line-height: 1.8;
}

.faq-item.open .faq-answer {
    max-height: 500px;
}

/* ============================================================
   GALLERY
   ============================================================ */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-md);
    grid-auto-flow: dense;
}

.gallery-item {
    border-radius: var(--border-radius);
    overflow: hidden;
    aspect-ratio: 1;
    background: linear-gradient(135deg, var(--color-primary-light), var(--color-primary));
    cursor: pointer;
    position: relative;
    transition: transform var(--transition-base);
}

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

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

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

.gallery-item.wide {
    grid-column: span 2;
    aspect-ratio: 2/1;
}

.gallery-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-accent-light);
    opacity: 0.4;
    font-size: 2.5rem;
}

/* ============================================================
   CONTACT PAGE
   ============================================================ */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-2xl);
}

.contact-card {
    background: var(--color-white);
    border-radius: var(--border-radius-lg);
    padding: var(--space-2xl);
    text-align: center;
    border: 1px solid var(--color-border);
    transition: all var(--transition-base);
    position: relative;
}

.contact-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: var(--color-accent-light);
}

.contact-card-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--color-accent), var(--color-accent-dark));
    color: var(--color-white);
    border-radius: 50%;
    margin: 0 auto var(--space-lg);
    font-size: 1.5rem;
}

.contact-card h3 {
    font-size: 1.1rem;
    margin-bottom: var(--space-sm);
}

.contact-card p,
.contact-card a {
    color: var(--color-text-light);
    font-size: 0.95rem;
}

.contact-card a::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 1;
}

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

/* ============================================================
   MASSAGE DETAIL PAGE
   ============================================================ */
.massage-detail {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-2xl);
}

.massage-main {
    order: 1;
}

.massage-sidebar {
    order: 2;
}

.massage-long-desc {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--color-text);
    margin-bottom: var(--space-2xl);
}

.benefits-list {
    list-style: none;
    margin-bottom: var(--space-2xl);
}

.benefits-list li {
    display: flex;
    align-items: flex-start;
    gap: var(--space-md);
    padding: var(--space-md) 0;
    border-bottom: 1px solid var(--color-border);
    font-size: 0.95rem;
    color: var(--color-text);
}

.benefits-list li::before {
    content: '✓';
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    background: var(--color-accent);
    color: var(--color-white);
    border-radius: 50%;
    font-size: 0.75rem;
    font-weight: var(--fw-bold);
    flex-shrink: 0;
    margin-top: 2px;
}

.detail-block {
    margin-bottom: var(--space-2xl);
}

.detail-block h2 {
    font-size: 1.5rem;
    margin-bottom: var(--space-lg);
}

.detail-block p {
    color: var(--color-text-light);
    line-height: 1.8;
}

.info-badges {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-md);
    margin-bottom: var(--space-2xl);
}

.info-badge {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    padding: var(--space-md) var(--space-lg);
    background: var(--color-cream);
    border-radius: var(--border-radius);
    font-size: 0.9rem;
}

.info-badge-label {
    font-weight: var(--fw-semibold);
    color: var(--color-primary);
}

.info-badge-value {
    color: var(--color-text-light);
}

/* Sidebar */
.sidebar-card {
    background: var(--color-cream);
    border-radius: var(--border-radius-lg);
    padding: var(--space-xl);
    margin-bottom: var(--space-xl);
}

.sidebar-card h3 {
    font-size: 1.2rem;
    margin-bottom: var(--space-lg);
}

.sidebar-service-list {
    list-style: none;
}

.sidebar-service-list li {
    border-bottom: 1px solid var(--color-border);
}

.sidebar-service-list a {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    padding: var(--space-md) 0;
    color: var(--color-text);
    font-size: 0.92rem;
    transition: all var(--transition-fast);
}

.sidebar-service-list a:hover {
    color: var(--color-accent-dark);
    padding-left: var(--space-sm);
}

.sidebar-service-list .active a {
    color: var(--color-accent-dark);
    font-weight: var(--fw-semibold);
}

/* ============================================================
   CTA SECTION
   ============================================================ */
.cta-section {
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
    padding: var(--space-4xl) 0;
    text-align: center;
}

.cta-section h2 {
    color: var(--color-white);
    margin-bottom: var(--space-lg);
}

.cta-section p {
    color: var(--color-accent-light);
    max-width: 600px;
    margin: 0 auto var(--space-xl);
    font-size: 1.05rem;
}

/* ============================================================
   WHATSAPP FLOAT
   ============================================================ */
.whatsapp-float {
    position: fixed;
    bottom: var(--space-xl);
    right: var(--space-xl);
    z-index: 900;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    background: var(--color-whatsapp);
    color: var(--color-white);
    border-radius: 50%;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    transition: all var(--transition-base);
    animation: whatsappPulse 3s ease-in-out infinite;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 30px rgba(37, 211, 102, 0.6);
    color: var(--color-white);
}

@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);
    }
}

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
    background: var(--color-primary-dark);
    color: rgba(255, 255, 255, 0.7);
    padding: var(--space-4xl) 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-2xl);
    padding-bottom: var(--space-3xl);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-logo {
    margin-bottom: var(--space-md);
}

.footer-logo .logo-text {
    color: var(--color-white);
}

.footer-tagline {
    color: var(--color-accent-light);
    font-size: 0.9rem;
    margin-bottom: var(--space-sm);
}

.footer-description {
    font-size: 0.88rem;
    line-height: 1.7;
    opacity: 0.7;
}

.footer-heading {
    color: var(--color-white);
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: var(--fw-semibold);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: var(--space-lg);
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: var(--space-sm);
}

.footer-links a {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
    transition: all var(--transition-fast);
}

.footer-links a:hover {
    color: var(--color-accent-light);
    padding-left: var(--space-xs);
}

.footer-contact {
    list-style: none;
}

.footer-contact li {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    margin-bottom: var(--space-md);
    font-size: 0.9rem;
}

.footer-contact .material-icons-outlined {
    font-size: 1.1rem;
    color: var(--color-accent);
}

.footer-contact a {
    color: rgba(255, 255, 255, 0.6);
}

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

.footer-bottom {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-md);
    padding: var(--space-xl) 0;
    text-align: center;
}

.footer-copyright {
    font-size: 0.85rem;
    opacity: 0.5;
}

.footer-bottom-links {
    display: flex;
    align-items: center;
    gap: var(--space-lg);
    font-size: 0.85rem;
}

.footer-location {
    display: flex;
    align-items: center;
    gap: var(--space-xs);
    opacity: 0.5;
}

.footer-location .material-icons-outlined {
    font-size: 1rem;
}

/* ============================================================
   SCROLL ANIMATIONS
   ============================================================ */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1), transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.reveal-delay-1 {
    transition-delay: 0.1s;
}

.reveal-delay-2 {
    transition-delay: 0.2s;
}

.reveal-delay-3 {
    transition-delay: 0.3s;
}

.reveal-delay-4 {
    transition-delay: 0.4s;
}

/* ============================================================
   404 PAGE
   ============================================================ */
.error-page {
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: var(--space-3xl) var(--space-lg);
}

.error-code {
    font-size: 8rem;
    font-family: var(--font-heading);
    color: var(--color-accent);
    opacity: 0.2;
    line-height: 1;
}

/* ============================================================
   RESPONSIVE BREAKPOINTS
   ============================================================ */

/* Small tablets (480px+) */
@media (min-width: 480px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

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

    .hero-actions {
        flex-direction: row;
    }
}

/* Tablets (768px+) */
@media (min-width: 768px) {
    .hero {
        min-height: 30vh;
        min-height: 30dvh;
    }

    .home.hero {
        min-height: 70vh;
        min-height: 70dvh;
    }

    .hero-scroll {
        bottom: var(--space-xl);
    }

    .section {
        padding: var(--space-5xl) 0;
    }

    .about-grid {
        grid-template-columns: 1fr 1.2fr;
    }

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

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

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

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

    .footer-bottom {
        flex-direction: row;
        justify-content: space-between;
    }

    .massage-detail {
        grid-template-columns: 1fr 320px;
    }

    .massage-main {
        order: 1;
    }

    .massage-sidebar {
        order: 2;
    }
}

/* Desktop (1024px+) */
@media (min-width: 1024px) {
    .main-nav {
        display: block;
    }

    .mobile-toggle {
        display: none;
    }

    .header-cta {
        display: inline-flex;
    }

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

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

    .gallery-grid {
        grid-template-columns: repeat(4, 1fr);
    }

    .contact-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* Large Desktop (1280px+) */
@media (min-width: 1280px) {
    .container {
        padding: 0 var(--space-xl);
    }

    .services-grid {
        gap: var(--space-2xl);
    }
}

/* ============================================================
   PRINT STYLES
   ============================================================ */
@media print {

    .site-header,
    .mobile-nav-overlay,
    .whatsapp-float,
    .header-actions,
    .hero-scroll {
        display: none !important;
    }

    .hero {
        min-height: auto;
        padding: var(--space-xl);
    }

    body {
        color: #000;
        background: #fff;
    }
}