/* ============================================
   Beauty Legends Spa - Main Stylesheet
   Inspired by elegant spa aesthetics
   ============================================ */

/* --- CSS Variables --- */
:root {
  --mauve: #D59999;
  --mauve-light: #E8B4B4;
  --mauve-dark: #C47E7E;
  --mauve-pale: #FFF0F3;
  --burgundy: #5E0826;
  --burgundy-light: #7A1A3A;
  --text-body: #7A7A7A;
  --text-dark: #333333;
  --text-light: #999999;
  --bg: #FFFFFF;
  --bg-cream: #FFFAFA;
  --bg-rose: #FFF0F3;
  --border: #F0E0E0;
  --shadow: 0 4px 24px rgba(94, 8, 38, 0.08);
  --shadow-hover: 0 8px 32px rgba(94, 8, 38, 0.14);
  --radius: 16px;
  --radius-pill: 50px;
  --transition: all 0.35s ease;
  --font-heading: 'Marcellus', serif;
  --font-body: 'Sarabun', sans-serif;
  --max-width: 1200px;
}

/* --- Reset & Base --- */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  color: var(--text-body);
  background: var(--bg);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

ul { list-style: none; }

img {
  max-width: 100%;
  height: auto;
  display: block;
}

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

/* --- Typography --- */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 400;
  line-height: 1.3;
  color: var(--burgundy);
}

h1 { font-size: 3.4rem; }
h2 { font-size: 2.4rem; margin-bottom: 16px; }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.15rem; }

p {
  color: var(--text-body);
  margin-bottom: 16px;
  font-size: 1rem;
}

.section-label {
  display: inline-block;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--mauve-dark);
  margin-bottom: 12px;
  font-family: var(--font-body);
}

.section-title {
  text-align: center;
  margin-bottom: 12px;
}

.section-subtitle {
  font-size: 1.05rem;
  color: var(--text-light);
  max-width: 600px;
  margin: 0 auto 48px;
  text-align: center;
}

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 36px;
  border-radius: var(--radius-pill);
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  border: none;
  text-align: center;
  font-family: var(--font-body);
}

.btn-primary {
  background: var(--mauve);
  color: #fff;
}

.btn-primary:hover {
  background: var(--mauve-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(213, 153, 153, 0.4);
}

.btn-outline {
  border: 2px solid var(--burgundy);
  color: var(--burgundy);
  background: transparent;
}

.btn-outline:hover {
  background: var(--burgundy);
  color: #fff;
}

.btn-white {
  background: #fff;
  color: var(--burgundy);
}

.btn-white:hover {
  background: var(--burgundy);
  color: #fff;
  transform: translateY(-2px);
}

/* --- Decorative Elements --- */
.flower-deco {
  position: absolute;
  width: 180px;
  height: 180px;
  opacity: 0.18;
  pointer-events: none;
  z-index: 0;
}

.flower-deco svg {
  width: 100%;
  height: 100%;
  fill: none;
  stroke: var(--mauve-dark);
  stroke-width: 1.2;
}

.organic-blob {
  position: absolute;
  border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
  background: linear-gradient(135deg, rgba(213,153,153,0.12), rgba(255,240,243,0.4));
  z-index: 0;
  pointer-events: none;
}

/* ============================================
   NAVIGATION
   ============================================ */
.navbar {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: transparent;
  transition: var(--transition);
  padding: 16px 0;
}

.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.nav-logo img {
  height: 56px;
  width: auto;
  border-radius: 50%;
  box-shadow: 0 4px 16px rgba(94, 8, 38, 0.1);
}

.nav-logo span {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--burgundy);
  letter-spacing: 1px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
}

.nav-links a {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--burgundy);
  position: relative;
  padding: 4px 0;
  font-family: var(--font-heading);
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1.5px;
  background: var(--mauve);
  transition: width 0.3s ease;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--mauve-dark);
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

.nav-links .btn {
  padding: 12px 28px;
  font-size: 0.9rem;
}

