/* ═══════════════════════════════════════════
   AFRICA AESTHETICS SPA — Design System
   Colors: White · Gold · Teal
   Fonts: Playfair Display · Inter
   ═══════════════════════════════════════════ */

/* ── Google Fonts ── */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;1,400;1,500&display=swap');

/* ── CSS Custom Properties ── */
:root {
  /* Brand */
  --white: #ffffff;
  --cream: #faf8f5;
  --gold: #c9a96e;
  --gold-light: #f5eedd;
  --gold-dark: #a88b4a;
  --teal: #2a9d8f;
  --teal-light: #e0f5f2;
  --teal-dark: #1f7a6f;
  --dark: #1a1a1a;
  --muted: #666666;
  --light-border: #e8e3db;
  --overlay: rgba(26, 26, 26, 0.6);

  /* Typography */
  --font-heading: 'Playfair Display', Georgia, serif;
  --font-body: 'Inter', system-ui, -apple-system, sans-serif;

  /* Spacing */
  --section-padding: 100px 0;
  --container-width: 1200px;
  --container-padding: 0 24px;

  /* Transitions */
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
  --transition: 0.3s var(--ease);

  /* Shadows */
  --shadow-sm: 0 2px 8px rgba(0,0,0,0.06);
  --shadow-md: 0 8px 30px rgba(0,0,0,0.08);
  --shadow-lg: 0 20px 60px rgba(0,0,0,0.1);
  --shadow-gold: 0 8px 30px rgba(201, 169, 110, 0.2);

  /* Radius */
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 30px;

  /* Iconify Alignment */
  --icon-size: 1.2em;
}

.iconify {
  width: var(--icon-size);
  height: var(--icon-size);
  vertical-align: -0.2em;
  display: inline-block;
}

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

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

body {
  font-family: var(--font-body);
  color: var(--dark);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

a {
  color: inherit;
  text-decoration: none;
}

ul, ol {
  list-style: none;
}

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

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

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

.section-label {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 12px;
}

.section-title {
  font-size: clamp(32px, 5vw, 48px);
  color: var(--dark);
  margin-bottom: 16px;
}

.section-subtitle {
  font-size: 16px;
  color: var(--muted);
  max-width: 560px;
  line-height: 1.7;
}

.section-subtitle.centered {
  margin: 0 auto;
}

/* ══════════════════════
   NAVIGATION
   ══════════════════════ */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(232, 227, 219, 0.6);
  transition: var(--transition);
}

.nav.scrolled {
  box-shadow: var(--shadow-sm);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  max-width: var(--container-width);
  margin: 0 auto;
  padding: var(--container-padding);
}

.nav-logo {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
}

.nav-logo img {
  height: 52px;
  width: auto;
  display: block;
  object-fit: contain;
}

/* Hide X close button on desktop — only shown in mobile sidebar */
.nav-close {
  display: none;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
}

.nav-links a {
  font-size: 14px;
  font-weight: 500;
  color: var(--muted);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--dark);
  transform: translateY(-1px);
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

.nav-links .nav-dropdown {
  position: relative;
}

.nav-links .nav-dropdown > a::after {
  display: none;
}

.nav-dropdown-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(8px);
  background: var(--white);
  border: 1px solid var(--light-border);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  padding: 12px 0;
  min-width: 200px;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
  pointer-events: none;
}

.nav-dropdown:hover .nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
  pointer-events: all;
}

.nav-dropdown-menu a {
  display: block;
  padding: 8px 20px;
  font-size: 13px;
  color: var(--muted);
  transition: var(--transition);
}

.nav-dropdown-menu a:hover {
  color: var(--dark);
  background: var(--gold-light);
}

.nav-dropdown-menu a::after {
  display: none;
}

/* Book Now button in nav */
.btn-book-nav {
  padding: 10px 24px;
  background: var(--teal);
  color: var(--white) !important;
  border-radius: var(--radius-xl);
  font-weight: 600;
  font-size: 13px;
  transition: var(--transition);
  box-shadow: 0 4px 15px rgba(42, 157, 143, 0.3);
}

.btn-book-nav:hover {
  background: var(--teal-dark);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(42, 157, 143, 0.4);
}

.btn-book-nav::after {
  display: none !important;
}

