/* ===================================================
   THE PJ'S WELLNESS - SPA & WELLNESS WEBSITE STYLES
   Color Palette: Calming sage greens, warm cream, soft gold
   =================================================== */

:root {
    --primary: #7c9a82;
    --primary-dark: #5e7d64;
    --primary-light: #a8c5ae;
    --primary-pale: #e8f0ea;
    --accent: #d4a017;
    --accent-light: #f0c640;
    --accent-dark: #b8860b;
    --cream: #faf7f2;
    --cream-dark: #f0ebe3;
    --text: #3a3a3a;
    --text-light: #6b6b6b;
    --text-lighter: #999;
    --white: #ffffff;
    --dark: #2c2c2c;
    --shadow: 0 4px 30px rgba(0,0,0,0.08);
    --shadow-lg: 0 20px 60px rgba(0,0,0,0.12);
    --shadow-hover: 0 12px 40px rgba(0,0,0,0.15);
    --radius: 12px;
    --radius-lg: 20px;
    --radius-xl: 30px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --font-heading: 'Playfair Display', Georgia, serif;
    --font-body: 'Lato', -apple-system, sans-serif;
    --font-accent: 'Cormorant Garamond', Georgia, serif;
}

/* Reset & Base */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 120px; }
body {
    font-family: var(--font-body);
    color: var(--text);
    background: var(--cream);
    line-height: 1.7;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; transition: var(--transition); }
ul { list-style: none; }

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Section */
.section {
    padding: 100px 0;
    position: relative;
}

/* Typography */
.section-tag {
    display: inline-block;
    font-family: var(--font-accent);
    font-size: 1.15rem;
    color: var(--accent-dark);
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 12px;
    font-weight: 600;
}
.section-title {
    font-family: var(--font-heading);
    font-size: clamp(2.2rem, 5vw, 3.2rem);
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 16px;
    line-height: 1.2;
}
.text-accent { color: var(--accent-dark); }
.section-subtitle {
    font-size: 1.1rem;
    color: var(--text);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.8;
}
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 32px;
    border-radius: 50px;
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    cursor: pointer;
    border: 2px solid transparent;
    transition: var(--transition);
    white-space: nowrap;
}
.btn-primary {
    background: var(--primary);
    color: var(--white);
    border-color: var(--primary);
}
.btn-primary:hover {
    background: var(--primary-dark);
    border-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(124,154,130,0.4);
}
.btn-outline {
    background: transparent;
    color: var(--white);
    border-color: rgba(255,255,255,0.5);
}
.btn-outline:hover {
    background: var(--white);
    color: var(--primary-dark);
    border-color: var(--white);
    transform: translateY(-2px);
}
.btn-sm { padding: 10px 24px; font-size: 0.85rem; }
.btn-lg { padding: 16px 40px; font-size: 1rem; }
.btn-block { width: 100%; justify-content: center; }

/* =================== PRELOADER =================== */
#preloader {
    position: fixed;
    inset: 0;
    background: var(--cream);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    transition: opacity 0.6s, visibility 0.6s;
}
#preloader.loaded { opacity: 0; visibility: hidden; pointer-events: none; }
.loader { text-align: center; }
.loader-logo {
    width: 120px;
    margin-bottom: 24px;
    animation: pulse 1.5s ease-in-out infinite;
}
.loader-bar {
    width: 200px;
    height: 3px;
    background: var(--cream-dark);
    border-radius: 4px;
    overflow: hidden;
}
.loader-fill {
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    border-radius: 4px;
    animation: loadFill 1.5s ease forwards;
}
@keyframes loadFill { to { width: 100%; } }
@keyframes pulse { 0%,100% { opacity: 1; } 50% { opacity: 0.6; } }