.nav-links .btn::after { display: none; }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  z-index: 1001;
  background: none;
  border: none;
  padding: 4px;
}

.hamburger span {
  display: block;
  width: 26px;
  height: 2.5px;
  background: var(--burgundy);
  border-radius: 2px;
  transition: var(--transition);
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 80px;
  position: relative;
  background: linear-gradient(135deg, #fff 0%, var(--bg-rose) 100%);
  overflow: hidden;
}

.hero .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 2;
}

.hero-content {
  padding: 60px 0;
}

.hero-label {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--mauve-dark);
  margin-bottom: 16px;
}

.hero h1 {
  font-size: 3.6rem;
  margin-bottom: 20px;
  color: var(--burgundy);
  line-height: 1.15;
}

.hero p {
  font-size: 1.1rem;
  color: var(--text-body);
  margin-bottom: 36px;
  max-width: 520px;
  line-height: 1.8;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-image {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-image .blob-bg {
  position: absolute;
  width: 460px;
  height: 520px;
  background: linear-gradient(135deg, rgba(213,153,153,0.18), rgba(255,240,243,0.6));
  border-radius: 42% 58% 48% 52% / 52% 38% 62% 48%;
  z-index: 0;
}

.hero-image img {
  position: relative;
  z-index: 1;
  max-height: 720px;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 20px 40px rgba(94, 8, 38, 0.12));
}

/* ============================================
   SECTIONS (shared)
   ============================================ */
.section {
  padding: 100px 0;
  position: relative;
}

.section-light { background: var(--bg); }
.section-rose { background: var(--bg-rose); }
.section-cream { background: var(--bg-cream); }

/* ============================================
   SERVICES OVERVIEW (Home)
   ============================================ */
.services-overview {
  background: var(--mauve);
  padding: 70px 0;
}

.services-overview-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.overview-card {
  text-align: center;
  color: #fff;
  padding: 20px;
}

.overview-card .icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 20px;
  border: 2px solid rgba(255,255,255,0.4);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 34px;
  color: #fff;
}

.overview-card h3 {
  font-size: 1.4rem;
  margin-bottom: 10px;
  color: #fff;
}

.overview-card p {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.85);
  margin-bottom: 0;
  line-height: 1.7;
}

/* ============================================
   STORY SECTION
   ============================================ */
.story-section {
  background: var(--bg);
}

.story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.story-image {
  position: relative;
}

.story-image .blob-frame {
  width: 100%;
  max-width: 460px;
  aspect-ratio: 1/1.15;
  margin: 0 auto;
  border-radius: 45% 55% 40% 60% / 55% 45% 55% 45%;
  overflow: hidden;
  box-shadow: var(--shadow-hover);
}

.story-image .blob-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.story-content h2 {
  text-align: left;
  margin-bottom: 20px;
}

.story-content p {
  margin-bottom: 24px;
  line-height: 1.9;
}

.story-stats {
  display: flex;
  gap: 20px;
  margin-top: 32px;
}

.stat-card {
  flex: 1;
  background: var(--mauve);
  color: #fff;
  padding: 28px 20px;
  border-radius: var(--radius);
  text-align: center;
}

.stat-card .number {
  font-family: var(--font-heading);
  font-size: 2.4rem;
  display: block;
  line-height: 1;
  margin-bottom: 6px;
}

.stat-card .label {
  font-size: 0.85rem;
  opacity: 0.9;
}

/* ============================================
   NEWSLETTER SECTION
   ============================================ */
.newsletter-section {
  background: linear-gradient(rgba(255,255,255,0.55), rgba(255,255,255,0.55)), url('../images/newsletter-bg.jpg');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  padding: 100px 0;
  text-align: center;
}

.newsletter-section h2 {
  color: var(--burgundy);
  margin-bottom: 12px;
}

.newsletter-section p {
  max-width: 500px;
  margin: 0 auto 32px;
}

