/* ============================================
   BLOOM BEAUTY SALON — Luxury Stylesheet
   Design: Soft pastel, premium, feminine
   ============================================ */

/* ---------- RESET & BASE ---------- */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; font-size: 16px; }

:root {
  --rose: #f5c2c7;
  --rose-light: #fce8eb;
  --rose-dark: #d4959b;
  --blush: #fdf0f2;
  --gold: #c9a96e;
  --gold-light: #e8d5a8;
  --cream: #fcf8f3;
  --ivory: #fff9f5;
  --taupe: #8c7e74;
  --taupe-light: #d4ccc6;
  --charcoal: #2d2a28;
  --charcoal-light: #4a4542;
  --white: #ffffff;
  --shadow: 0 4px 24px rgba(45, 42, 40, 0.06);
  --shadow-lg: 0 12px 48px rgba(45, 42, 40, 0.1);
  --radius: 16px;
  --radius-sm: 10px;
  --transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  --font-serif: 'Cormorant Garamond', 'Playfair Display', Georgia, serif;
  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-display: 'Playfair Display', 'Cormorant Garamond', Georgia, serif;
  --max-width: 1200px;
}

body {
  font-family: var(--font-sans);
  color: var(--charcoal);
  background: var(--cream);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
.container { width: 92%; max-width: var(--max-width); margin: 0 auto; }

/* ---------- TYPOGRAPHY ---------- */
h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 600; line-height: 1.2; color: var(--charcoal); }
.section { padding: 6rem 0; position: relative; }
.section-header { text-align: center; margin-bottom: 3.5rem; }
.section-tag {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 0.75rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
  margin-bottom: 0.75rem;
  position: relative;
}
.section-tag::before,
.section-tag::after {
  content: '';
  display: inline-block;
  width: 24px; height: 1px;
  background: var(--gold-light);
  vertical-align: middle;
  margin: 0 10px;
}
.section-title {
  font-size: clamp(2rem, 5vw, 3rem);
  margin-bottom: 1rem;
  color: var(--charcoal);
}
.section-desc {
  max-width: 560px;
  margin: 0 auto;
  color: var(--taupe);
  font-size: 1.05rem;
  line-height: 1.7;
}

/* ---------- REVEAL ANIMATIONS ---------- */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ---------- BUTTONS ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.9rem 2rem;
  border-radius: 50px;
  font-family: var(--font-sans);
  font-size: 0.9rem;
  font-weight: 500;
  cursor: pointer;
  border: none;
  transition: var(--transition);
  white-space: nowrap;
}
.btn-primary {
  background: var(--charcoal);
  color: var(--white);
}
.btn-primary:hover {
  background: var(--gold);
  color: var(--charcoal);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(201, 169, 110, 0.3);
}
.btn-outline {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,0.4);
}
.btn-outline:hover {
  background: var(--white);
  color: var(--charcoal);
  border-color: var(--white);
  transform: translateY(-2px);
}
.btn-full { width: 100%; }

/* ========== NAVBAR ========== */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 1rem 0;
  transition: var(--transition);
}
.navbar.scrolled {
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  padding: 0.6rem 0;
  box-shadow: 0 1px 20px rgba(0,0,0,0.06);
}
.nav-container {
  width: 92%;
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--white);
  letter-spacing: 1px;
  transition: var(--transition);
}
.scrolled .nav-logo { color: var(--charcoal); }
.nav-links { display: flex; gap: 2rem; }
.nav-link {
  font-size: 0.82rem;
  font-weight: 400;
  color: rgba(255,255,255,0.8);
  letter-spacing: 0.5px;
  padding: 0.25rem 0;
  position: relative;
  transition: var(--transition);
}
.scrolled .nav-link { color: var(--charcoal-light); }
.nav-link::after {
  content: '';
  position: absolute; bottom: -2px; left: 0;
  width: 0; height: 1.5px;
  background: var(--gold);
  transition: var(--transition);
}
.nav-link:hover::after,
.nav-link.active::after { width: 100%; }
.nav-link:hover, .nav-link.active { color: var(--gold); }
.nav-cta {
  padding: 0.55rem 1.5rem;
  border-radius: 50px;
  background: var(--gold);
  color: var(--charcoal);
  font-size: 0.82rem;
  font-weight: 500;
  transition: var(--transition);
}
.nav-cta:hover {
  background: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(201,169,110,0.3);
}
.scrolled .nav-cta { background: var(--charcoal); color: var(--white); }
.scrolled .nav-cta:hover { background: var(--gold); color: var(--charcoal); }