/* =================== TOPBAR =================== */
.topbar {
    background: var(--dark);
    color: rgba(255,255,255,0.85);
    padding: 10px 0;
    font-size: 0.82rem;
    position: relative;
    z-index: 1001;
}
.topbar-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.topbar-left {
    display: flex;
    align-items: center;
    gap: 6px;
    flex-wrap: wrap;
}
.topbar-item {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: rgba(255,255,255,0.85);
    transition: var(--transition);
}
a.topbar-item:hover { color: var(--accent-light); }
.topbar-item svg { color: var(--accent-light); flex-shrink: 0; }
.topbar-divider {
    color: rgba(255,255,255,0.2);
    margin: 0 8px;
}
.topbar-right {
    display: flex;
    align-items: center;
    gap: 12px;
}
.topbar-label {
    font-size: 0.82rem;
    color: rgba(255,255,255,0.6);
}
.topbar-socials {
    display: flex;
    align-items: center;
    gap: 10px;
}
.topbar-socials a {
    color: rgba(255,255,255,0.7);
    transition: var(--transition);
    display: flex;
    align-items: center;
}
.topbar-socials a:hover { color: var(--accent-light); }
.topbar-socials svg { width: 16px; height: 16px; }

/* =================== NAVBAR =================== */
.navbar {
    position: fixed;
    top: 42px;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 12px 0;
    transition: var(--transition);
    background: rgba(250,247,242,0.6);
    backdrop-filter: blur(10px);
}
.navbar.scrolled {
    top: 0;
    background: rgba(250,247,242,0.97);
    backdrop-filter: blur(20px);
    box-shadow: 0 2px 20px rgba(0,0,0,0.08);
    padding: 6px 0;
}
.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.nav-logo img {
    height: 65px;
    transition: var(--transition);
}
.navbar.scrolled .nav-logo img { height: 50px; }
.nav-menu {
    display: flex;
    align-items: center;
    gap: 8px;
}
.nav-link {
    padding: 8px 16px;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--dark);
    border-radius: 8px;
    transition: var(--transition);
    position: relative;
}
.nav-link:hover, .nav-link.active {
    color: var(--primary-dark);
    background: var(--primary-pale);
}
.navbar.scrolled .nav-link { color: var(--dark); }
.navbar.scrolled .nav-link:hover,
.navbar.scrolled .nav-link.active {
    color: var(--primary-dark);
    background: var(--primary-pale);
}
.nav-cta-desktop { }
.nav-cta-mobile { display: none; }
.hamburger {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
    z-index: 1001;
}
.hamburger span {
    width: 28px;
    height: 2px;
    background: var(--dark);
    border-radius: 2px;
    transition: var(--transition);
}
.navbar.scrolled .hamburger span { background: var(--dark); }
.hamburger.active span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* =================== HERO =================== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background:
        linear-gradient(135deg, rgba(44,44,44,0.7) 0%, rgba(94,125,100,0.6) 100%),
        url('../images/facial-treatment.jpeg') center/cover no-repeat;
    overflow: hidden;
}
.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0,0,0,0.3) 0%, rgba(0,0,0,0.1) 50%, rgba(0,0,0,0.4) 100%);
}
.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 120px 24px 80px;
    max-width: 800px;
}
.hero-badge {
    display: inline-block;
    padding: 8px 24px;
    background: rgba(255,255,255,0.15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.25);
    border-radius: 50px;
    color: var(--accent-light);
    font-family: var(--font-accent);
    font-size: 0.95rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 28px;
    animation: fadeInDown 1s ease;
}
.hero-title {
    font-family: var(--font-heading);
    color: var(--white);
    margin-bottom: 24px;
    animation: fadeInUp 1s ease 0.2s both;
}
.title-line {
    display: block;
    font-size: clamp(2.2rem, 6vw, 4rem);
    font-weight: 400;
    line-height: 1.15;
}
.title-accent {
    font-size: clamp(3rem, 8vw, 5.5rem);
    font-weight: 700;
    color: var(--accent-light);
    font-style: italic;
}
.hero-subtitle {
    font-size: clamp(1rem, 2vw, 1.2rem);
    color: rgba(255,255,255,0.85);
    max-width: 550px;
    margin: 0 auto 36px;
    line-height: 1.8;
    animation: fadeInUp 1s ease 0.4s both;
}
.hero-cta {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 1s ease 0.6s both;
}
.hero-stats {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 32px;
    margin-top: 60px;
    animation: fadeInUp 1s ease 0.8s both;
}
.stat { text-align: center; color: var(--white); }
.stat-number {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-light);
}
.stat-plus {
    font-family: var(--font-heading);
    font-size: 2rem;
    color: var(--accent-light);
}
.stat-label {
    display: block;
    font-size: 0.85rem;
    color: rgba(255,255,255,0.7);
    margin-top: 4px;
    letter-spacing: 1px;
    text-transform: uppercase;
}
.stat-divider {
    width: 1px;
    height: 40px;
    background: rgba(255,255,255,0.2);
}
.hero-scroll {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
}
.hero-scroll a {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: rgba(255,255,255,0.6);
    font-size: 0.75rem;
    letter-spacing: 2px;
    text-transform: uppercase;
}
.scroll-indicator {
    width: 24px;
    height: 40px;
    border: 2px solid rgba(255,255,255,0.3);
    border-radius: 12px;
    position: relative;
}
.scroll-indicator::before {
    content: '';
    position: absolute;
    top: 6px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 8px;
    background: var(--accent-light);
    border-radius: 4px;
    animation: scrollBounce 1.5s ease-in-out infinite;
}
@keyframes scrollBounce {
    0%,100% { top: 6px; opacity: 1; }
    50% { top: 18px; opacity: 0.3; }
}

