/* css/style.css – Evitalis Clinic Beauty */

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

:root {
  --cream:      #FAF7F2;
  --beige:      #EDE5D8;
  --beige-mid:  #D9CDBF;
  --sand:       #C4B49A;
  --gold:       #B5956A;
  --gold-dark:  #8B6F47;
  --white:      #FFFFFF;
  --text-dark:  #2C2416;
  --text-mid:   #5C4E3A;
  --text-light: #8A7B6A;
  --green:      #4A7C59;
  --error:      #C0392B;
  --success:    #27AE60;
  --shadow-sm:  0 2px 8px rgba(44,36,22,0.08);
  --shadow-md:  0 6px 24px rgba(44,36,22,0.12);
  --shadow-lg:  0 16px 48px rgba(44,36,22,0.16);
  --radius:     12px;
  --radius-lg:  20px;
  --transition: 0.3s ease;
  --header-h:   72px;
  --font-serif: 'Playfair Display', Georgia, serif;
  --font-sans:  'Lato', Helvetica, Arial, sans-serif;
}

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

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-sans);
  background: var(--cream);
  color: var(--text-dark);
  line-height: 1.7;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--gold-dark); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--gold); }
ul { list-style: none; }

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4, h5 {
  font-family: var(--font-serif);
  color: var(--text-dark);
  line-height: 1.25;
}

.section-title {
  font-size: clamp(1.6rem, 4vw, 2.6rem);
  font-weight: 700;
  text-align: center;
  margin-bottom: 0.5rem;
  color: var(--text-dark);
}
.section-subtitle {
  text-align: center;
  color: var(--text-light);
  font-size: 1rem;
  margin-bottom: 3rem;
  font-style: italic;
}
.section-divider {
  width: 60px;
  height: 2px;
  background: var(--gold);
  margin: 0.8rem auto 0.5rem;
}

/* ===== LAYOUT ===== */
.container {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 clamp(12px, 4vw, 40px);
}

section { padding: clamp(40px, 8vw, 90px) 0; }

/* ===== HEADER ===== */
#site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--header-h);
  background: rgba(250,247,242,0.97);
  backdrop-filter: blur(8px);
  box-shadow: 0 1px 0 var(--beige-mid);
  display: flex;
  align-items: center;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

/* Language switcher in top bar */
.header-lang {
  display: flex;
  align-items: center;
  gap: 4px;
}

.logo img {
  height: clamp(36px, 6vw, 52px);
  width: auto;
}

/* Hamburger */
.hamburger {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 28px; height: 20px;
  cursor: pointer;
  z-index: 1100;
  background: none;
  border: none;
  padding: 0;
}
.hamburger span {
  display: block;
  height: 2px;
  background: var(--text-dark);
  border-radius: 2px;
  transition: all 0.35s ease;
  transform-origin: center;
}
.hamburger.open span:nth-child(1) { transform: translateY(9px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: translateY(-9px) rotate(-45deg); }

/* Nav overlay */
.nav-overlay {
  position: fixed;
  inset: 0;
  background: rgba(44,36,22,0.5);
  z-index: 900;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}
.nav-overlay.show { opacity: 1; pointer-events: all; }

/* Nav drawer */
#main-nav {
  position: fixed;
  top: 0; right: -320px;
  width: min(320px, 85vw);
  height: 100vh;
  background: var(--white);
  z-index: 1050;
  transition: right 0.4s cubic-bezier(0.25,0.46,0.45,0.94);
  display: flex;
  flex-direction: column;
  padding: calc(var(--header-h) + 20px) 0 40px;
  overflow-y: auto;
  box-shadow: -4px 0 24px rgba(44,36,22,0.12);
}
#main-nav.open { right: 0; }

#main-nav ul { flex: 1; }
#main-nav ul li a {
  display: block;
  padding: 14px 32px;
  font-family: var(--font-sans);
  font-size: 1rem;
  letter-spacing: 0.04em;
  color: var(--text-dark);
  border-bottom: 1px solid var(--beige);
  transition: background var(--transition), color var(--transition);
}
#main-nav ul li a:hover {
  background: var(--cream);
  color: var(--gold-dark);
}