/* Nav Toggle (mobile) */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  z-index: 1001;
}
.nav-toggle span {
  display: block;
  width: 24px; height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}
.scrolled .nav-toggle span { background: var(--charcoal); }
.nav-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ========== HERO ========== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  background:
    linear-gradient(135deg, rgba(45,42,40,0.75) 0%, rgba(45,42,40,0.3) 100%),
    url('../images/hero-bg.jpg') center/cover no-repeat;
  animation: heroZoom 20s ease-in-out infinite alternate;
}
@keyframes heroZoom {
  0% { transform: scale(1); }
  100% { transform: scale(1.08); }
}
.hero-overlay {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 50% 80%, rgba(201,169,110,0.08) 0%, transparent 60%);
  z-index: 1;
}
.hero-content {
  position: relative; z-index: 2;
  text-align: center;
  max-width: 720px;
  padding: 2rem;
}
.hero-subtitle {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 0.8rem;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 1.5rem;
  position: relative;
}
.hero-subtitle::before,
.hero-subtitle::after {
  content: '\2014';
  margin: 0 10px;
  color: var(--gold);
}
.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 8vw, 5.5rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.05;
  margin-bottom: 1.5rem;
}
.hero-title span {
  display: block;
  font-weight: 400;
  font-style: italic;
  font-size: 0.7em;
  color: var(--gold-light);
  letter-spacing: 2px;
}
.hero-desc {
  color: rgba(255,255,255,0.75);
  font-size: 1.1rem;
  max-width: 480px;
  margin: 0 auto 2.5rem;
  line-height: 1.8;
}
.hero-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }
.hero-badges {
  display: flex; gap: 2rem; justify-content: center; flex-wrap: wrap;
  margin-top: 3rem;
}
.hero-badges span {
  color: rgba(255,255,255,0.6);
  font-size: 0.82rem;
  display: flex; align-items: center; gap: 0.5rem;
}
.hero-badges i { color: var(--gold); }
.hero-scroll-indicator {
  position: absolute; bottom: 2rem; left: 50%; transform: translateX(-50%);
  z-index: 2;
  display: flex; flex-direction: column; align-items: center; gap: 0.5rem;
  color: rgba(255,255,255,0.4);
  font-size: 0.7rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  animation: floatDown 2s ease-in-out infinite;
}
@keyframes floatDown {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(8px); }
}

/* ========== PROMO BAR ========== */
.promo-bar {
  background: linear-gradient(135deg, var(--rose), var(--gold-light));
  padding: 0.85rem 1rem;
  text-align: center;
}
.promo-content {
  display: flex; align-items: center; justify-content: center; gap: 1rem; flex-wrap: wrap;
  color: var(--charcoal);
  font-size: 0.9rem;
}
.promo-content i { font-size: 1.1rem; }
.promo-cta {
  font-weight: 600;
  color: var(--charcoal);
  border-bottom: 1.5px solid var(--charcoal);
  padding-bottom: 1px;
  transition: var(--transition);
}
.promo-cta:hover { color: var(--white); border-color: var(--white); }