/* =================== ABOUT =================== */
.about { background: var(--white); }
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}
.about-image { position: relative; }
.about-img-wrapper {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}
.about-img-wrapper img {
    width: 100%;
    height: 500px;
    object-fit: cover;
}
.about-img-accent {
    position: absolute;
    top: -15px;
    left: -15px;
    width: 100%;
    height: 100%;
    border: 2px solid var(--accent);
    border-radius: var(--radius-lg);
    z-index: -1;
}
.experience-badge {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: var(--primary);
    color: var(--white);
    padding: 24px;
    border-radius: var(--radius);
    text-align: center;
    box-shadow: var(--shadow);
}
.exp-number {
    display: block;
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1;
}
.exp-text {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.9;
}
.about-lead {
    font-family: var(--font-accent);
    font-size: 1.25rem;
    color: var(--text);
    line-height: 1.8;
    margin-bottom: 16px;
}
.about-content p { color: var(--text); margin-bottom: 32px; }
.about-features { display: flex; flex-direction: column; gap: 24px; }
.about-feature {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}
.feature-icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    background: var(--primary-pale);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
}
.feature-icon svg { width: 24px; height: 24px; }
.about-feature h4 {
    font-family: var(--font-heading);
    font-size: 1.05rem;
    margin-bottom: 4px;
    color: var(--dark);
}
.about-feature p {
    font-size: 0.9rem;
    color: var(--text-light);
    margin-bottom: 0;
}

/* =================== SERVICES =================== */
.services { background: var(--cream); }
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}
.service-card {
    display: block;
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    text-decoration: none;
    color: inherit;
}
.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
}
.service-img {
    position: relative;
    height: 220px;
    overflow: hidden;
}
.service-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}
.service-card:hover .service-img img { transform: scale(1.1); }
.service-img-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.4) 0%, transparent 60%);
}
.service-price-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    background: var(--accent);
    color: var(--white);
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 700;
    padding: 5px 14px;
    border-radius: 20px;
    z-index: 2;
    box-shadow: 0 2px 8px rgba(0,0,0,0.2);
}
.service-body {
    padding: 28px;
}
.service-body h3 {
    font-family: var(--font-heading);
    font-size: 1.35rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--dark);
}
.service-body p {
    font-size: 0.92rem;
    color: var(--text);
    margin-bottom: 16px;
    line-height: 1.7;
}
.service-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--primary);
    font-weight: 600;
    font-size: 0.9rem;
    transition: var(--transition);
}
.service-card:hover .service-link { color: var(--accent-dark); gap: 10px; }