.nav-user-area {
  padding: 20px 32px;
  border-top: 1px solid var(--beige);
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.nav-lang {
  display: flex;
  gap: 8px;
  padding: 16px 32px;
  border-top: 1px solid var(--beige);
  flex-wrap: wrap;
}
.lang-btn {
  padding: 5px 12px;
  border: 1px solid var(--beige-mid);
  border-radius: 4px;
  font-size: 0.8rem;
  letter-spacing: 0.06em;
  cursor: pointer;
  color: var(--text-mid);
  background: var(--cream);
  transition: all var(--transition);
  text-transform: uppercase;
  font-weight: 700;
}
.lang-btn.active, .lang-btn:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--white);
}

/* ===== HERO / BANNER ===== */
#hero {
  margin-top: var(--header-h);
  position: relative;
  width: 100%;
  min-height: clamp(320px, 60vh, 680px);
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--beige);
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #E8DDD0 0%, #F5EDE0 50%, #EDE0CC 100%);
}
.hero-bg img {
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0.45;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(250,247,242,0.85) 40%, rgba(250,247,242,0.2) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 600px;
  padding: clamp(40px, 8vw, 80px) 0;
}
.hero-content h1 {
  font-size: clamp(1.8rem, 5vw, 3.5rem);
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 1rem;
  line-height: 1.2;
}
.hero-content p {
  font-size: clamp(0.95rem, 2vw, 1.15rem);
  color: var(--text-mid);
  margin-bottom: 2rem;
  max-width: 480px;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 28px;
  border-radius: 6px;
  font-family: var(--font-sans);
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  cursor: pointer;
  transition: all var(--transition);
  border: 2px solid transparent;
  text-transform: uppercase;
}
.btn-primary {
  background: var(--gold-dark);
  color: var(--white);
  border-color: var(--gold-dark);
}
.btn-primary:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(139,111,71,0.35);
}
.btn-outline {
  background: transparent;
  color: var(--gold-dark);
  border-color: var(--gold-dark);
}
.btn-outline:hover {
  background: var(--gold-dark);
  color: var(--white);
}
.btn-sm { padding: 8px 18px; font-size: 0.82rem; }
.btn-danger { background: var(--error); color: #fff; border-color: var(--error); }
.btn-success { background: var(--success); color: #fff; border-color: var(--success); }
.btn-block { width: 100%; justify-content: center; }

/* ===== ABOUT SECTION ===== */
#about { background: var(--white); }
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(24px, 5vw, 64px);
  align-items: center;
}
.about-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4/5;
}
.about-image img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.about-image:hover img { transform: scale(1.04); }
.about-text .section-title { text-align: left; }
.about-text .section-divider { margin: 0.8rem 0 1.5rem; }
.about-text p {
  color: var(--text-mid);
  font-size: clamp(0.9rem, 1.8vw, 1rem);
  line-height: 1.8;
}

/* ===== TEAM ===== */
#team { background: var(--cream); }
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(240px, 100%), 1fr));
  gap: clamp(16px, 3vw, 32px);
}
.team-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  text-align: center;
  transition: transform var(--transition), box-shadow var(--transition);
}
.team-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}
.team-card-img {
  aspect-ratio: 1;
  overflow: hidden;
}
.team-card-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.team-card:hover .team-card-img img { transform: scale(1.08); }
.team-card-body { padding: 20px 16px 24px; }
.team-card-body h3 {
  font-size: 1.05rem;
  margin-bottom: 4px;
  color: var(--text-dark);
}
.team-card-body .role {
  font-size: 0.82rem;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 10px;
}
.team-card-body p { font-size: 0.88rem; color: var(--text-light); }

/* ===== THERAPIES ===== */
#therapies { background: var(--beige); }
.therapies-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(280px, 100%), 1fr));
  gap: clamp(16px, 3vw, 32px);
}
.therapy-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition);
}
.therapy-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}
.therapy-card-img {
  aspect-ratio: 16/9;
  overflow: hidden;
}
.therapy-card-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.therapy-card:hover .therapy-card-img img { transform: scale(1.06); }
.therapy-card-body { padding: 20px 22px 24px; }
.therapy-card-body h3 {
  font-size: 1.1rem;
  margin-bottom: 8px;
  color: var(--text-dark);
}
.therapy-card-body p { font-size: 0.9rem; color: var(--text-mid); }