.newsletter-form {
  max-width: 520px;
  margin: 0 auto;
  display: flex;
  background: #fff;
  border-radius: var(--radius-pill);
  padding: 6px;
  box-shadow: var(--shadow);
}

.newsletter-form input {
  flex: 1;
  border: none;
  padding: 14px 24px;
  font-size: 1rem;
  font-family: var(--font-body);
  color: var(--text-dark);
  outline: none;
  background: transparent;
}

.newsletter-form input::placeholder {
  color: var(--text-light);
}

.newsletter-form button {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: none;
  background: var(--mauve);
  color: #fff;
  font-size: 1.3rem;
  cursor: pointer;
  transition: var(--transition);
}

.newsletter-form button:hover {
  background: var(--burgundy);
}

/* ============================================
   BEST TREATMENT CARDS
   ============================================ */
.treatment-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.treatment-card {
  background: var(--bg);
  border-radius: var(--radius);
  padding: 40px 30px;
  text-align: center;
  box-shadow: var(--shadow);
  transition: var(--transition);
  border: 1px solid var(--border);
}

.treatment-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-hover);
}

.treatment-card .icon {
  width: 90px;
  height: 90px;
  margin: 0 auto 24px;
  border: 2px solid var(--mauve);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 40px;
  color: var(--burgundy);
}

.treatment-card h3 {
  font-size: 1.4rem;
  margin-bottom: 12px;
}

.treatment-card p {
  font-size: 0.95rem;
  color: var(--text-light);
  margin-bottom: 20px;
}

.treatment-card .learn-more {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--burgundy);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.treatment-card .learn-more:hover {
  color: var(--mauve-dark);
  gap: 10px;
}

/* ============================================
   PRIORITY SECTION (Progress bars)
   ============================================ */
.priority-section {
  background: var(--bg-rose);
}

.priority-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.priority-image {
  position: relative;
}

.priority-image img {
  width: 100%;
  border-radius: var(--radius);
  box-shadow: var(--shadow-hover);
}

.priority-content h2 {
  text-align: left;
  margin-bottom: 20px;
}

.priority-content p {
  margin-bottom: 36px;
  line-height: 1.9;
}

.progress-item {
  margin-bottom: 28px;
}

.progress-item .progress-header {
  display: flex;
  justify-content: space-between;
  margin-bottom: 10px;
  font-weight: 600;
  color: var(--burgundy);
}

.progress-bar {
  height: 8px;
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
}

.progress-fill {
  height: 100%;
  background: var(--mauve);
  border-radius: 10px;
  width: 0;
  transition: width 1.2s ease;
}

/* ============================================
   TEAM SECTION
   ============================================ */
.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 36px;
}

.team-card {
  text-align: center;
}

.team-photo {
  width: 220px;
  height: 260px;
  margin: 0 auto 24px;
  border-radius: 45% 55% 45% 55% / 55% 45% 55% 45%;
  overflow: hidden;
  box-shadow: var(--shadow-hover);
  border: 4px solid #fff;
}

.team-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.team-card h3 {
  font-size: 1.3rem;
  margin-bottom: 4px;
}

.team-card .role {
  color: var(--mauve-dark);
  font-weight: 500;
  font-size: 0.95rem;
  margin-bottom: 12px;
}

.team-card p {
  font-size: 0.9rem;
  color: var(--text-light);
  margin-bottom: 16px;
  padding: 0 12px;
}

.team-social {
  display: flex;
  justify-content: center;
  gap: 12px;
}

.team-social a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--bg-rose);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--burgundy);
  font-size: 1rem;
}

.team-social a:hover {
  background: var(--mauve);
  color: #fff;
}

/* ============================================
   TESTIMONIALS
   ============================================ */
.testimonials-section {
  background: linear-gradient(rgba(255,255,255,0.6), rgba(255,255,255,0.6)), url('../images/newsletter-bg.jpg');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  text-align: center;
}