/* Mobile menu toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 6px;
  padding: 8px;
  z-index: 1001;
  width: 44px;
  height: 44px;
  border-radius: var(--radius-sm);
  background: var(--gold-light);
  border: 1px solid rgba(201, 169, 110, 0.2);
  transition: var(--transition);
}

.nav-toggle span {
  display: block;
  height: 2px;
  background: var(--gold-dark);
  transition: var(--transition);
  border-radius: 4px;
}

.nav-toggle span:nth-child(1) { width: 24px; }
.nav-toggle span:nth-child(2) { width: 18px; margin-left: auto; }
.nav-toggle span:nth-child(3) { width: 24px; }

.nav-toggle:hover {
  background: var(--gold);
}

.nav-toggle:hover span {
  background: var(--white);
}

.nav-toggle.open {
  background: var(--dark);
  border-color: var(--dark);
}

.nav-toggle.open span {
  background: var(--white);
  width: 24px !important;
  margin-left: 0 !important;
}

.nav-toggle.open span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.nav-toggle.open span:nth-child(2) {
  opacity: 0;
  transform: translateX(10px);
}

.nav-toggle.open span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

/* ══════════════════════
   HERO SECTION
   ══════════════════════ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, var(--cream) 0%, var(--white) 50%, var(--teal-light) 100%);
  overflow: hidden;
  padding-top: 72px;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 700px;
  height: 700px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201,169,110,0.12) 0%, transparent 70%);
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -10%;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(42,157,143,0.08) 0%, transparent 70%);
  pointer-events: none;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-content {
  padding: 40px 0;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  background: var(--gold-light);
  border: 1px solid rgba(201, 169, 110, 0.3);
  border-radius: var(--radius-xl);
  font-size: 12px;
  font-weight: 600;
  color: var(--gold-dark);
  margin-bottom: 24px;
  letter-spacing: 0.5px;
}

.hero h1 {
  font-size: clamp(40px, 6vw, 64px);
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 20px;
  color: var(--dark);
}

.hero h1 em {
  color: var(--gold);
  font-style: italic;
}

.hero-text {
  font-size: 17px;
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 36px;
  max-width: 480px;
}

.hero-cta {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

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

.hero-image-wrapper {
  width: 100%;
  max-width: 500px;
  aspect-ratio: 4/5;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  position: relative;
}

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

.hero-float-card {
  position: absolute;
  background: rgba(255,255,255,0.9);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(232, 227, 219, 0.5);
  border-radius: var(--radius-md);
  padding: 14px 18px;
  box-shadow: var(--shadow-md);
  animation: float 3s ease-in-out infinite;
}

.hero-float-card.card-1 {
  bottom: 30px;
  left: -30px;
}

.hero-float-card.card-2 {
  top: 40px;
  right: -20px;
  animation-delay: 1.5s;
}

.hero-float-card .card-icon {
  font-size: 20px;
  margin-bottom: 4px;
}

.hero-float-card .card-title {
  font-size: 13px;
  font-weight: 600;
}

.hero-float-card .card-text {
  font-size: 11px;
  color: var(--muted);
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

/* ══════════════════════
   BUTTONS
   ══════════════════════ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 32px;
  font-size: 14px;
  font-weight: 600;
  border-radius: var(--radius-xl);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  white-space: nowrap;
  cursor: pointer;
}

.btn:hover {
  transform: translateY(-3px) scale(1.02);
}

.btn:active {
  transform: translateY(-1px) scale(0.98);
}

.btn-primary {
  background: var(--teal);
  color: var(--white);
  box-shadow: 0 4px 20px rgba(42, 157, 143, 0.3);
}

.btn-primary:hover {
  background: var(--teal-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(42, 157, 143, 0.4);
}

.btn-secondary {
  background: transparent;
  color: var(--dark);
  border: 1.5px solid var(--light-border);
}

.btn-secondary:hover {
  border-color: var(--gold);
  color: var(--gold-dark);
  transform: translateY(-2px);
}

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

.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 35px rgba(201, 169, 110, 0.35);
}

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

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

/* ══════════════════════
   SECTIONS
   ══════════════════════ */
section {
  padding: var(--section-padding);
}

.section-light {
  background: var(--white);
}

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

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

.section-dark .section-label {
  color: var(--gold);
}

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

.section-dark .section-subtitle {
  color: rgba(255,255,255,0.65);
}

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