/* ===== REVIEWS ===== */
#reviews { background: var(--white); }
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(280px, 100%), 1fr));
  gap: clamp(16px, 3vw, 28px);
  margin-bottom: 2rem;
}
.review-card {
  background: var(--cream);
  border-radius: var(--radius);
  padding: clamp(16px, 3vw, 28px);
  border: 1px solid var(--beige-mid);
  position: relative;
}
.review-card::before {
  content: '"';
  position: absolute;
  top: 12px; left: 20px;
  font-family: var(--font-serif);
  font-size: 3.5rem;
  color: var(--beige-mid);
  line-height: 1;
}
.review-stars { color: var(--gold); font-size: 1.1rem; margin-bottom: 10px; }
.review-stars .star { opacity: 0.3; }
.review-stars .star.filled { opacity: 1; }
.review-text { color: var(--text-mid); font-size: 0.92rem; margin-bottom: 14px; }
.review-author {
  font-weight: 700;
  font-size: 0.88rem;
  color: var(--text-dark);
}
.review-date { font-size: 0.78rem; color: var(--text-light); }

.add-review-box { text-align: center; }

/* ===== CONTACT ===== */
#contact { background: var(--cream); }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(24px, 5vw, 64px);
}
.contact-form-box h3 {
  font-size: 1.4rem;
  margin-bottom: 1.5rem;
}

/* Form */
.form-group { margin-bottom: 18px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
label {
  display: block;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-mid);
  margin-bottom: 6px;
}
input[type=text], input[type=email], input[type=tel],
input[type=password], textarea, select {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--beige-mid);
  border-radius: 8px;
  background: var(--white);
  color: var(--text-dark);
  font-family: var(--font-sans);
  font-size: 0.95rem;
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
  -webkit-appearance: none;
}
input:focus, textarea:focus, select:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(181,149,106,0.18);
}
textarea { resize: vertical; min-height: 120px; }

/* Map & Info */
.contact-info-box h3 { font-size: 1.4rem; margin-bottom: 1.5rem; }
.map-container {
  border-radius: var(--radius);
  overflow: hidden;
  margin-bottom: 24px;
  box-shadow: var(--shadow-sm);
}
.map-container iframe {
  width: 100%; height: 250px;
  border: none; display: block;
}
.contact-details { display: flex; flex-direction: column; gap: 14px; }
.contact-item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  font-size: 0.92rem;
  color: var(--text-mid);
}
.contact-icon {
  width: 36px; height: 36px;
  background: var(--beige);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1rem;
}
.hours-grid {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 4px 16px;
  margin-top: 16px;
  font-size: 0.9rem;
}
.hours-grid .day { color: var(--text-mid); }
.hours-grid .time { color: var(--text-dark); font-weight: 700; }

/* ===== FOOTER ===== */
footer {
  background: var(--text-dark);
  color: rgba(255,255,255,0.6);
  text-align: center;
  padding: 28px 0;
  font-size: 0.82rem;
}
footer a { color: var(--gold); }

