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

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  color: var(--dark);
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3, h4 { font-family: 'Playfair Display', serif; }

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

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

.section {
  padding: 100px 0;
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-tag {
  display: inline-block;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}

.section-header h2 {
  font-size: 40px;
  font-weight: 600;
}

/* Navbar */
.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.logo {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--dark);
  text-decoration: none;
  flex-shrink: 0;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 32px;
}

.nav-links a {
  text-decoration: none;
  color: #555;
  font-size: 14px;
  font-weight: 500;
  transition: color 0.2s;
}

.nav-links a:hover { color: var(--gold); }

.nav-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.lang-toggle {
  background: none;
  border: 1px solid var(--gold);
  color: var(--gold);
  padding: 6px 14px;
  border-radius: 4px;
  font-size: 12px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
  white-space: nowrap;
  font-family: 'Inter', sans-serif;
}

.lang-toggle:hover {
  background: var(--gold);
  color: #fff;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--dark);
  transition: all 0.3s;
}

/* Hero */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: url('https://images.unsplash.com/photo-1560066984-138dadb4c035?w=1600&q=80') center/cover no-repeat;
  position: relative;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0,0,0,0.65) 0%, rgba(0,0,0,0.35) 100%);
}

.hero-content {
  position: relative;
  z-index: 1;
  color: #fff;
  max-width: 640px;
}

.hero-content h1 {
  font-size: 60px;
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 20px;
}

.hero-content p {
  font-size: 18px;
  opacity: 0.9;
  margin-bottom: 36px;
  line-height: 1.7;
}

.hero-btns {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.btn {
  display: inline-block;
  padding: 14px 36px;
  border-radius: 4px;
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: all 0.25s;
  font-family: 'Inter', sans-serif;
}

.btn-primary {
  background: var(--gold);
  color: #fff;
}

.btn-primary:hover { background: var(--gold-dark); }

.btn-outline {
  background: transparent;
  color: #fff;
  border: 2px solid #fff;
}

.btn-outline:hover {
  background: #fff;
  color: var(--dark);
}

.btn-sm {
  padding: 10px 24px;
  font-size: 12px;
  flex-shrink: 0;
}

/* About */
.about {
  background: #fff;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about-image img {
  width: 100%;
  height: 450px;
  object-fit: cover;
  border-radius: 8px;
}

.about-text .section-tag { margin-bottom: 8px; }

.about-text h2 {
  font-size: 36px;
  margin-bottom: 20px;
}

.about-text p {
  color: #666;
  margin-bottom: 16px;
  font-size: 16px;
}

.diagnostic-banner {
  display: flex;
  align-items: center;
  gap: 20px;
  background: var(--ivory);
  border-left: 4px solid var(--gold);
  padding: 20px 24px;
  border-radius: 6px;
  margin-top: 28px;
}

.diagnostic-icon {
  font-size: 32px;
  color: var(--gold);
  flex-shrink: 0;
}

.diagnostic-banner strong {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 18px;
  margin-bottom: 4px;
}

.diagnostic-banner p {
  font-size: 14px;
  margin: 0;
}

/* Services */
.services {
  background: var(--ivory);
}

.services .section-header {
  margin-bottom: 40px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 1fr;
  gap: 36px 28px;
  max-width: 1200px;
  margin: 0 auto;
}

.service-card {
  background: #fff;
  padding: 44px 26px;
  border: 1px solid #ece6dc;
  border-radius: 10px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: transform 0.25s, box-shadow 0.25s, border-color 0.25s;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 40px rgba(26, 26, 26, 0.08);
  border-color: var(--gold);
}

.service-card:hover .service-link {
  background: var(--gold);
  color: #fff;
}

.service-icon {
  color: var(--gold);
  margin-bottom: 24px;
  line-height: 1;
}

.service-icon svg {
  width: 60px;
  height: 60px;
  display: block;
  margin: 0 auto;
}

.service-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 12px;
}

.service-card p {
  color: #777;
  font-size: 14.5px;
  line-height: 1.7;
  margin-bottom: 26px;
  flex-grow: 1;
}

.service-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: auto;
  min-width: 160px;
  height: 46px;
  padding: 0 26px;
  border: 1px solid var(--gold);
  border-radius: 999px;
  color: var(--gold);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-decoration: none;
  transition: background 0.25s, color 0.25s;
}

.service-link:hover {
  background: var(--gold);
  color: #fff;
}