/* ══════════════════════
   SERVICE CARDS
   ══════════════════════ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  margin-top: 48px;
}

.service-card {
  position: relative;
  background: var(--white);
  border: 1px solid var(--light-border);
  border-radius: var(--radius-md);
  padding: 0;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gold);
  transform: scaleX(0);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 10;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 32px rgba(0,0,0,0.08);
  border-color: rgba(201, 169, 110, 0.4);
}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-card-image {
  width: 100%;
  aspect-ratio: 4/3;
  overflow: hidden;
  position: relative;
  border-bottom: 1px solid var(--light-border);
}

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

.service-card:hover .service-card-image img {
  transform: scale(1.1);
}

.service-card-content {
  padding: 24px 24px 28px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.service-card h3 {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 8px;
}

.service-card p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.6;
  margin-bottom: 20px;
}

.service-card .card-link {
  font-size: 13px;
  font-weight: 600;
  color: var(--teal);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: var(--transition);
}

.service-card .card-link:hover {
  gap: 10px;
}

/* ══════════════════════
   TRUST / CPD SECTION
   ══════════════════════ */
.trust-bar {
  display: flex;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
  padding: 40px 0;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  color: var(--muted);
}

.trust-item .trust-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--teal-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
}

.trust-item strong {
  display: block;
  color: var(--dark);
  font-weight: 600;
}

/* ══════════════════════
   TEAM SECTION
   ══════════════════════ */
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  margin-top: 40px;
}

.team-card {
  background: var(--white);
  border: 1px solid var(--light-border);
  border-radius: var(--radius-md);
  padding: 28px 24px;
  text-align: center;
  transition: var(--transition);
}

.team-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.team-avatar {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-light), var(--teal-light));
  margin: 0 auto 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 64px;
  overflow: hidden;
}

.team-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.team-card h4 {
  font-family: var(--font-heading);
  font-size: 17px;
  margin-bottom: 4px;
}

.team-card .team-role {
  font-size: 13px;
  color: var(--teal);
  font-weight: 500;
  margin-bottom: 8px;
}

.team-card .team-avail {
  font-size: 12px;
  color: var(--muted);
}

/* ══════════════════════
   CTA BANNER
   ══════════════════════ */
.cta-banner {
  background: linear-gradient(135deg, var(--dark) 0%, #2c2c2c 50%, var(--dark) 100%);
  border-radius: var(--radius-lg);
  padding: 64px 48px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle at 30% 50%, rgba(201,169,110,0.08) 0%, transparent 50%),
              radial-gradient(circle at 70% 50%, rgba(42,157,143,0.06) 0%, transparent 50%);
  pointer-events: none;
}

.cta-banner h2 {
  font-size: clamp(28px, 4vw, 40px);
  color: var(--white);
  margin-bottom: 12px;
  position: relative;
}

.cta-banner p {
  color: rgba(255,255,255,0.6);
  font-size: 16px;
  margin-bottom: 32px;
  position: relative;
}

.cta-banner .btn {
  position: relative;
}

/* ══════════════════════
   GALLERY GRID
   ══════════════════════ */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 16px;
  margin-top: 40px;
}

.gallery-item {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  aspect-ratio: 1;
  background: var(--cream);
  cursor: pointer;
}

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

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

.gallery-item .gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(26,26,26,0.7) 0%, transparent 50%);
  display: flex;
  align-items: flex-end;
  padding: 20px;
  opacity: 0;
  transition: var(--transition);
}

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

.gallery-overlay span {
  color: white;
  font-size: 14px;
  font-weight: 500;
}

/* ══════════════════════
   CONTACT & FORMS
   ══════════════════════ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  margin-top: 48px;
}

.contact-info-item {
  display: flex;
  gap: 16px;
  margin-bottom: 28px;
}

.contact-info-item .info-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-sm);
  background: var(--gold-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
}

.contact-info-item h4 {
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 4px;
}

.contact-info-item p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.5;
}

.form-group {
  margin-bottom: 18px;
}

.form-group label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 6px;
  color: var(--dark);
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--light-border);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--dark);
  background: var(--white);
  transition: var(--transition);
  outline: none;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(42, 157, 143, 0.1);
}

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

/* ══════════════════════
   BOOKING PAGE
   ══════════════════════ */
.booking-steps {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin: 40px 0;
  flex-wrap: wrap;
}

.booking-step {
  text-align: center;
  max-width: 200px;
}

.booking-step .step-number {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--white);
  font-weight: 700;
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 14px;
}

.booking-step h4 {
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 6px;
}

.booking-step p {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.5;
}

.booking-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 16px;
  margin-top: 40px;
}