/* =================== MASSAGES =================== */
.massages {
    background: var(--white);
    position: relative;
    overflow: hidden;
}
.massages::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, var(--primary-pale) 0%, transparent 70%);
    border-radius: 50%;
    transform: translate(50%, -50%);
}
.massage-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    position: relative;
}
.massage-card {
    background: var(--cream);
    border-radius: var(--radius-lg);
    padding: 36px 28px;
    position: relative;
    overflow: hidden;
    transition: var(--transition);
    border: 1px solid transparent;
}
.massage-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-hover);
    border-color: var(--primary-light);
    background: var(--white);
}
.massage-number {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-pale);
    position: absolute;
    top: 12px;
    right: 20px;
    line-height: 1;
    transition: var(--transition);
}
.massage-card:hover .massage-number { color: var(--primary-light); }
.massage-card h3 {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 12px;
    position: relative;
}
.massage-card h3::after {
    content: '';
    display: block;
    width: 40px;
    height: 2px;
    background: var(--accent);
    margin-top: 10px;
    transition: width 0.3s ease;
}
.massage-card:hover h3::after { width: 60px; }
.massage-card p {
    font-size: 0.92rem;
    color: var(--text);
    line-height: 1.7;
    margin-bottom: 20px;
}
.massage-book {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--primary);
    font-weight: 600;
    font-size: 0.9rem;
    transition: var(--transition);
}
.massage-book:hover { color: var(--accent-dark); gap: 10px; }
.massage-meta {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}
.massage-price {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--accent-dark);
}
.massage-duration {
    font-size: 0.82rem;
    color: var(--text-light);
    background: var(--primary-pale);
    padding: 2px 10px;
    border-radius: 20px;
    font-weight: 500;
}

/* =================== FACIALS =================== */
.facials { background: var(--cream); }
.facial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 30px;
}
.facial-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}
.facial-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-hover);
}
.facial-img {
    position: relative;
    height: 240px;
    overflow: hidden;
}
.facial-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}
.facial-card:hover .facial-img img { transform: scale(1.08); }
.facial-badge {
    position: absolute;
    top: 16px;
    left: 16px;
    background: var(--primary);
    color: var(--white);
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.5px;
}
.facial-body {
    padding: 28px;
    flex: 1;
    display: flex;
    flex-direction: column;
}
.facial-body h3 {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 12px;
}
.facial-body p {
    font-size: 0.92rem;
    color: var(--text);
    line-height: 1.7;
    margin-bottom: 20px;
    flex: 1;
}
.facial-body .btn-outline {
    color: var(--primary);
    border-color: var(--primary);
    align-self: flex-start;
}
.facial-body .btn-outline:hover {
    background: var(--primary);
    color: var(--white);
}

/* =================== SKIN TAG =================== */
.skin-tag { background: var(--white); }
.skin-tag-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}
.skin-tag-lead {
    font-family: var(--font-accent);
    font-size: 1.2rem;
    color: var(--text);
    margin-bottom: 16px;
    line-height: 1.8;
}
.skin-tag-text p {
    color: var(--text-light);
    margin-bottom: 24px;
}
.skin-tag-benefits {
    margin-bottom: 32px;
    display: flex;
    flex-direction: column;
    gap: 14px;
}
.skin-tag-benefits li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.95rem;
    color: var(--text);
}
.skin-tag-benefits svg { color: var(--primary); flex-shrink: 0; }
.skin-tag-image {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}
.skin-tag-image img {
    width: 100%;
    height: 450px;
    object-fit: cover;
}

/* =================== WHY CHOOSE US =================== */
.gallery { background: var(--cream); }
.why-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}
.why-card {
    text-align: center;
    padding: 40px 24px;
    background: var(--white);
    border-radius: var(--radius-lg);
    transition: var(--transition);
    box-shadow: var(--shadow);
}
.why-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-hover);
}
.why-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 20px;
    background: var(--primary-pale);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    transition: var(--transition);
}
.why-card:hover .why-icon {
    background: var(--primary);
    color: var(--white);
}
.why-icon svg { width: 32px; height: 32px; }
.why-card h3 {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--dark);
}
.why-card p {
    font-size: 0.92rem;
    color: var(--text);
    line-height: 1.7;
}