/* ===== ALERTS ===== */
.alert {
  padding: 14px 20px;
  border-radius: 8px;
  margin-bottom: 18px;
  font-size: 0.92rem;
}
.alert-success { background: #d4edda; color: #155724; }
.alert-error { background: #f8d7da; color: #721c24; }
.alert-info { background: #d1ecf1; color: #0c5460; }

/* ===== AUTH PAGES ===== */
.auth-page {
  min-height: 100vh;
  background: var(--cream);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 100px 16px 40px;
}
.auth-box {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: clamp(28px, 6vw, 48px);
  width: 100%;
  max-width: 440px;
  box-shadow: var(--shadow-md);
}
.auth-box h1 {
  font-size: 1.8rem;
  margin-bottom: 0.4rem;
}
.auth-box .subtitle {
  color: var(--text-light);
  font-size: 0.9rem;
  margin-bottom: 2rem;
}
.auth-divider {
  text-align: center;
  position: relative;
  margin: 20px 0;
  color: var(--text-light);
  font-size: 0.82rem;
}
.auth-divider::before, .auth-divider::after {
  content: '';
  position: absolute;
  top: 50%;
  width: 40%;
  height: 1px;
  background: var(--beige-mid);
}
.auth-divider::before { left: 0; }
.auth-divider::after { right: 0; }
.google-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  padding: 12px;
  border: 1.5px solid var(--beige-mid);
  border-radius: 8px;
  background: var(--white);
  cursor: pointer;
  font-size: 0.92rem;
  font-family: var(--font-sans);
  color: var(--text-dark);
  transition: all var(--transition);
  margin-bottom: 16px;
}
.google-btn:hover { background: var(--cream); border-color: var(--gold); }

/* ===== ADMIN PANEL ===== */
.admin-layout {
  display: flex;
  min-height: 100vh;
}
.admin-sidebar {
  width: 260px;
  background: var(--text-dark);
  color: var(--white);
  display: flex;
  flex-direction: column;
  flex-shrink: 0;
  position: fixed;
  top: 0; left: 0;
  height: 100vh;
  overflow-y: auto;
  z-index: 200;
  transition: transform 0.3s ease;
}
.admin-sidebar-logo {
  padding: 24px 20px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  font-family: var(--font-serif);
  font-size: 1rem;
  color: var(--gold);
}
.admin-sidebar nav a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 13px 20px;
  color: rgba(255,255,255,0.7);
  font-size: 0.9rem;
  border-left: 3px solid transparent;
  transition: all var(--transition);
}
.admin-sidebar nav a:hover, .admin-sidebar nav a.active {
  background: rgba(255,255,255,0.07);
  color: var(--white);
  border-left-color: var(--gold);
}
.admin-sidebar nav a .icon { font-size: 1.1rem; width: 22px; text-align: center; }
.admin-main {
  margin-left: 260px;
  flex: 1;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}
.admin-topbar {
  background: var(--white);
  border-bottom: 1px solid var(--beige-mid);
  padding: 16px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: sticky;
  top: 0;
  z-index: 100;
}
.admin-topbar h2 { font-size: 1.2rem; }
.admin-content { padding: clamp(20px, 4vw, 36px); flex: 1; }

.admin-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: clamp(16px, 3vw, 28px);
  box-shadow: var(--shadow-sm);
  margin-bottom: 24px;
}
.admin-card h3 {
  font-size: 1.1rem;
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--beige);
}

.admin-stats {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(180px, 100%), 1fr));
  gap: 16px;
  margin-bottom: 28px;
}
.stat-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 20px;
  box-shadow: var(--shadow-sm);
  text-align: center;
}
.stat-card .stat-num {
  font-family: var(--font-serif);
  font-size: 2rem;
  color: var(--gold-dark);
}
.stat-card .stat-label {
  font-size: 0.8rem;
  color: var(--text-light);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

/* Admin table */
.table-wrap { overflow-x: auto; }
table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9rem;
}
th {
  text-align: left;
  padding: 10px 14px;
  border-bottom: 2px solid var(--beige);
  color: var(--text-mid);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  background: var(--cream);
}
td {
  padding: 10px 14px;
  border-bottom: 1px solid var(--beige);
  color: var(--text-mid);
  vertical-align: middle;
}
tr:last-child td { border-bottom: none; }
tr:hover td { background: var(--cream); }