.booking-service-card {
  background: var(--white);
  border: 2px solid var(--light-border);
  border-radius: var(--radius-md);
  padding: 24px;
  cursor: pointer;
  transition: var(--transition);
}

.booking-service-card:hover,
.booking-service-card.selected {
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(42, 157, 143, 0.1);
}

.deposit-notice {
  background: var(--gold-light);
  border: 1px solid rgba(201,169,110,0.3);
  border-radius: var(--radius-md);
  padding: 20px 24px;
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 32px;
}

.deposit-notice .notice-icon {
  font-size: 24px;
  flex-shrink: 0;
}

.deposit-notice p {
  font-size: 14px;
  color: var(--dark);
  line-height: 1.5;
}

.deposit-notice strong {
  color: var(--gold-dark);
}

/* ══════════════════════
   SERVICE DETAIL PAGE
   ══════════════════════ */
.page-hero {
  padding: 140px 0 80px;
  background: linear-gradient(135deg, var(--cream) 0%, var(--white) 100%);
  text-align: center;
  position: relative;
  overflow: hidden;
}

/* When page-hero has an inline background image, force all text white */
.page-hero[style] .section-label,
.page-hero[style] .section-title,
.page-hero[style] .section-subtitle,
.page-hero[style] .breadcrumb,
.page-hero[style] .breadcrumb a {
  color: white !important;
}

.page-hero[style] .section-label {
  background: rgba(255,255,255,0.15);
  padding: 4px 14px;
  border-radius: 20px;
  display: inline-block;
}

.page-hero[style] .breadcrumb a {
  opacity: 0.8;
}

@media (max-width: 768px) {
  .page-hero {
    padding: 120px 0 60px;
    background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), url('../images/hero_main.jpg') center/cover no-repeat;
    color: white;
  }
  
  .page-hero .section-title,
  .page-hero .section-subtitle,
  .page-hero .breadcrumb,
  .page-hero .breadcrumb a {
    color: white !important;
  }
  
  .page-hero .breadcrumb a { opacity: 0.8; }
}

.page-hero .breadcrumb {
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 16px;
}

.page-hero .breadcrumb a {
  color: var(--teal);
  transition: var(--transition);
}

.page-hero .breadcrumb a:hover {
  color: var(--teal-dark);
}

.treatments-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 24px;
  margin-top: 48px;
}

.treatment-card {
  background: var(--white);
  border: 1px solid var(--light-border);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: var(--transition);
}

.treatment-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.treatment-card-img {
  height: 200px;
  background: var(--cream);
  overflow: hidden;
}

.treatment-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
}

.treatment-card:hover .treatment-card-img img {
  transform: scale(1.05);
}

.treatment-card-body {
  padding: 24px;
}

.treatment-card h3 {
  font-size: 20px;
  margin-bottom: 8px;
}

.treatment-card p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.6;
  margin-bottom: 16px;
}

/* ══════════════════════
   FOOTER
   ══════════════════════ */
.footer {
  background: var(--dark);
  color: rgba(255,255,255,0.6);
  padding: 80px 0 32px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 60px;
}

.footer-brand {
  margin-bottom: 16px;
}

.footer-brand img {
  height: 64px;
  width: auto;
  display: block;
  object-fit: contain;
}

.footer-desc {
  font-size: 14px;
  line-height: 1.7;
  max-width: 300px;
}

.footer h5 {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--white);
  margin-bottom: 20px;
}

.footer ul li {
  margin-bottom: 10px;
}

.footer ul li a {
  font-size: 14px;
  color: rgba(255,255,255,0.5);
  transition: var(--transition);
}

.footer ul li a:hover {
  color: var(--gold);
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 13px;
}

.footer-bottom a {
  color: rgba(255,255,255,0.4);
  transition: var(--transition);
}

.footer-bottom a:hover {
  color: var(--gold);
}

.developer-credit {
  flex: 1 1 100%;
  margin-top: 10px;
  opacity: 0.8;
}

.developer-credit a {
  color: var(--gold) !important;
  font-weight: 600;
  text-decoration: underline !important;
}

@media (max-width: 768px) {
  .footer-bottom {
    flex-direction: column;
    text-align: center;
    gap: 16px;
  }
  
  .developer-credit {
    margin-top: 0;
  }
}