/* =================== SERVICE AREAS =================== */
.areas { background: var(--white); }
.areas-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    justify-content: center;
    max-width: 800px;
    margin: 0 auto;
}
.area-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background: var(--primary-pale);
    border-radius: 50px;
    font-size: 0.95rem;
    color: var(--primary-dark);
    font-weight: 500;
    transition: var(--transition);
    cursor: default;
}
.area-tag:hover {
    background: var(--primary);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(124,154,130,0.3);
}
.area-tag svg { width: 16px; height: 16px; }
.areas-note {
    text-align: center;
    margin-top: 32px;
    color: var(--text-light);
    font-size: 0.95rem;
    font-style: italic;
}

/* =================== TESTIMONIALS =================== */
.testimonials {
    background: var(--primary);
    color: var(--white);
    overflow: hidden;
}
.testimonials .section-tag { color: var(--accent-light); }
.testimonials .section-title { color: var(--white); }
.testimonial-slider { position: relative; max-width: 900px; margin: 0 auto; }
.testimonial-track {
    display: flex;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}
.testimonial-card {
    min-width: 100%;
    padding: 40px;
    text-align: center;
}
.testimonial-stars {
    display: flex;
    justify-content: center;
    gap: 4px;
    margin-bottom: 24px;
    color: var(--accent-light);
}
.testimonial-card > p {
    font-family: var(--font-accent);
    font-size: 1.3rem;
    font-style: italic;
    line-height: 1.8;
    margin-bottom: 28px;
    color: rgba(255,255,255,0.95);
}
.testimonial-author {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
}
.author-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--accent);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--white);
}
.testimonial-author strong {
    display: block;
    font-size: 1rem;
}
.testimonial-author span {
    display: block;
    font-size: 0.85rem;
    opacity: 0.7;
}
.testimonial-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-top: 20px;
}
.testimonial-btn {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(255,255,255,0.15);
    border: none;
    color: var(--white);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}
.testimonial-btn:hover { background: rgba(255,255,255,0.3); }
.testimonial-dots { display: flex; gap: 8px; }
.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: none;
    background: rgba(255,255,255,0.3);
    cursor: pointer;
    transition: var(--transition);
}
.dot.active {
    background: var(--accent-light);
    width: 28px;
    border-radius: 5px;
}

/* =================== CTA SECTION =================== */
.cta-section {
    position: relative;
    padding: 100px 0;
    background:
        linear-gradient(135deg, rgba(44,44,44,0.8), rgba(94,125,100,0.7)),
        url('https://images.pexels.com/photos/3738348/pexels-photo-3738348.jpeg?auto=compress&cs=tinysrgb&w=1200') center/cover no-repeat;
}
.cta-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: var(--white);
}
.cta-content h2 {
    font-family: var(--font-heading);
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    margin-bottom: 16px;
}
.cta-content p {
    font-size: 1.1rem;
    opacity: 0.9;
    margin-bottom: 36px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}
.cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

/* =================== CONTACT =================== */
.contact { background: var(--cream); }
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}
.contact-item {
    display: flex;
    gap: 16px;
    margin-bottom: 28px;
}
.contact-icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    background: var(--primary-pale);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
}
.contact-icon svg { width: 22px; height: 22px; }
.contact-item h4 {
    font-family: var(--font-heading);
    font-size: 1rem;
    margin-bottom: 4px;
    color: var(--dark);
}
.contact-item p {
    font-size: 0.9rem;
    color: var(--text-light);
    line-height: 1.6;
}
.contact-item a { color: var(--primary); }
.contact-item a:hover { color: var(--accent-dark); }
.contact-socials { margin-top: 16px; }
.contact-socials h4 {
    font-family: var(--font-heading);
    font-size: 1rem;
    margin-bottom: 12px;
    color: var(--dark);
}
.social-links { display: flex; gap: 12px; }
.social-link {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--primary-pale);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    transition: var(--transition);
}
.social-link:hover {
    background: var(--primary);
    color: var(--white);
    transform: translateY(-3px);
}
.social-link svg { width: 20px; height: 20px; }