.testimonials-section .section-title,
.testimonials-section .section-subtitle {
  color: var(--burgundy);
}

.testimonials-slider {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
}

.testimonial-slide {
  display: none;
  padding: 20px;
}

.testimonial-slide.active {
  display: block;
  animation: fadeIn 0.6s ease;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

.testimonial-slide .quote-icon {
  font-size: 3rem;
  color: var(--mauve);
  line-height: 1;
  margin-bottom: 12px;
}

.testimonial-slide p {
  font-size: 1.2rem;
  font-style: italic;
  color: var(--text-dark);
  margin-bottom: 28px;
  line-height: 1.8;
}

.testimonial-author {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
}

.testimonial-author img {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  object-fit: cover;
}

.testimonial-author .name {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  color: var(--burgundy);
  margin-bottom: 2px;
}

.testimonial-author .role {
  font-size: 0.85rem;
  color: var(--text-light);
}

.testimonial-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 32px;
}

.testimonial-dots button {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: 2px solid var(--mauve);
  background: transparent;
  cursor: pointer;
  transition: var(--transition);
}

.testimonial-dots button.active {
  background: var(--mauve);
}

/* ============================================
   GALLERY STRIP
   ============================================ */
.gallery-section {
  padding: 0;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.gallery-item {
  position: relative;
  aspect-ratio: 1/1;
  overflow: hidden;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.gallery-item:hover img {
  transform: scale(1.08);
}

.gallery-item .overlay {
  position: absolute;
  inset: 0;
  background: rgba(94, 8, 38, 0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: var(--transition);
}

.gallery-item:hover .overlay {
  opacity: 1;
}

.gallery-item .overlay i {
  color: #fff;
  font-size: 2rem;
}

/* ============================================
   CTA BANNER
   ============================================ */
.cta-banner {
  background: var(--mauve);
  padding: 80px 0;
  text-align: center;
  color: #fff;
}

.cta-banner h2 {
  color: #fff;
  margin-bottom: 16px;
}

.cta-banner p {
  color: rgba(255,255,255,0.9);
  max-width: 560px;
  margin: 0 auto 28px;
}

/* ============================================
   CONTACT SECTION
   ============================================ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}

.contact-info h3 {
  font-size: 1.5rem;
  margin-bottom: 24px;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 24px;
}

.contact-item .icon {
  width: 48px;
  height: 48px;
  min-width: 48px;
  background: var(--bg-rose);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: var(--burgundy);
}

.contact-item h4 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 4px;
  color: var(--burgundy);
}

.contact-item p {
  font-size: 0.95rem;
  color: var(--text-body);
  margin-bottom: 0;
}

.contact-map {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  height: 360px;
}

.contact-map iframe {
  width: 100%;
  height: 100%;
  border: none;
}

.social-links {
  display: flex;
  gap: 12px;
  margin-top: 28px;
}

.social-links a {
  width: 44px;
  height: 44px;
  background: var(--bg-rose);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: var(--burgundy);
  transition: var(--transition);
}

.social-links a:hover {
  background: var(--mauve);
  color: #fff;
}

/* ============================================
   ABOUT PAGE
   ============================================ */
.page-hero {
  padding: 160px 0 90px;
  text-align: center;
  background: linear-gradient(135deg, #fff 0%, var(--bg-rose) 100%);
  position: relative;
  overflow: hidden;
}

.page-hero h1 {
  font-size: 3rem;
  margin-bottom: 12px;
}

.page-hero p {
  font-size: 1.1rem;
  color: var(--text-light);
  max-width: 600px;
  margin: 0 auto;
}

.about-story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-story-grid.reverse {
  direction: rtl;
}

.about-story-grid.reverse > * {
  direction: ltr;
}

.about-story-image {
  position: relative;
}

.about-story-image .blob-frame {
  width: 100%;
  max-width: 480px;
  aspect-ratio: 1/1.1;
  margin: 0 auto;
  border-radius: 48% 52% 42% 58% / 52% 48% 52% 48%;
  overflow: hidden;
  box-shadow: var(--shadow-hover);
}

.about-story-image .blob-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-story-content h2 {
  text-align: left;
  margin-bottom: 20px;
}

.about-story-content p {
  line-height: 1.9;
  margin-bottom: 18px;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.value-card {
  text-align: center;
  padding: 40px 28px;
  background: var(--bg);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  transition: var(--transition);
  border: 1px solid var(--border);
}

.value-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
}

.value-card .icon {
  width: 72px;
  height: 72px;
  margin: 0 auto 18px;
  background: var(--mauve);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  color: #fff;
}

.value-card h3 {
  font-size: 1.2rem;
  margin-bottom: 10px;
}

.value-card p {
  font-size: 0.92rem;
  color: var(--text-light);
  margin-bottom: 0;
}

.promise-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.promise-item {
  text-align: center;
  padding: 32px 24px;
}

.promise-item .icon {
  width: 70px;
  height: 70px;
  margin: 0 auto 18px;
  border: 2px solid var(--mauve);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  color: var(--burgundy);
}

.promise-item h3 {
  font-size: 1.15rem;
  margin-bottom: 10px;
}

.promise-item p {
  font-size: 0.92rem;
  color: var(--text-light);
  margin-bottom: 0;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: var(--mauve);
  color: #fff;
  padding: 80px 0 24px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}

.footer-brand img {
  height: 64px;
  margin-bottom: 20px;
  border-radius: 50%;
  border: 3px solid rgba(255,255,255,0.3);
}

.footer-brand p {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.85);
  line-height: 1.8;
  margin-bottom: 20px;
}

.footer-social {
  display: flex;
  gap: 12px;
}

.footer-social a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 18px;
}

.footer-social a:hover {
  background: #fff;
  color: var(--mauve);
}

.footer h4 {
  color: #fff;
  font-family: var(--font-heading);
  font-size: 1.15rem;
  margin-bottom: 20px;
}

.footer ul li {
  margin-bottom: 12px;
}

.footer ul li a {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.85);
}

.footer ul li a:hover {
  color: #fff;
  padding-left: 4px;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.25);
  padding-top: 24px;
  text-align: center;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.8);
}