/* ══════════════════════
   COOKIE BANNER
   ══════════════════════ */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--dark);
  color: rgba(255,255,255,0.8);
  padding: 20px 24px;
  z-index: 9999;
  transform: translateY(100%);
  transition: transform 0.4s var(--ease);
  box-shadow: 0 -4px 20px rgba(0,0,0,0.15);
}

.cookie-banner.visible {
  transform: translateY(0);
}

.cookie-inner {
  max-width: var(--container-width);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.cookie-text {
  font-size: 13px;
  line-height: 1.6;
  flex: 1;
  min-width: 280px;
}

.cookie-text a {
  color: var(--gold);
  text-decoration: underline;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
}

.cookie-accept {
  padding: 10px 24px;
  background: var(--teal);
  color: var(--white);
  border-radius: var(--radius-xl);
  font-size: 13px;
  font-weight: 600;
  transition: var(--transition);
}

.cookie-accept:hover {
  background: var(--teal-dark);
}

.cookie-decline {
  padding: 10px 24px;
  background: transparent;
  color: rgba(255,255,255,0.6);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: var(--radius-xl);
  font-size: 13px;
  font-weight: 500;
  transition: var(--transition);
}

.cookie-decline:hover {
  border-color: rgba(255,255,255,0.5);
  color: var(--white);
}

/* ══════════════════════
   COOKIE POLICY PAGE
   ══════════════════════ */
.legal-content {
  max-width: 780px;
  margin: 0 auto;
  padding: 40px 0 80px;
}

.legal-content h2 {
  font-size: 24px;
  margin: 40px 0 12px;
  color: var(--dark);
}

.legal-content h3 {
  font-size: 18px;
  margin: 28px 0 10px;
  color: var(--dark);
}

.legal-content p {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.8;
  margin-bottom: 16px;
}

.legal-content ul {
  margin: 0 0 16px 20px;
  list-style: disc;
}

.legal-content ul li {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.8;
  margin-bottom: 6px;
}

.legal-content table {
  width: 100%;
  border-collapse: collapse;
  margin: 16px 0 24px;
  font-size: 14px;
}

.legal-content table th,
.legal-content table td {
  text-align: left;
  padding: 12px 16px;
  border: 1px solid var(--light-border);
}

.legal-content table th {
  background: var(--cream);
  font-weight: 600;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.legal-content table td {
  color: var(--muted);
}

/* ══════════════════════
   SCROLL ANIMATIONS
   ══════════════════════ */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s var(--ease), transform 0.6s var(--ease);
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 968px) {
  .hero {
    min-height: 80vh;
    padding-top: 0;
  }

  .hero-inner {
    grid-template-columns: 1fr;
    text-align: center;
    height: 100%;
    min-height: 80vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    padding: 80px 24px;
    z-index: 10;
  }

  .hero-content {
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    padding: 30px 20px;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: white;
  }

  .hero-content h1, 
  .hero-content .hero-text {
    color: white;
  }

  .hero-content .hero-badge {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    border-color: rgba(255, 255, 255, 0.3);
  }

  .hero-content .btn-secondary {
    color: white !important;
    border-color: rgba(255, 255, 255, 0.4) !important;
  }
  
  .hero-content .btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: white !important;
  }

  .hero-image {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    margin-top: 0;
    border-radius: 0;
  }

  .hero-image-wrapper {
    width: 100%;
    height: 100%;
    max-width: none;
    border-radius: 0;
    box-shadow: none;
  }

  .hero-image::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0.3) 0%, rgba(0,0,0,0.6) 100%);
  }

  .hero-float-card {
    display: none; /* Hide floating cards on mobile overlay for cleaner look */
  }

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

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

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

  .nav-links {
    position: fixed;
    top: 0;
    right: 0;
    width: 300px;
    height: 100vh !important;
    min-height: 100vh !important;
    max-height: 100vh !important;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    flex-direction: column;
    padding: 100px 32px 60px;
    gap: 8px;
    box-shadow: -10px 0 40px rgba(0,0,0,0.1);
    transform: translateX(101%);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    align-items: flex-start;
    overflow-y: auto;
    border-left: 1px solid var(--light-border);
    z-index: 2000;
  }

  .nav-close {
    position: absolute;
    top: 24px;
    right: 24px;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: var(--dark);
    background: var(--gold-light);
    border-radius: 50%;
    border: 1px solid rgba(201,169,110,0.2);
    cursor: pointer;
    transition: var(--transition);
  }

  .nav-close:hover {
    background: var(--gold);
    color: var(--white);
    transform: rotate(90deg);
  }

  .nav-links::after {
    content: 'Africa Aesthetics Spa';
    margin-top: auto;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--gold);
    opacity: 0.5;
    padding-top: 40px;
  }

  .nav-links.open {
    transform: translateX(0);
  }

  .nav-links a {
    font-size: 16px;
    padding: 12px 0;
    width: 100%;
    border-bottom: 1px solid var(--light-border);
  }

  .nav-links a::after {
    display: none;
  }

  .btn-book-nav {
    margin-top: 16px;
    text-align: center;
    justify-content: center;
    width: 100%;
  }

  .nav-toggle {
    display: flex;
  }

  .nav-close {
    display: flex;
    align-items: center;
    justify-content: center;
    align-self: flex-end;
    margin-bottom: 8px;
  }

  .nav-dropdown-menu {
    position: static;
    transform: none;
    box-shadow: none;
    border: none;
    padding: 0 0 0 12px;
    opacity: 1;
    visibility: visible;
    pointer-events: all;
    display: none;
  }

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

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

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

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .booking-steps {
    flex-direction: column;
    align-items: center;
  }

  .cta-banner {
    padding: 48px 24px;
  }
}