/* Contact Form */
.contact-form {
    background: var(--white);
    padding: 40px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
}
.form-group { margin-bottom: 20px; }
.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 20px;
    border: 1px solid var(--cream-dark);
    border-radius: var(--radius);
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: var(--text);
    background: var(--cream);
    transition: var(--transition);
    outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px var(--primary-pale);
    background: var(--white);
}
.form-group textarea { resize: vertical; min-height: 100px; }
.form-group select { cursor: pointer; }

/* =================== FOOTER =================== */
.footer {
    background: var(--dark);
    color: rgba(255,255,255,0.7);
    padding: 60px 0 0;
}
.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.2fr;
    gap: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer-logo {
    height: 60px;
    margin-bottom: 16px;
}
.footer-brand p {
    font-size: 0.9rem;
    line-height: 1.7;
    margin-bottom: 20px;
}
.footer-brand .social-link {
    background: rgba(255,255,255,0.1);
    color: rgba(255,255,255,0.7);
}
.footer-brand .social-link:hover {
    background: var(--primary);
    color: var(--white);
}
.footer-links h4,
.footer-contact h4 {
    font-family: var(--font-heading);
    color: var(--white);
    font-size: 1.1rem;
    margin-bottom: 20px;
}
.footer-links ul { display: flex; flex-direction: column; gap: 10px; }
.footer-links a {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.6);
    transition: var(--transition);
}
.footer-links a:hover {
    color: var(--accent-light);
    padding-left: 6px;
}
.footer-contact p {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
    margin-bottom: 12px;
}
.footer-contact svg { flex-shrink: 0; color: var(--primary-light); }
.footer-contact a { color: rgba(255,255,255,0.7); }
.footer-contact a:hover { color: var(--accent-light); }
.footer-bottom {
    text-align: center;
    padding: 20px 0;
    font-size: 0.85rem;
    color: rgba(255,255,255,0.4);
}

/* =================== WHATSAPP FLOAT =================== */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: #25d366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    box-shadow: 0 6px 20px rgba(37,211,102,0.4);
    z-index: 999;
    transition: var(--transition);
    animation: whatsappPulse 2s ease-in-out infinite;
}
.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 30px rgba(37,211,102,0.5);
}
.whatsapp-float svg { width: 30px; height: 30px; }
.whatsapp-tooltip {
    position: absolute;
    right: 70px;
    background: var(--dark);
    color: var(--white);
    padding: 8px 16px;
    border-radius: 8px;
    font-size: 0.85rem;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}
.whatsapp-float:hover .whatsapp-tooltip { opacity: 1; visibility: visible; }
.whatsapp-tooltip::after {
    content: '';
    position: absolute;
    right: -6px;
    top: 50%;
    transform: translateY(-50%);
    border: 6px solid transparent;
    border-left-color: var(--dark);
}
@keyframes whatsappPulse {
    0%,100% { box-shadow: 0 6px 20px rgba(37,211,102,0.4); }
    50% { box-shadow: 0 6px 30px rgba(37,211,102,0.6), 0 0 0 12px rgba(37,211,102,0.1); }
}

/* =================== BACK TO TOP =================== */
.back-to-top {
    position: fixed;
    bottom: 100px;
    right: 34px;
    width: 44px;
    height: 44px;
    background: var(--primary);
    color: var(--white);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 998;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(124,154,130,0.3);
}
.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
.back-to-top:hover {
    background: var(--primary-dark);
    transform: translateY(-3px);
}