.footer-bottom p {
  color: rgba(255,255,255,0.8);
  margin-bottom: 0;
}

/* ============================================
   SERVICES PAGE (preserved + adapted)
   ============================================ */
.services-page-hero {
  padding: 150px 0 70px;
  text-align: center;
  background: linear-gradient(135deg, #fff 0%, var(--bg-rose) 100%);
}

.services-page-hero h1 {
  font-size: 3rem;
  margin-bottom: 12px;
}

.services-tabs {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 48px;
  background: var(--bg);
  padding: 12px;
  border-radius: var(--radius-pill);
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
}

.services-tabs button {
  padding: 12px 22px;
  border: none;
  border-radius: var(--radius-pill);
  background: transparent;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-body);
  cursor: pointer;
  transition: var(--transition);
  font-family: var(--font-body);
}

.services-tabs button:hover {
  color: var(--mauve-dark);
  background: var(--bg-rose);
}

.services-tabs button.active {
  background: var(--mauve);
  color: #fff;
  box-shadow: 0 4px 14px rgba(213, 153, 153, 0.35);
}

.service-category { display: none; }
.service-category.active { display: block; }

.service-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.service-list.waxing-list {
  grid-template-columns: repeat(3, 1fr);
}

.service-item {
  background: var(--bg);
  border-radius: var(--radius);
  padding: 26px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: var(--transition);
  border: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}

.service-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: var(--mauve);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.service-item:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
  border-color: rgba(213, 153, 153, 0.4);
}

.service-item:hover::before { opacity: 1; }

.service-item h4 {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 6px;
  font-family: var(--font-body);
  color: var(--burgundy);
}