/* Gold scissors separator under section titles */
.sep-scissors {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-top: 18px;
}
.sep-scissors .sep-line {
  width: 56px;
  height: 1px;
  background: var(--gold);
  opacity: 0.6;
}
.sep-scissors .sep-ico {
  color: var(--gold);
  font-size: 20px;
  line-height: 1;
}

.service-price {
  font-size: 15px;
  font-weight: 600;
  color: var(--gold);
}

.services-cta {
  text-align: center;
  margin-top: 48px;
}

.services-cta p {
  color: #888;
  margin-bottom: 20px;
  font-size: 15px;
}

/* Gallery */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.gallery-item {
  position: relative;
  height: 280px;
  border-radius: 6px;
  overflow: hidden;
  cursor: pointer;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s;
}

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

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(0, 0, 0, 0.92);
  display: none;
  align-items: center;
  justify-content: center;
}

.lightbox.active {
  display: flex;
}

.lightbox-img {
  max-width: 90vw;
  max-height: 85vh;
  object-fit: contain;
  border-radius: 4px;
}

.lightbox-close {
  position: absolute;
  top: 20px;
  right: 28px;
  background: none;
  border: none;
  color: #fff;
  font-size: 44px;
  cursor: pointer;
  line-height: 1;
  opacity: 0.8;
  transition: opacity 0.2s;
}

.lightbox-close:hover { opacity: 1; }

.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,0.15);
  border: none;
  color: #fff;
  font-size: 30px;
  padding: 16px 20px;
  cursor: pointer;
  border-radius: 4px;
  transition: background 0.2s;
}

.lightbox-nav:hover { background: rgba(255,255,255,0.3); }

.lightbox-prev { left: 20px; }
.lightbox-next { right: 20px; }

.lightbox-counter {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255,255,255,0.6);
  font-size: 14px;
}

/* Contact */
.contact {
  background: var(--ivory);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
}

.info-item { margin-bottom: 32px; }

.info-item h4 {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 8px;
  color: var(--gold);
}

.info-item p {
  color: #555;
  font-size: 15px;
  line-height: 1.7;
}

.whatsapp-link {
  color: #25D366;
  text-decoration: none;
  font-weight: 500;
  font-size: 18px;
}

.whatsapp-link:hover { text-decoration: underline; }

.contact-social {
  display: flex;
  gap: 16px;
}

.contact-social a {
  color: #555;
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
}

.contact-social a:hover { color: var(--gold); }

.contact-social a svg { width: 22px; height: 22px; display: block; }

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  padding: 14px 16px;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  background: #fff;
  outline: none;
  transition: border-color 0.2s;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: var(--gold);
}

/* ── Reservation form (centered, V1.2) ──────────────────── */
.res-form {
  max-width: 900px;
  margin: 0 auto;
  background: #fff;
  border: 1px solid #efe9de;
  border-radius: 16px;
  padding: 52px 56px;
  display: flex;
  flex-direction: column;
  gap: 22px;
  box-shadow: 0 26px 64px rgba(26, 26, 26, 0.05);
}
.res-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
}
.res-form input,
.res-form select,
.res-form textarea {
  width: 100%;
  padding: 15px 18px;
  border: 1px solid #ece6dc;
  border-radius: 10px;
  font-family: 'Inter', sans-serif;
  font-size: 14.5px;
  background: #fff;
  outline: none;
  color: var(--dark);
  transition: border-color 0.2s, box-shadow 0.2s;
}
.res-form input:focus,
.res-form select:focus,
.res-form textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201, 169, 110, 0.12);
}
.res-form textarea { resize: vertical; min-height: 110px; }
.res-form input[type="date"] {
  width: 50%;
  align-self: flex-start;
}

.time-block { display: flex; flex-direction: column; gap: 10px; }
.time-label {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--gold);
}
.time-chips { display: flex; flex-wrap: wrap; gap: 10px; }
.time-chip {
  padding: 9px 16px;
  border: 1px solid #e2dccf;
  border-radius: 999px;
  background: #fff;
  color: #555;
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s;
}
.time-chip:hover { border-color: var(--gold); color: var(--gold); }
.time-chip.active {
  background: var(--gold);
  border-color: var(--gold);
  color: #fff;
}

.res-submit {
  margin-top: 10px;
  width: 100%;
  padding: 18px;
  font-size: 15px;
  letter-spacing: 1px;
}