/* =================== ANIMATIONS =================== */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeInDown {
    from { opacity: 0; transform: translateY(-20px); }
    to { opacity: 1; transform: translateY(0); }
}
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}
.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* =================== RESPONSIVE =================== */
@media (max-width: 1024px) {
    .services-grid { grid-template-columns: repeat(2, 1fr); }
    .massage-grid { grid-template-columns: repeat(2, 1fr); }
    .why-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: repeat(2, 1fr); }
    .about-grid { gap: 40px; }
}

@media (max-width: 768px) {
    .section { padding: 70px 0; }

    /* Topbar mobile */
    .topbar { padding: 8px 0; }
    .topbar-content { flex-direction: column; gap: 6px; }
    .topbar-left { justify-content: center; font-size: 0.75rem; }
    .topbar-divider:last-of-type, .topbar-item:last-child { display: none; }
    .topbar-right { display: none; }
    .navbar { top: 34px; }
    .navbar.scrolled { top: 0; }

    /* Navbar mobile */
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 350px;
        height: 100vh;
        background: var(--white);
        flex-direction: column;
        padding: 100px 32px 32px;
        gap: 4px;
        transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        box-shadow: -10px 0 40px rgba(0,0,0,0.1);
        align-items: stretch;
        overflow-y: auto;
    }
    .nav-menu.open { right: 0; }
    .nav-link { color: var(--text) !important; padding: 14px 16px; border-radius: 10px; font-size: 1rem; }
    .nav-link:hover, .nav-link.active { background: var(--primary-pale); color: var(--primary) !important; }
    .nav-cta-mobile { display: block; margin-top: 16px; }
    .nav-cta-mobile .btn { width: 100%; justify-content: center; }
    .nav-cta-desktop { display: none; }
    .hamburger { display: flex; }

    /* Hero mobile */
    .hero { min-height: 100svh; }
    .hero-content { padding: 100px 20px 60px; }
    .hero-stats { gap: 20px; }
    .stat-number { font-size: 2rem; }

    /* About mobile */
    .about-grid { grid-template-columns: 1fr; gap: 40px; }
    .about-img-wrapper img { height: 350px; }
    .about-img-accent { display: none; }
    .experience-badge { right: 10px; bottom: -15px; padding: 18px; }

    /* Services mobile */
    .services-grid { grid-template-columns: 1fr; gap: 20px; }
    .service-img { height: 200px; }

    /* Massages mobile */
    .massage-grid { grid-template-columns: 1fr; gap: 20px; }

    /* Facials mobile */
    .facial-grid { grid-template-columns: 1fr; }

    /* Skin tag mobile */
    .skin-tag-content { grid-template-columns: 1fr; gap: 40px; }
    .skin-tag-image { order: -1; }
    .skin-tag-image img { height: 300px; }

    /* Why grid mobile */
    .why-grid { grid-template-columns: 1fr; }

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

    /* Footer mobile */
    .footer-grid { grid-template-columns: 1fr; gap: 32px; }

    /* WhatsApp float */
    .whatsapp-float { bottom: 20px; right: 20px; width: 54px; height: 54px; }
    .whatsapp-float svg { width: 26px; height: 26px; }
    .whatsapp-tooltip { display: none; }
    .back-to-top { bottom: 82px; right: 24px; }
}

@media (max-width: 480px) {
    .container { padding: 0 16px; }
    .section { padding: 50px 0; }
    .section-title { font-size: 1.8rem; }
    .hero-cta { flex-direction: column; align-items: center; }
    .hero-cta .btn { width: 100%; max-width: 300px; justify-content: center; }
    .hero-stats { flex-direction: column; gap: 16px; }
    .stat-divider { width: 40px; height: 1px; }
    .cta-buttons { flex-direction: column; align-items: center; }
    .cta-buttons .btn { width: 100%; max-width: 300px; justify-content: center; }
    .areas-grid { gap: 10px; }
    .area-tag { padding: 10px 18px; font-size: 0.85rem; }
}

/* Mobile nav overlay */
.nav-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.5);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}
.nav-overlay.open { opacity: 1; visibility: visible; }