.service-item .duration {
  display: inline-block;
  font-size: 0.78rem;
  color: var(--mauve-dark);
  font-weight: 600;
  margin-bottom: 12px;
  padding: 4px 12px;
  background: var(--bg-rose);
  border-radius: var(--radius-pill);
}

.service-item .desc {
  font-size: 0.92rem;
  color: var(--text-body);
  margin-bottom: 14px;
  line-height: 1.7;
  flex-grow: 1;
}

.service-item .desc-cn {
  font-size: 0.85rem;
  color: var(--text-light);
  margin-top: 10px;
  padding-top: 12px;
  border-top: 1px dashed var(--border);
  display: none;
}

.service-item .desc-cn.show { display: block; }

.service-item .toggle-cn {
  font-size: 0.8rem;
  color: var(--mauve-dark);
  cursor: pointer;
  margin: 10px 0 0;
  display: inline-block;
  background: none;
  border: none;
  font-family: var(--font-body);
  padding: 0;
  font-weight: 500;
}

.service-item .toggle-cn:hover { text-decoration: underline; }

.service-item .price {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--mauve-dark);
  margin: 16px 0 8px;
}

.service-item .price small {
  font-size: 0.75rem;
  font-weight: 400;
  color: var(--text-light);
  margin: 0 8px;
}

.service-item .book-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--burgundy);
  margin-top: 8px;
}

.service-item .book-link:hover {
  color: var(--mauve-dark);
  gap: 10px;
}

.service-item .service-thumb { display: none; }
.service-item.has-image { padding-top: 22px; }
.service-item.has-image .service-thumb {
  display: block;
  width: 100%;
  height: 160px;
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 18px;
}

.service-item.has-image .service-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.service-item.has-image:hover .service-thumb img { transform: scale(1.05); }

.waxing-list .service-item {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  padding: 18px 22px;
}

.waxing-list .service-item h4 {
  margin-bottom: 0;
  font-size: 1rem;
}

.waxing-list .service-item .price {
  margin: 0;
  font-size: 1.1rem;
}

.category-header {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 36px;
  padding: 24px 28px;
  background: linear-gradient(135deg, rgba(213,153,153,0.08), rgba(255,240,243,0.5));
  border-radius: var(--radius);
  border-left: 5px solid var(--mauve);
}

.category-header .category-icon {
  width: 64px;
  height: 64px;
  min-width: 64px;
  border-radius: 50%;
  background: var(--mauve);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  color: #fff;
  box-shadow: 0 6px 18px rgba(213, 153, 153, 0.25);
}

.category-header h3 {
  font-size: 1.6rem;
  margin-bottom: 4px;
  font-family: var(--font-heading);
}

.category-header p {
  margin-bottom: 0;
  color: var(--text-light);
  font-size: 0.95rem;
}

/* ============================================
   BOOKING PAGE
   ============================================ */
.booking-page-hero {
  padding: 150px 0 70px;
  text-align: center;
  background: linear-gradient(135deg, #fff 0%, var(--bg-rose) 100%);
}

.booking-page-hero h1 {
  font-size: 3rem;
  margin-bottom: 12px;
}

.booking-wrapper {
  max-width: 720px;
  margin: 0 auto;
}

.booking-form {
  background: var(--bg);
  border-radius: var(--radius);
  padding: 48px 44px;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.form-group {
  margin-bottom: 24px;
}

.form-group label {
  display: block;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--burgundy);
  margin-bottom: 8px;
}

.form-group label .required {
  color: var(--mauve-dark);
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 13px 18px;
  border: 1.5px solid var(--border);
  border-radius: 10px;
  font-size: 0.95rem;
  font-family: var(--font-body);
  color: var(--text-dark);
  background: var(--bg-cream);
  transition: var(--transition);
  outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--mauve);
  box-shadow: 0 0 0 3px rgba(213, 153, 153, 0.15);
}

.form-group textarea {
  resize: vertical;
  min-height: 100px;
}

.form-group select {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23999' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
}