/* ========== ABOUT ========== */
.about { background: var(--ivory); }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.about-visual { position: relative; padding-bottom: 2rem; }
.about-img-main {
  width: 100%; aspect-ratio: 4/5;
  border-radius: var(--radius);
  background: url('../images/about-main.jpg') center/cover no-repeat;
}
.about-img-accent {
  position: absolute; bottom: 0; right: -1.5rem;
  width: 50%; aspect-ratio: 3/4;
  border-radius: var(--radius);
  border: 6px solid var(--cream);
  background: url('../images/about-accent.jpg') center/cover no-repeat;
}
.about-experience-badge {
  position: absolute; top: 1.5rem; left: -1rem;
  background: var(--gold);
  color: var(--charcoal);
  padding: 1.2rem 1.5rem;
  border-radius: var(--radius-sm);
  text-align: center;
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: 0.82rem;
  line-height: 1.3;
  box-shadow: var(--shadow-lg);
}
.about-experience-badge .years {
  display: block;
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
}
.about-features { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; margin-top: 2rem; }
.about-feature { display: flex; gap: 1rem; align-items: flex-start; }
.af-icon {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--rose-light);
  display: flex; align-items: center; justify-content: center;
  color: var(--rose-dark);
  font-size: 1rem;
  flex-shrink: 0;
}
.about-feature h4 { font-family: var(--font-sans); font-size: 0.9rem; font-weight: 600; margin-bottom: 0.15rem; }
.about-feature p { color: var(--taupe); font-size: 0.82rem; }

/* ========== SERVICES ========== */
.services { background: var(--cream); }
.services-tabs {
  display: flex; justify-content: center; gap: 0.5rem; flex-wrap: wrap;
  margin-bottom: 2.5rem;
}
.service-tab {
  padding: 0.55rem 1.4rem;
  border-radius: 50px;
  border: 1.5px solid var(--taupe-light);
  background: transparent;
  font-family: var(--font-sans);
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--taupe);
  cursor: pointer;
  transition: var(--transition);
}
.service-tab:hover, .service-tab.active {
  background: var(--charcoal);
  color: var(--white);
  border-color: var(--charcoal);
}
.services-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(250px, 1fr)); gap: 1.5rem;
}
.service-card {
  background: var(--white);
  padding: 2rem;
  border-radius: var(--radius);
  text-align: center;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--rose), var(--gold));
  transform: scaleX(0);
  transition: var(--transition);
}
.service-card:hover::before { transform: scaleX(1); }
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}
.sc-icon {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: var(--rose-light);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1.25rem;
  font-size: 1.25rem;
  color: var(--rose-dark);
  transition: var(--transition);
}
.service-card:hover .sc-icon { background: var(--gold-light); color: var(--charcoal); }
.service-card h3 { font-family: var(--font-sans); font-size: 1rem; margin-bottom: 0.5rem; }
.service-card p { color: var(--taupe); font-size: 0.85rem; margin-bottom: 1rem; }
.sc-price {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--gold);
}

/* ========== SEASONAL OFFER ========== */
.seasonal-offer { padding: 2rem 0 0; }
.offer-card {
  display: grid; grid-template-columns: 1fr 1fr;
  border-radius: 20px;
  overflow: hidden;
  background: linear-gradient(135deg, var(--charcoal), #3d3530);
  min-height: 400px;
}
.offer-content { padding: 3rem; display: flex; flex-direction: column; justify-content: center; }
.offer-badge {
  display: inline-block;
  background: var(--gold);
  color: var(--charcoal);
  padding: 0.3rem 1rem;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 1rem;
  width: fit-content;
}
.offer-content h2 {
  color: var(--white);
  font-size: clamp(1.8rem, 4vw, 2.4rem);
  margin-bottom: 1rem;
}
.offer-content p { color: rgba(255,255,255,0.65); font-size: 0.95rem; margin-bottom: 1.5rem; line-height: 1.7; }
.offer-pricing { display: flex; align-items: center; gap: 1rem; margin-bottom: 1.5rem; }
.offer-price { font-family: var(--font-display); font-size: 2.2rem; font-weight: 700; color: var(--gold); }
.offer-original {
  font-size: 1rem;
  color: rgba(255,255,255,0.35);
  text-decoration: line-through;
}
.offer-visual {
  background: url('../images/offer-visual.jpg') center/cover no-repeat;
  min-height: 300px;
}

/* ========== BOOKING ========== */
.booking { background: var(--ivory); }
.booking-grid { display: grid; grid-template-columns: 1.3fr 1fr; gap: 3rem; align-items: start; }
.booking-form { background: var(--white); padding: 2.5rem; border-radius: var(--radius); box-shadow: var(--shadow); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-bottom: 1rem; }
.form-group { margin-bottom: 1rem; }
.form-group label {
  display: block;
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--charcoal-light);
  margin-bottom: 0.35rem;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1.5px solid var(--taupe-light);
  border-radius: var(--radius-sm);
  font-family: var(--font-sans);
  font-size: 0.9rem;
  color: var(--charcoal);
  background: var(--cream);
  transition: var(--transition);
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201,169,110,0.1);
}