@media (max-width: 480px) {
  .trust-bar {
    flex-direction: column;
    gap: 20px;
  }

  .cookie-inner {
    flex-direction: column;
    text-align: center;
  }
}

/* ══════════════════════
   FOOTER CONTACT INFO
   ══════════════════════ */
.footer-contact-info {
  margin-top: 16px;
}

.footer-contact-info p {
  font-size: 13px;
  color: rgba(255,255,255,0.6);
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 7px;
}

.footer-contact-info p a {
  color: rgba(255,255,255,0.6);
  transition: color 0.2s;
}

.footer-contact-info p a:hover {
  color: var(--gold);
}

.footer-contact-info .iconify {
  color: var(--gold);
  flex-shrink: 0;
}

/* ══════════════════════
   FLOATING ACTION BUTTONS
   ══════════════════════ */
.floating-buttons {
  position: fixed;
  bottom: 24px;
  right: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 9000;
}

.fab-whatsapp,
.fab-top {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  cursor: pointer;
  box-shadow: 0 4px 16px rgba(0,0,0,0.18);
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease);
  border: none;
  text-decoration: none;
  color: #fff;
}

.fab-whatsapp {
  background: #25D366;
  animation: waPulse 2.5s infinite;
}

.fab-top {
  background: var(--gold);
}

.fab-whatsapp:hover,
.fab-top:hover {
  transform: translateY(-3px) scale(1.06);
  box-shadow: 0 8px 24px rgba(0,0,0,0.22);
  color: #fff;
}

@keyframes waPulse {
  0%,100% { box-shadow: 0 4px 16px rgba(37,211,102,0.4); }
  50%      { box-shadow: 0 4px 28px rgba(37,211,102,0.7); }
}

/* ══════════════════════
   MOBILE OPTIMIZATIONS
   ══════════════════════ */
@media (max-width: 768px) {
  .nav-logo img { height: 44px; }

  .floating-buttons { bottom: 20px; right: 16px; gap: 10px; }
  .fab-whatsapp, .fab-top { width: 48px; height: 48px; font-size: 22px; }

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

  .section-subtitle { font-size: 15px; }
  .treatment-card-body h3 { font-size: 18px; }

  .hero {
    background: linear-gradient(rgba(0,0,0,0.48), rgba(0,0,0,0.48)), url('../images/hero_main.jpg') center/cover no-repeat !important;
    min-height: 100vh;
  }
  .hero::before, .hero::after { display: none; }
  .hero-inner { grid-template-columns: 1fr; gap: 0; text-align: center; }
  .hero-image { display: none; }
  .hero-cta { justify-content: center; }
  .hero h1, .hero-text { color: white !important; }
  .hero h1 em { color: var(--gold) !important; }
  .hero-badge { background: rgba(255,255,255,0.15); border-color: rgba(255,255,255,0.25); color: var(--gold-light); }
}

@media (max-width: 480px) {
  .btn, .btn-book-nav { min-height: 48px; font-size: 14px; }
  .btn-outline-teal { width: 100%; justify-content: center; }
  .fab-whatsapp, .fab-top { width: 46px; height: 46px; font-size: 20px; }
  .floating-buttons { bottom: 16px; right: 12px; }
}