.booking-form .btn {
  width: 100%;
  padding: 16px;
  font-size: 1.05rem;
}

.booking-note {
  text-align: center;
  margin-top: 20px;
  font-size: 0.85rem;
  color: var(--text-light);
}

.form-success {
  display: none;
  text-align: center;
  padding: 48px 24px;
}

.form-success .icon {
  font-size: 48px;
  margin-bottom: 16px;
  color: var(--mauve);
}

.form-success h3 {
  font-size: 1.5rem;
  margin-bottom: 12px;
}

.form-success p {
  font-size: 1rem;
}

/* ============================================
   ANIMATIONS
   ============================================ */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

.fade-in-left {
  opacity: 0;
  transform: translateX(-30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-in-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.fade-in-right {
  opacity: 0;
  transform: translateX(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-in-right.visible {
  opacity: 1;
  transform: translateX(0);
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
  .hero .container,
  .story-grid,
  .priority-grid,
  .about-story-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .hero {
    text-align: center;
  }

  .hero-content {
    padding: 40px 0 0;
  }

  .hero h1 {
    font-size: 2.8rem;
  }

  .hero p {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-buttons {
    justify-content: center;
  }

  .hero-image {
    order: -1;
  }

  .hero-image img {
    max-height: 480px;
  }

  .hero-image .blob-bg {
    width: 360px;
    height: 400px;
  }

  .services-overview-grid,
  .treatment-grid,
  .team-grid,
  .values-grid,
  .promise-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .service-list,
  .service-list.waxing-list,
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .story-content h2,
  .priority-content h2,
  .about-story-content h2 {
    text-align: center;
  }

  .story-stats {
    justify-content: center;
  }
}

@media (max-width: 768px) {
  h1 { font-size: 2.4rem; }
  h2 { font-size: 1.9rem; }

  .hero h1 { font-size: 2.2rem; }

  .navbar .container { height: 72px; }
  .nav-logo img { height: 48px; }
  .nav-logo span { font-size: 1.25rem; }

  .hamburger { display: flex; }

  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: var(--bg);
    flex-direction: column;
    padding: 100px 32px 32px;
    gap: 24px;
    box-shadow: -4px 0 20px rgba(0,0,0,0.1);
    transition: right 0.3s ease;
    align-items: flex-start;
  }

  .nav-links.open { right: 0; }

  .nav-links a { font-size: 1.1rem; }

  .section { padding: 70px 0; }
  .page-hero { padding: 130px 0 60px; }

  .services-overview-grid,
  .treatment-grid,
  .team-grid,
  .values-grid,
  .promise-grid,
  .gallery-grid,
  .contact-grid,
  .footer-grid,
  .service-list,
  .service-list.waxing-list {
    grid-template-columns: 1fr;
  }

  .story-stats {
    flex-direction: column;
  }

  .newsletter-form {
    flex-direction: column;
    border-radius: var(--radius);
  }

  .newsletter-form button {
    width: 100%;
    border-radius: var(--radius);
  }

  .booking-form {
    padding: 32px 24px;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .services-tabs {
    border-radius: var(--radius);
    flex-wrap: wrap;
    justify-content: center;
  }

  .services-tabs button {
    padding: 8px 14px;
    font-size: 0.8rem;
  }

  .category-header {
    padding: 18px 20px;
    gap: 14px;
  }

  .category-header .category-icon {
    width: 48px;
    height: 48px;
    font-size: 22px;
  }

  .category-header h3 { font-size: 1.25rem; }

  .service-item.has-image .service-thumb {
    height: 180px;
  }

  .waxing-list .service-item {
    flex-direction: row;
  }

  .gallery-item {
    aspect-ratio: 16/9;
  }
}

@media (max-width: 480px) {
  .hero h1 { font-size: 1.9rem; }
  .hero p { font-size: 1rem; }
  .hero-image img { max-height: 360px; }
  .hero-image .blob-bg { width: 280px; height: 320px; }
  .btn { padding: 12px 28px; }
}