/* WhatsApp Booking */
.wa-hero-card {
  text-align: center;
  padding: 1.5rem 1rem 1rem;
  margin-bottom: 1.5rem;
}
.wa-hero-icon {
  width: 64px; height: 64px;
  border-radius: 50%;
  background: #25D366;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1rem;
  font-size: 1.8rem;
  color: var(--white);
  box-shadow: 0 4px 20px rgba(37,211,102,0.25);
}
.wa-hero-card h3 {
  font-family: var(--font-sans);
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}
.wa-hero-card p {
  color: var(--taupe);
  font-size: 0.85rem;
  line-height: 1.6;
  max-width: 380px;
  margin: 0 auto;
}
.btn-wa {
  background: #25D366;
  color: var(--white);
  font-size: 1rem;
  padding: 1rem 2rem;
  gap: 0.65rem;
  box-shadow: 0 4px 16px rgba(37,211,102,0.3);
}
.btn-wa:hover {
  background: #128C7E;
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(37,211,102,0.4);
}
.wa-footnote {
  text-align: center;
  color: var(--taupe);
  font-size: 0.75rem;
  margin-top: 0.75rem;
}
.bi-wa {
  border-left: 3px solid #25D366;
}
.bi-wa i { color: #25D366; }

.booking-ai-insight {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem;
  background: var(--rose-light);
  border-radius: var(--radius-sm);
  margin-bottom: 1.25rem;
  font-size: 0.85rem;
  color: var(--charcoal);
}
.booking-ai-insight i { font-size: 1.2rem; color: var(--rose-dark); }
.booking-ai-insight span { font-weight: 600; color: var(--rose-dark); }
.booking-info { display: flex; flex-direction: column; gap: 1rem; }
.bi-card {
  background: var(--white);
  padding: 1.25rem 1.5rem;
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow);
  transition: var(--transition);
}
.bi-card:hover { transform: translateX(4px); }
.bi-card i { font-size: 1.2rem; color: var(--gold); margin-bottom: 0.5rem; }
.bi-card h4 { font-family: var(--font-sans); font-size: 0.9rem; margin-bottom: 0.25rem; }
.bi-card p { color: var(--taupe); font-size: 0.85rem; line-height: 1.6; }
.whatsapp-link {
  display: inline-flex; align-items: center; gap: 0.4rem;
  color: #25D366;
  font-weight: 500;
  font-size: 0.85rem;
  margin-top: 0.25rem;
  transition: var(--transition);
}
.whatsapp-link:hover { color: #128C7E; }

/* ========== TEAM ========== */
.team { background: var(--cream); }
.team-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }
.team-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  transition: var(--transition);
  box-shadow: var(--shadow);
}
.team-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.team-img {
  width: 100%; aspect-ratio: 1;
  background-size: cover; background-position: center;
  position: relative;
  overflow: hidden;
}
.team-social {
  position: absolute; inset: 0;
  background: rgba(45,42,40,0.5);
  display: flex; align-items: center; justify-content: center; gap: 1rem;
  opacity: 0; transition: var(--transition);
}
.team-card:hover .team-social { opacity: 1; }
.team-social a {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--white);
  display: flex; align-items: center; justify-content: center;
  color: var(--charcoal);
  transition: var(--transition);
}
.team-social a:hover { background: var(--gold); color: var(--white); }
.team-info { padding: 1.25rem 1.25rem 1.5rem; text-align: center; }
.team-info h3 { font-family: var(--font-sans); font-size: 1rem; margin-bottom: 0.25rem; }
.team-info span { color: var(--gold); font-size: 0.82rem; font-weight: 500; }
.team-info p { color: var(--taupe); font-size: 0.8rem; margin-top: 0.5rem; }