.contact-info-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 48px;
  margin-top: 52px;
  text-align: center;
}
.contact-info-row .info-item { margin-bottom: 0; }
.contact-info-row .contact-social { justify-content: center; }
.contact-map { margin-top: 40px; }

/* Footer */
.footer {
  background: var(--dark);
  color: #aaa;
  padding: 32px 0;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-content p { font-size: 14px; }

.footer-made {
  color: #777;
  font-size: 13px;
}

/* WhatsApp Float */
.wa-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 56px;
  height: 56px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  z-index: 999;
  transition: transform 0.25s, box-shadow 0.25s;
  animation: wa-pulse 2s ease-in-out infinite;
}

.wa-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 28px rgba(37, 211, 102, 0.55);
}

@keyframes wa-pulse {
  0%, 100% { box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4); }
  50% { box-shadow: 0 4px 32px rgba(37, 211, 102, 0.6); }
}

/* Responsive */
@media (max-width: 1024px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .about-grid,
  .contact-grid {
    gap: 40px;
  }
}

@media (max-width: 768px) {
  .nav-links {
    position: fixed;
    top: 72px;
    left: 0;
    width: 100%;
    flex-direction: column;
    background: rgba(255,255,255,0.98);
    padding: 24px;
    gap: 20px;
    transform: translateY(-100%);
    opacity: 0;
    transition: all 0.3s;
    pointer-events: none;
    border-bottom: 1px solid rgba(0,0,0,0.05);
  }

  .nav-links.active {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .hamburger { display: flex; }

  .hero-content h1 { font-size: 38px; }

  .hero-content p { font-size: 16px; }

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

  .about-image img { height: 300px; }

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

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

  .section { padding: 64px 0; }

  .section-header h2 { font-size: 30px; }

  .diagnostic-banner {
    flex-direction: column;
    text-align: center;
  }

  .lightbox-prev { left: 8px; }
  .lightbox-next { right: 8px; }
  .lightbox-nav { padding: 12px 14px; font-size: 22px; }

  .footer-content {
    flex-direction: column;
    gap: 8px;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .hero-content h1 { font-size: 30px; }
  .hero-btns { flex-direction: column; }
  .hero-btns .btn { width: 100%; text-align: center; }
}

/* =============================================
   Admin Dashboard Styles
   ============================================= */

.admin-body {
  background: #f5f5f5;
}

.admin-navbar {
  background: #fff;
}

.btn-outline-dark {
  background: transparent;
  color: var(--dark);
  border: 1px solid var(--dark);
  padding: 8px 18px;
  font-size: 12px;
  text-decoration: none;
}

.btn-outline-dark:hover {
  background: var(--dark);
  color: #fff;
}

.admin-main {
  padding-top: 100px;
  padding-bottom: 60px;
}

.admin-section {
  margin-bottom: 40px;
}

.admin-title {
  font-size: 28px;
  font-weight: 600;
  margin-bottom: 20px;
  font-family: 'Playfair Display', serif;
}

/* Stats */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.stat-card {
  background: #fff;
  border-radius: 8px;
  padding: 24px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}

.stat-label {
  display: block;
  font-size: 13px;
  color: #888;
  margin-bottom: 8px;
  font-weight: 500;
}

.stat-value {
  display: block;
  font-size: 28px;
  font-weight: 700;
  color: var(--dark);
}

/* Form */
.admin-form {
  background: #fff;
  border-radius: 8px;
  padding: 28px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 16px;
}

.form-group {
  display: flex;
  flex-direction: column;
}

.form-group label {
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 6px;
  color: #555;
}

.form-group select,
.form-group input {
  padding: 10px 12px;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-size: 14px;
  font-family: 'Inter', sans-serif;
  background: #fff;
  outline: none;
  transition: border-color 0.2s;
}

.form-group select:focus,
.form-group input:focus {
  border-color: var(--gold);
}

.admin-form .btn {
  margin-top: 8px;
  width: 100%;
  text-align: center;
}

/* Feedback */
.feedback {
  display: none;
  margin-top: 12px;
  padding: 12px 16px;
  border-radius: 4px;
  font-size: 14px;
  font-weight: 500;
}

.feedback.success {
  display: block;
  background: #d4edda;
  color: #155724;
  border: 1px solid #c3e6cb;
}

.feedback.error {
  display: block;
  background: #f8d7da;
  color: #721c24;
  border: 1px solid #f5c6cb;
}

.text-muted {
  color: #999;
  font-size: 14px;
}

/* Today grid */
.today-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.today-card {
  background: #fff;
  border-radius: 8px;
  padding: 24px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}

.today-card h3 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 16px;
  font-family: 'Playfair Display', serif;
}

.employee-row,
.tx-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
  border-bottom: 1px solid #f0f0f0;
}