.badge {
  display: inline-block;
  padding: 3px 10px;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 700;
}
.badge-pending { background: #FFF3CD; color: #856404; }
.badge-approved { background: #D4EDDA; color: #155724; }
.badge-rejected { background: #F8D7DA; color: #721C24; }
.badge-admin { background: var(--beige); color: var(--gold-dark); }
.badge-user { background: #e8f4f8; color: #2980b9; }
.badge-blocked { background: #F8D7DA; color: #721C24; }

/* Admin tabs */
.admin-tabs {
  display: flex;
  gap: 4px;
  border-bottom: 2px solid var(--beige);
  margin-bottom: 24px;
  flex-wrap: wrap;
}
.tab-btn {
  padding: 10px 20px;
  border: none;
  background: none;
  cursor: pointer;
  font-family: var(--font-sans);
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--text-light);
  border-bottom: 2px solid transparent;
  margin-bottom: -2px;
  transition: all var(--transition);
}
.tab-btn.active, .tab-btn:hover {
  color: var(--gold-dark);
  border-bottom-color: var(--gold-dark);
}
.tab-content { display: none; }
.tab-content.active { display: block; }

/* Mobile admin toggle */
.admin-mobile-toggle {
  display: none;
  position: fixed;
  top: 16px; left: 16px;
  z-index: 300;
  background: var(--text-dark);
  color: var(--white);
  border: none;
  border-radius: 6px;
  padding: 8px 12px;
  cursor: pointer;
  font-size: 1.2rem;
}

/* Star rating input */
.star-input { display: flex; flex-direction: row-reverse; gap: 4px; margin-bottom: 8px; }
.star-input input { display: none; }
.star-input label {
  cursor: pointer;
  font-size: 2rem;
  color: var(--beige-mid);
  text-transform: none;
  letter-spacing: 0;
  transition: color var(--transition);
}
.star-input input:checked ~ label,
.star-input label:hover,
.star-input label:hover ~ label {
  color: var(--gold);
}

/* Unread badge */
.unread-badge {
  background: var(--error);
  color: white;
  border-radius: 50%;
  width: 18px; height: 18px;
  font-size: 0.65rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-left: 6px;
  font-weight: 700;
}

/* Image preview */
.img-preview {
  width: 80px; height: 80px;
  object-fit: cover;
  border-radius: 8px;
  border: 1px solid var(--beige-mid);
}

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

/* Tablet */
@media (max-width: 900px) {
  .about-grid { grid-template-columns: 1fr; }
  .about-image { max-width: 500px; margin: 0 auto; }
  .contact-grid { grid-template-columns: 1fr; }
  .admin-sidebar { transform: translateX(-100%); }
  .admin-sidebar.open { transform: translateX(0); }
  .admin-main { margin-left: 0; }
  .admin-mobile-toggle { display: flex; align-items: center; }
  .admin-topbar { padding-left: 64px; }
}

/* Mobile */
@media (max-width: 600px) {
  :root { --header-h: 60px; }
  .form-row { grid-template-columns: 1fr; }
  .hero-content h1 { font-size: 1.6rem; }
}

/* Ultra small – 300x240 */
@media (max-width: 340px) {
  :root { --header-h: 52px; }
  .container { padding: 0 8px; }
  .btn { padding: 10px 16px; font-size: 0.82rem; }
  .section-title { font-size: 1.3rem; }
  table { font-size: 0.78rem; }
  th, td { padding: 7px 8px; }
  .admin-card { padding: 12px; }
  .auth-box { padding: 20px 14px; }
}

/* Print */
@media print {
  #site-header, footer, .btn, .hamburger { display: none; }
  body { background: white; }
}

/* ═══════════════════════════════════════════════════
   INNER PAGES
═══════════════════════════════════════════════════ */
.page-hero {
  background: linear-gradient(135deg, var(--beige-mid) 0%, var(--beige-light) 100%);
  padding: clamp(60px, 12vw, 120px) 0 clamp(40px, 8vw, 80px);
  text-align: center;
  border-bottom: 1px solid var(--beige-border);
}
.page-hero h1 { font-size: clamp(1.8rem, 4vw, 3rem); color: var(--brown-dark); margin-bottom: 0.5rem; }
.page-hero p  { color: var(--brown-mid); font-size: 1.1rem; }

/* Booking page */
.booking-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}
.booking-steps { margin: 1.5rem 0 2rem; display: flex; flex-direction: column; gap: 1rem; }
.booking-step  { display: flex; align-items: flex-start; gap: 1rem; }
.step-number   { width: 36px; height: 36px; background: var(--gold); color: white; border-radius: 50%;
                 display: flex; align-items: center; justify-content: center; font-weight: 700; flex-shrink: 0; }
.booking-step p { margin: 0; color: var(--brown-mid); }
.btn-large { padding: 16px 36px; font-size: 1.1rem; }
.booking-contact { background: var(--cream); border-radius: var(--radius); padding: 2rem; border: 1px solid var(--beige-border); }
.booking-contact h3 { color: var(--brown-dark); margin-bottom: 0.75rem; }
.contact-link { display: flex; align-items: center; gap: 0.5rem; color: var(--gold); font-size: 1.2rem; font-weight: 600;
                text-decoration: none; margin: 1rem 0 0.5rem; }
.contact-link:hover { color: var(--gold-dark); }
.booking-hours { color: var(--brown-mid); font-size: 0.9rem; }

/* ═══════════════════════════════════════════════════
   CONSULTATIES PAGE
═══════════════════════════════════════════════════ */

/* Intro block */
.consult-intro-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}
.consult-intro-text h2 { color: var(--brown-dark); margin-bottom: 1rem; }
.consult-intro-text p  { color: var(--brown-mid); line-height: 1.8; margin-bottom: 1rem; }
.consult-intro-text .btn { margin-top: 0.5rem; }

.consult-intro-badges {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.badge-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  background: var(--cream);
  border: 1px solid var(--beige-border);
  border-radius: var(--radius);
  padding: 1rem 1.25rem;
}
.badge-item span { color: var(--brown-mid); font-size: 0.9rem; line-height: 1.4; }
.badge-icon { color: var(--gold); font-size: 1.1rem; flex-shrink: 0; margin-top: 1px; }

/* Treatments list */
.consult-therapies { background: var(--beige); }
.consult-list { display: flex; flex-direction: column; gap: 2rem; }

.consult-card {
  display: grid;
  grid-template-columns: 360px 1fr;
  background: #fff;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--beige-border);
  transition: box-shadow var(--transition), transform var(--transition);
}
.consult-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}
.consult-card--reverse { grid-template-columns: 1fr 360px; }
.consult-card--reverse .consult-card-img { order: 2; }
.consult-card--reverse .consult-card-body { order: 1; }

.consult-card-img {
  position: relative;
  overflow: hidden;
  min-height: 260px;
}
.consult-card-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}
.consult-card:hover .consult-card-img img { transform: scale(1.04); }