/* ========== BEFORE / AFTER ========== */
.before-after { background: var(--ivory); }
.ba-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.ba-card {
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--white);
  box-shadow: var(--shadow);
  transition: var(--transition);
}
.ba-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.ba-images {
  display: grid; grid-template-columns: 1fr 1fr;
  height: 260px;
}
.ba-before, .ba-after {
  position: relative;
  background-size: cover; background-position: center;
  display: flex; align-items: flex-end;
}
.ba-before span, .ba-after span {
  position: absolute; bottom: 8px; left: 50%; transform: translateX(-50%);
  background: rgba(0,0,0,0.6);
  color: var(--white);
  padding: 0.2rem 0.75rem;
  border-radius: 50px;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
  backdrop-filter: blur(4px);
}
.ba-card p {
  padding: 1rem;
  font-size: 0.9rem;
  font-weight: 500;
  text-align: center;
}

/* ========== GALLERY ========== */
.gallery { background: var(--cream); }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: 240px 240px;
  gap: 0.75rem;
}
.gallery-item {
  border-radius: var(--radius-sm);
  background-size: cover; background-position: center;
  overflow: hidden;
  cursor: pointer;
  position: relative;
}
.gallery-item:nth-child(1) { grid-column: span 2; grid-row: span 2; }
.gi-overlay {
  position: absolute; inset: 0;
  background: rgba(45,42,40,0.5);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; transition: var(--transition);
  color: var(--white);
  font-size: 1.5rem;
}
.gallery-item:hover .gi-overlay { opacity: 1; }

/* ========== TESTIMONIALS ========== */
.testimonials { background: var(--ivory); }
.testimonial-card {
  background: var(--white);
  padding: 2rem 2rem 2.5rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  min-height: 240px;
  display: flex; flex-direction: column;
}
.tc-stars { color: var(--gold); margin-bottom: 1rem; font-size: 0.9rem; letter-spacing: 2px; }
.testimonial-card p {
  color: var(--charcoal-light);
  font-size: 0.92rem;
  line-height: 1.7;
  flex: 1;
  font-style: italic;
}
.tc-author { display: flex; align-items: center; gap: 0.75rem; margin-top: 1.25rem; }
.tc-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background-size: cover; background-position: center;
  flex-shrink: 0;
  border: 2px solid var(--rose-light);
}
.tc-author strong { display: block; font-size: 0.9rem; }
.tc-author span { font-size: 0.75rem; color: var(--taupe); }

/* Swiper overrides */
.swiper { padding-bottom: 3rem; }
.swiper-slide { height: auto; }
.swiper-pagination-bullet { background: var(--taupe-light); opacity: 1; }
.swiper-pagination-bullet-active { background: var(--gold); width: 24px; border-radius: 4px; }

/* ========== MEMBERSHIP ========== */
.membership { background: var(--cream); }
.membership-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; align-items: start; }
.membership-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 2.5rem 2rem;
  text-align: center;
  box-shadow: var(--shadow);
  position: relative;
  transition: var(--transition);
}
.membership-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.membership-card.featured {
  border: 2px solid var(--gold);
  transform: scale(1.03);
}
.membership-card.featured:hover { transform: scale(1.03) translateY(-6px); }
.mc-badge {
  display: inline-block;
  background: var(--rose-light);
  color: var(--rose-dark);
  padding: 0.25rem 1rem;
  border-radius: 50px;
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 1rem;
}
.membership-card.featured .mc-badge { background: var(--gold); color: var(--charcoal); }
.membership-card h3 { font-family: var(--font-sans); font-size: 1.1rem; margin-bottom: 1rem; }
.mc-price { margin-bottom: 1.5rem; }
.mc-price .amount {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--charcoal);
}
.mc-price .period { color: var(--taupe); font-size: 0.9rem; }
.mc-perks { text-align: left; margin-bottom: 1.5rem; }
.mc-perks li {
  display: flex; align-items: center; gap: 0.65rem;
  padding: 0.5rem 0;
  font-size: 0.85rem;
  color: var(--charcoal-light);
  border-bottom: 1px solid var(--cream);
}
.mc-perks li:last-child { border-bottom: none; }
.mc-perks i { color: var(--gold); font-size: 0.8rem; }