.employee-row:last-child,
.tx-row:last-child {
  border-bottom: none;
}

.emp-name {
  font-weight: 600;
  font-size: 14px;
}

.emp-stats {
  font-size: 13px;
  text-align: right;
}

.emp-commission {
  color: var(--gold);
  font-weight: 700;
}

.tx-main {
  display: flex;
  gap: 12px;
  align-items: center;
}

.tx-service {
  font-weight: 600;
  font-size: 14px;
}

.tx-amount {
  font-weight: 700;
  color: #2d6a4f;
  font-size: 14px;
}

.tx-meta {
  font-size: 12px;
  color: #888;
  text-align: right;
}

.tx-meta span {
  margin-left: 10px;
}

.tx-time {
  color: #bbb;
}

/* Admin responsive */
@media (max-width: 768px) {
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .form-row {
    grid-template-columns: 1fr;
  }

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

  .admin-title {
    font-size: 22px;
  }
}

@media (max-width: 480px) {
  .stats-grid {
    grid-template-columns: 1fr;
  }
}

/* ============================================================
   SALONIQA TEMPLATE — theme variables + added sections
   (Colors are overridden at runtime from config.js)
   ============================================================ */
:root{
  --gold:#C9A96E;
  --gold-dark:#B8944F;
  --dark:#1A1A1A;
  --ivory:#F9F7F4;
  --white:#ffffff;
}

/* Generic alt background helper */
.bg-ivory{ background:var(--ivory); }