.consult-card-img-placeholder {
  width: 100%; height: 100%; min-height: 260px;
  background: linear-gradient(135deg, var(--beige-mid), var(--beige));
  display: flex; align-items: center; justify-content: center;
  font-size: 2.5rem; color: var(--gold);
}

.consult-card-body {
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.consult-card-number {
  font-family: var(--font-serif);
  font-size: 3rem;
  font-weight: 700;
  color: var(--beige-mid);
  line-height: 1;
  margin-bottom: 0.5rem;
  letter-spacing: -0.02em;
}
.consult-card-body h3 {
  font-size: clamp(1.2rem, 2vw, 1.6rem);
  color: var(--brown-dark);
  margin-bottom: 1rem;
}
.consult-card-body p {
  color: var(--brown-mid);
  line-height: 1.75;
  margin-bottom: 1.75rem;
  flex: 1;
}

/* Book button — dark gold, always visible */
.btn-book {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 28px;
  border-radius: 6px;
  font-family: var(--font-sans);
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all var(--transition);
  background: var(--gold-dark);
  color: #fff !important;
  border: 2px solid var(--gold-dark);
  align-self: flex-start;
  text-decoration: none;
}
.btn-book:hover {
  background: #6b4c28;
  border-color: #6b4c28;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(139,111,71,0.35);
}

/* CTA box */
.consult-cta-box {
  background: linear-gradient(135deg, #3d2b1a 0%, var(--gold-dark) 100%);
  border-radius: var(--radius-lg);
  padding: clamp(2.5rem, 6vw, 5rem) clamp(1.5rem, 5vw, 4rem);
  text-align: center;
}
.consult-cta-box h2 { color: #fff; margin-bottom: 1rem; font-size: clamp(1.5rem, 3vw, 2.2rem); }
.consult-cta-box p  { color: rgba(255,255,255,0.82); font-size: 1.1rem; margin-bottom: 2rem; }

.btn-cta-white {
  display: inline-flex;
  align-items: center;
  padding: 16px 40px;
  border-radius: 6px;
  font-family: var(--font-sans);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all var(--transition);
  background: #fff;
  color: var(--brown-dark) !important;
  border: 2px solid #fff;
  text-decoration: none;
}
.btn-cta-white:hover {
  background: transparent;
  color: #fff !important;
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(0,0,0,0.2);
}

/* Privacy page */
.privacy-content { max-width: 760px; margin: 0 auto; }
.privacy-content h2 { color: var(--brown-dark); margin-top: 2rem; margin-bottom: 0.75rem; font-size: 1.3rem; }
.privacy-content p  { color: var(--brown-mid); line-height: 1.8; }

@media (max-width: 900px) {
  .consult-intro-inner { grid-template-columns: 1fr; }
  .consult-intro-badges { grid-template-columns: 1fr 1fr; }
  .consult-card,
  .consult-card--reverse { grid-template-columns: 1fr; }
  .consult-card--reverse .consult-card-img { order: 0; }
  .consult-card--reverse .consult-card-body { order: 0; }
  .consult-card-img { min-height: 220px; max-height: 260px; }
  .booking-container { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
  .consult-intro-badges { grid-template-columns: 1fr; }
  .consult-card-body { padding: 1.5rem; }
  .consult-card-number { font-size: 2rem; }
}