/* ========== FAQ ========== */
.faq { background: var(--cream); }
.faq-list { max-width: 720px; margin: 0 auto; }
.faq-item {
  border-bottom: 1px solid var(--taupe-light);
  padding: 0.25rem 0;
}
.faq-question {
  width: 100%;
  display: flex; justify-content: space-between; align-items: center;
  padding: 1.25rem 0;
  background: none;
  border: none;
  font-family: var(--font-sans);
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--charcoal);
  cursor: pointer;
  transition: var(--transition);
  text-align: left;
}
.faq-question:hover { color: var(--gold); }
.faq-question i { transition: var(--transition); font-size: 0.8rem; color: var(--taupe); }
.faq-item.active .faq-question i { transform: rotate(180deg); color: var(--gold); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
}
.faq-item.active .faq-answer {
  max-height: 300px;
  padding-bottom: 1.25rem;
}
.faq-answer p { color: var(--taupe); font-size: 0.9rem; line-height: 1.7; }

/* ========== CERTIFICATIONS ========== */
.certs {
  padding: 2.5rem 0;
  background: var(--white);
  border-top: 1px solid var(--taupe-light);
  border-bottom: 1px solid var(--taupe-light);
}
.certs-row {
  display: flex; justify-content: center; gap: 2.5rem; flex-wrap: wrap;
}
.cert-item {
  display: flex; align-items: center; gap: 0.6rem;
  font-size: 0.85rem;
  color: var(--taupe);
  font-weight: 500;
}
.cert-item i { color: var(--gold); font-size: 1.1rem; }

/* ========== MAP ========== */
.contact { background: var(--ivory); }
.map-container {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.map-container iframe {
  width: 100%;
  height: 320px;
  display: block;
  border: none;
}

/* ========== FOOTER ========== */
.footer {
  background: var(--charcoal);
  color: rgba(255,255,255,0.7);
  padding: 4rem 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 2.5rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-brand h2 {
  font-family: var(--font-display);
  font-size: 1.6rem;
  color: var(--white);
  margin-bottom: 0.75rem;
}
.footer-brand p { font-size: 0.85rem; line-height: 1.7; margin-bottom: 1.25rem; }
.footer-social { display: flex; gap: 0.75rem; }
.footer-social a {
  width: 36px; height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.15);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.5);
  transition: var(--transition);
  font-size: 0.85rem;
}
.footer-social a:hover { background: var(--gold); border-color: var(--gold); color: var(--charcoal); }
.footer-col h4 {
  font-family: var(--font-sans);
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--white);
  margin-bottom: 1rem;
}
.footer-col ul li { margin-bottom: 0.6rem; }
.footer-col ul li a {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.5);
  transition: var(--transition);
}
.footer-col ul li a:hover { color: var(--gold); }
.footer-bottom {
  padding: 1.5rem 0;
  text-align: center;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.3);
}
.footer-bottom i { color: var(--rose); }

/* ========== WHATSAPP FAB ========== */
.whatsapp-fab {
  position: fixed;
  bottom: 1.5rem; right: 1.5rem;
  z-index: 999;
  width: 54px; height: 54px;
  border-radius: 50%;
  background: #25D366;
  color: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem;
  box-shadow: 0 4px 20px rgba(37,211,102,0.35);
  transition: var(--transition);
  opacity: 0; transform: scale(0.8);
  pointer-events: none;
}
.whatsapp-fab.visible {
  opacity: 1; transform: scale(1);
  pointer-events: auto;
}
.whatsapp-fab:hover {
  transform: scale(1.08);
  box-shadow: 0 6px 28px rgba(37,211,102,0.45);
}