/* ── Tarifs ─────────────────────────────────────────────── */
.tarifs{ background:var(--white); }
.price-card{
  max-width:760px; margin:0 auto; background:var(--white);
  border:1px solid #ece6dc; border-radius:18px; padding:34px 38px;
  box-shadow:0 24px 60px rgba(26,26,26,.07);
}
.price-list{ list-style:none; margin:0 0 26px; padding:0; }
.price-row{
  display:flex; align-items:baseline; gap:12px;
  padding:16px 0; border-bottom:1px dashed #e4ddd0;
}
.price-row:last-child{ border-bottom:0; }
.price-name{ font-weight:600; color:var(--dark); white-space:nowrap; }
.price-dots{ flex:1; border-bottom:1px dotted #cfc6b5; transform:translateY(-4px); }
.price-dur{ font-size:.85rem; color:#9a917f; white-space:nowrap; }
.price-amount{
  font-family:'Playfair Display',serif; font-weight:600;
  color:var(--gold); font-size:1.15rem; white-space:nowrap;
}

/* ── Pourquoi nous choisir ──────────────────────────────── */
.why{ background:var(--dark); }
.why .section-header h2{ color:var(--white); }
.why-grid{
  display:grid; grid-template-columns:repeat(4,1fr); gap:22px;
}
.why-card{
  background:rgba(255,255,255,.04); border:1px solid rgba(201,169,110,.25);
  border-radius:16px; padding:30px 22px; text-align:center;
  transition:transform .3s ease, border-color .3s ease, background .3s ease;
}
.why-card:hover{ transform:translateY(-6px); border-color:var(--gold); background:rgba(255,255,255,.06); }
.why-icon{
  font-size:2rem; width:64px; height:64px; margin:0 auto 16px;
  display:grid; place-items:center; border-radius:50%;
  background:rgba(201,169,110,.15); border:1px solid rgba(201,169,110,.4);
}
.why-card h3{ font-family:'Playfair Display',serif; color:var(--white); font-size:1.15rem; margin-bottom:8px; }
.why-card p{ color:rgba(255,255,255,.66); font-size:.92rem; line-height:1.6; }

/* ── Before / After ─────────────────────────────────────── */
.ba{ background:var(--ivory); }
.ba-wrap{ display:flex; flex-wrap:wrap; gap:28px; justify-content:center; }
.ba-item{ width:100%; max-width:560px; }
.ba-slider{
  position:relative; width:100%; aspect-ratio:4/3; border-radius:16px;
  overflow:hidden; box-shadow:0 20px 50px rgba(26,26,26,.14); user-select:none;
}
.ba-slider img{ position:absolute; inset:0; width:100%; height:100%; object-fit:cover; }
.ba-after{ z-index:1; }
.ba-before-wrap{ position:absolute; inset:0; width:50%; overflow:hidden; z-index:2; border-right:3px solid var(--white); }
.ba-before-wrap img{ width:auto; max-width:none; }
.ba-handle{
  position:absolute; top:0; bottom:0; left:50%; width:40px; transform:translateX(-50%);
  z-index:3; cursor:ew-resize; display:grid; place-items:center;
}
.ba-handle::before{ content:""; position:absolute; top:0; bottom:0; width:3px; background:var(--white); }
.ba-handle span{
  width:38px; height:38px; border-radius:50%; background:var(--white); color:var(--dark);
  display:grid; place-items:center; font-size:.8rem; box-shadow:0 4px 12px rgba(0,0,0,.25); z-index:1;
}
.ba-tag{ position:absolute; bottom:12px; padding:5px 12px; border-radius:20px; font-size:.72rem; font-weight:600; color:var(--white); z-index:4; background:rgba(26,26,26,.55); }
.ba-tag.before{ left:12px; } .ba-tag.after{ right:12px; }
.ba-label{ text-align:center; margin-top:14px; font-weight:600; color:var(--dark); }

/* ── Testimonials ───────────────────────────────────────── */
.testi{ background:var(--white); }
.testi-grid{ display:grid; grid-template-columns:repeat(3,1fr); gap:24px; }
.testi-card{
  background:var(--ivory); border:1px solid #ece6dc; border-radius:16px;
  padding:30px 26px; position:relative;
}
.testi-quote{ font-family:'Playfair Display',serif; font-size:3rem; line-height:1; color:var(--gold); opacity:.35; }
.testi-stars{ color:var(--gold); letter-spacing:2px; margin:6px 0 12px; }
.testi-text{ color:#555; line-height:1.7; font-style:italic; margin-bottom:18px; }
.testi-name{ font-weight:600; color:var(--dark); }

/* RTL support for Darija */
html[data-lang="ar"]{ direction:rtl; }
html[data-lang="ar"] .price-name,
html[data-lang="ar"] .nav-links{ direction:rtl; }

/* 3-language switcher (FR | EN | العربية) — matches lang-toggle aesthetic */
.lang-switch{ display:inline-flex; border:1px solid var(--gold); border-radius:4px; overflow:hidden; }
.lang-switch button{
  background:none; border:none; color:var(--gold);
  padding:6px 10px; font-size:12px; font-weight:600; line-height:1;
  cursor:pointer; font-family:'Inter',sans-serif; transition:background .2s,color .2s; white-space:nowrap;
}
.lang-switch button + button{ border-left:1px solid var(--gold); }
.lang-switch button.active,
.lang-switch button:hover{ background:var(--gold); color:#fff; }

/* ── Responsive ─────────────────────────────────────────── */
@media (max-width:900px){
  .why-grid{ grid-template-columns:repeat(2,1fr); }
  .testi-grid{ grid-template-columns:1fr; }
}
@media (max-width:560px){
  .why-grid{ grid-template-columns:1fr; }
  .price-card{ padding:26px 20px; }
  .price-dur{ display:none; }
}

/* ── V1.2 responsive (services + reservation) ───────────── */
@media (max-width: 768px) {
  .res-row { grid-template-columns: 1fr; }
  .res-form { padding: 30px 22px; }
  .res-form input[type="date"] { width: 100%; }
  .contact-info-row { gap: 28px; margin-top: 40px; }
  .service-card { padding: 38px 24px; }
}

/* ============================================================
   Final visual polish (V1.3) — scoped, no layout/structure change
   ============================================================ */

/* 1. Hero logo ~90px wide on desktop (overrides inline 46px height) */
@media (min-width: 993px) {
  #navLogo img { height: 60px !important; }
}

/* 2. Hero CTA — slightly stronger gold (hero only, same luxury family) */
.hero-btns .btn-primary {
  background: #BFA158;
  box-shadow: 0 8px 20px rgba(201, 169, 110, 0.35);
}

/* 3. Tarifs — very subtle row hover background */
.price-row { transition: background-color 0.2s ease; }
.price-row:hover { background-color: rgba(201, 169, 110, 0.07); }