/* ========== BACK TO TOP ========== */
.back-to-top {
  position: fixed;
  bottom: 1.5rem; left: 1.5rem;
  z-index: 999;
  width: 42px; height: 42px;
  border-radius: 50%;
  background: var(--charcoal);
  color: var(--white);
  border: none;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.9rem;
  box-shadow: var(--shadow-lg);
  transition: var(--transition);
  opacity: 0; transform: translateY(10px);
  pointer-events: none;
}
.back-to-top.visible {
  opacity: 1; transform: translateY(0);
  pointer-events: auto;
}
.back-to-top:hover { background: var(--gold); color: var(--charcoal); }

/* ========== LIGHTBOX ========== */
.lightbox {
  position: fixed; inset: 0;
  z-index: 2000;
  background: rgba(0,0,0,0.85);
  backdrop-filter: blur(8px);
  display: none;
  align-items: center; justify-content: center;
  padding: 2rem;
}
.lightbox.open { display: flex; }
.lightbox-close {
  position: absolute; top: 1.5rem; right: 2rem;
  background: none; border: none;
  color: var(--white);
  font-size: 2.5rem;
  cursor: pointer;
  opacity: 0.6;
  transition: var(--transition);
}
.lightbox-close:hover { opacity: 1; }
.lightbox-content {
  max-width: 700px; width: 100%;
  aspect-ratio: 4/3;
  border-radius: var(--radius);
  background-size: cover; background-position: center;
  box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}

/* ============================================
   RESPONSIVE — Mobile First
   ============================================ */

/* Tablet & below */
@media (max-width: 1024px) {
  .about-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .about-visual { max-width: 450px; margin: 0 auto; }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .membership-grid { grid-template-columns: repeat(2, 1fr); }
  .membership-card.featured { transform: none; }
  .membership-card.featured:hover { transform: translateY(-6px); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

/* Mobile */
@media (max-width: 768px) {
  .section { padding: 4rem 0; }
  .nav-links {
    position: fixed; top: 0; right: -100%;
    width: 75%; max-width: 320px;
    height: 100vh;
    background: var(--charcoal);
    flex-direction: column;
    padding: 5rem 2rem 2rem;
    gap: 1.25rem;
    transition: var(--transition);
    box-shadow: -4px 0 24px rgba(0,0,0,0.15);
  }
  .nav-links.open { right: 0; }
  .nav-link { color: rgba(255,255,255,0.7); font-size: 1rem; }
  .scrolled .nav-link { color: rgba(255,255,255,0.7); }
  .nav-toggle { display: flex; }
  .nav-cta { display: none; }

  .hero-title { font-size: clamp(2.2rem, 10vw, 3.2rem); }
  .hero-badges { gap: 1rem; font-size: 0.75rem; }

  .services-grid { grid-template-columns: 1fr 1fr; }
  .offer-card { grid-template-columns: 1fr; }
  .offer-content { padding: 2rem; }
  .offer-visual { min-height: 200px; }

  .booking-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .ba-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); grid-template-rows: 180px 180px; }
  .gallery-item:nth-child(1) { grid-column: span 2; grid-row: span 1; }
  .membership-grid { grid-template-columns: 1fr; max-width: 400px; margin: 0 auto; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; text-align: center; }
  .footer-social { justify-content: center; }
  .about-features { grid-template-columns: 1fr; }
  .certs-row { gap: 1.25rem; }
}

/* Small mobile */
@media (max-width: 480px) {
  .services-grid { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr 1fr; grid-template-rows: 140px 140px; }
  .hero-actions { flex-direction: column; align-items: center; }
  .btn { width: 100%; max-width: 280px; }
  .booking-form { padding: 1.5rem; }
  .membership-card { padding: 1.5rem 1.25rem; }
  .testimonial-card { padding: 1.5rem; }
  .seasonal-offer { padding: 0; }
}
