:root {
  --violet: #6B4FA0;
  --violet-light: #9B7DC8;
  --violet-pale: #EDE8F8;
  --violet-dark: #3E2B6B;
  --gold: #C9A84C;
  --gold-light: #F0D98A;
  --cream: #FDFAF5;
  --white: #FFFFFF;
  --text-dark: #1A1020;
  --text-mid: #4A3D5E;
  --text-light: #8C7FA0;
  --blush: #FAF0F5;
  --border: rgba(107,79,160,0.15);
  --success: #25D366;
  --danger: #E74C3C;
  --warning: #F39C12;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--cream);
  color: var(--text-dark);
  overflow-x: hidden;
}

/* RTL Support */
html[dir="rtl"] body {
  font-family: 'DM Sans', 'Tajawal', sans-serif; /* Fallback for arabic */
}

/* ── STATUS BANNER ── */
.status-banner {
  background: var(--violet-dark);
  color: white;
  text-align: center;
  font-size: 13px;
  font-weight: 500;
  padding: 10px 15px;
  position: relative;
  z-index: 1001;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  cursor: pointer;
  transition: all 0.3s;
  flex-direction: column;
}
.status-banner:hover { background: var(--violet); }
.status-banner .full-schedule {
  display: none;
  font-size: 12px;
  font-weight: 400;
  margin-top: 8px;
  opacity: 0.9;
  line-height: 1.6;
}
.status-banner.expanded .full-schedule { display: block; }
.status-indicator {
  display: inline-block;
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--warning);
}
.status-indicator.open { background: var(--success); box-shadow: 0 0 8px rgba(37,211,102,0.8); }
.status-indicator.closed { background: var(--danger); box-shadow: 0 0 8px rgba(231,76,60,0.8); }

/* ── NAV ── */
nav {
  position: sticky; top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(253,250,245,0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 5%;
  height: 70px;
}
.nav-logo {
  display: flex; align-items: center; gap: 12px;
}
.nav-logo-icon {
  width: 40px; height: 40px;
  background: var(--violet);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: white; font-size: 18px;
}
.nav-logo-text {
  font-family: 'Playfair Display', serif;
  font-size: 16px; font-weight: 600;
  color: var(--violet-dark);
  line-height: 1.2;
}
.nav-logo-text span { font-size: 11px; font-weight: 300; color: var(--text-light); display: block; font-family: 'DM Sans', sans-serif; }
.nav-links { display: flex; align-items: center; gap: 32px; }
.nav-links a {
  text-decoration: none;
  font-size: 14px; font-weight: 400;
  color: var(--text-mid);
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--violet); }
.nav-cta {
  background: var(--violet);
  color: white !important;
  padding: 10px 22px;
  border-radius: 50px;
  font-size: 13px !important;
  font-weight: 500 !important;
  transition: background 0.2s !important;
}
.nav-cta:hover { background: var(--violet-dark) !important; color: white !important; }

/* Language Switcher */
.lang-switch {
  background: none; border: 1px solid var(--border);
  border-radius: 50px; padding: 4px 12px;
  font-size: 12px; font-weight: 600; color: var(--text-mid);
  cursor: pointer; transition: all 0.2s;
}
.lang-switch:hover { background: var(--violet-pale); color: var(--violet); }

/* ── HERO ── */
.hero {
  min-height: calc(100vh - 70px);
  display: flex; align-items: center;
  padding: 60px 5% 60px;
  position: relative;
  overflow: hidden;
}
.hero-bg-circle {
  position: absolute; top: -100px; right: -150px;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(107,79,160,0.08) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}
.hero-bg-circle2 {
  position: absolute; bottom: -80px; left: -100px;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(201,168,76,0.07) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}
.hero-inner {
  max-width: 1100px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 60px; align-items: center;
  width: 100%;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--violet-pale);
  color: var(--violet);
  font-size: 12px; font-weight: 500;
  padding: 6px 16px; border-radius: 50px;
  margin-bottom: 24px;
}
.hero-badge::before { content: '✦'; font-size: 10px; }
h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(36px, 4vw, 52px);
  font-weight: 700;
  line-height: 1.15;
  color: var(--violet-dark);
  margin-bottom: 8px;
}
h1 em {
  font-style: italic;
  color: var(--violet);
}
.hero-subtitle {
  font-size: 16px; font-weight: 400;
  color: var(--text-light);
  margin-bottom: 8px; letter-spacing: 0.5px;
}
.hero-sub2 {
  font-size: 14px; color: var(--gold);
  font-weight: 500; margin-bottom: 32px;
}
.hero-desc {
  font-size: 16px; line-height: 1.75;
  color: var(--text-mid);
  margin-bottom: 40px;
  max-width: 480px;
}
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }
.btn-primary {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--violet);
  color: white; text-decoration: none;
  padding: 14px 28px; border-radius: 50px;
  font-size: 15px; font-weight: 500;
  transition: all 0.2s; cursor: pointer; border: none;
  position: relative;
}
.btn-primary:hover { background: var(--violet-dark); transform: translateY(-1px); }

.btn-outline {
  display: inline-flex; align-items: center; gap: 10px;
  background: transparent;
  color: var(--violet); text-decoration: none;
  padding: 14px 28px; border-radius: 50px;
  font-size: 15px; font-weight: 500;
  transition: all 0.2s; cursor: pointer;
  border: 2px solid var(--violet);
  position: relative;
}
.btn-outline:hover { background: var(--violet-pale); transform: translateY(-1px); }

/* Tooltip styles */
.has-tooltip .tooltip-content {
  position: absolute;
  bottom: 125%;
  left: 50%;
  transform: translateX(-50%);
  background: var(--violet-dark);
  color: white;
  padding: 12px 18px;
  border-radius: 12px;
  font-size: 12px;
  line-height: 1.6;
  white-space: nowrap;
  visibility: hidden;
  opacity: 0;
  transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
  z-index: 1000;
  box-shadow: 0 10px 30px rgba(0,0,0,0.2);
  pointer-events: none;
  text-align: center;
}
.has-tooltip:hover .tooltip-content,
.has-tooltip.active .tooltip-content {
  visibility: visible;
  opacity: 1;
  bottom: 115%;
}
.has-tooltip .tooltip-content::after {
  content: '';
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  border: 6px solid transparent;
  border-top-color: var(--violet-dark);
}
.btn-wa {
  display: inline-flex; align-items: center; gap: 10px;
  background: #25D366;
  color: white; text-decoration: none;
  padding: 14px 28px; border-radius: 50px;
  font-size: 15px; font-weight: 500;
  transition: all 0.2s; cursor: pointer; border: none;
}
.btn-wa:hover { background: #1DAA54; transform: translateY(-1px); }
.hero-right {
  position: relative; display: flex; justify-content: center;
}
.hero-card-visual {
  width: 340px; height: 420px;
  background: linear-gradient(135deg, var(--violet-pale) 0%, #F5EEF8 100%);
  border-radius: 24px;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 20px;
  border: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}
.hero-card-visual::before {
  content: '';
  position: absolute; top: -40px; right: -40px;
  width: 160px; height: 160px;
  border-radius: 50%;
  background: rgba(107,79,160,0.08);
}
.hero-avatar {
  width: 110px; height: 110px; border-radius: 50%;
  background: var(--violet);
  display: flex; align-items: center; justify-content: center;
  font-family: 'Playfair Display', serif;
  font-size: 36px; color: white;
  border: 4px solid white;
  box-shadow: 0 8px 24px rgba(107,79,160,0.3);
  overflow: hidden;
}
.hero-avatar img { width: 100%; height: 100%; object-fit: cover; }
.hero-card-info { text-align: center; }
.hero-card-info strong {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 20px; color: var(--violet-dark);
}
.hero-card-info span {
  font-size: 13px; color: var(--text-light);
  display: block; margin-top: 4px;
}
.hero-card-chips {
  display: flex; flex-wrap: wrap; gap: 8px;
  justify-content: center; padding: 0 20px;
}
.chip {
  background: white;
  border: 1px solid var(--border);
  color: var(--violet);
  font-size: 11px; font-weight: 500;
  padding: 5px 12px; border-radius: 50px;
}
.hero-stats {
  display: flex; gap: 28px;
  background: white;
  border-radius: 16px; padding: 16px 24px;
  border: 1px solid var(--border);
  margin-top: 8px;
}
.stat { text-align: center; }
.stat-num {
  font-family: 'Playfair Display', serif;
  font-size: 24px; font-weight: 700;
  color: var(--violet-dark); display: block;
}
.stat-label { font-size: 11px; color: var(--text-light); }

/* ── SECTIONS ── */
section { padding: 90px 5%; }
.section-inner { max-width: 1100px; margin: 0 auto; }
.section-tag {
  display: inline-flex; align-items: center; gap: 8px;
  color: var(--violet); font-size: 12px; font-weight: 600;
  letter-spacing: 1.5px; text-transform: uppercase;
  margin-bottom: 12px;
}
.section-tag::before { content: ''; display: block; width: 24px; height: 2px; background: var(--gold); }
h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(28px, 3vw, 38px);
  color: var(--violet-dark); line-height: 1.2;
  margin-bottom: 16px;
}
.section-sub {
  font-size: 16px; color: var(--text-light); max-width: 520px;
  line-height: 1.7; margin-bottom: 50px;
}

/* ── À PROPOS ── */
.about-bg { background: white; }
.about-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 80px; align-items: start;
}
.about-timeline { display: flex; flex-direction: column; gap: 0; }
.timeline-item {
  display: flex; gap: 20px;
  padding-bottom: 28px;
  position: relative;
}
.timeline-item:not(:last-child)::after {
  content: '';
  position: absolute; left: 18px; top: 44px;
  width: 2px; bottom: 0;
  background: var(--violet-pale);
}
html[dir="rtl"] .timeline-item:not(:last-child)::after {
  left: auto; right: 18px;
}
.timeline-dot {
  width: 38px; height: 38px; border-radius: 50%;
  background: var(--violet-pale);
  border: 2px solid var(--violet-light);
  display: flex; align-items: center; justify-content: center;
  font-size: 16px; flex-shrink: 0; margin-top: 2px;
}
.timeline-content h3 {
  font-size: 15px; font-weight: 600; color: var(--violet-dark);
  margin-bottom: 4px;
}
.timeline-content p { font-size: 13px; color: var(--text-light); line-height: 1.6; }
.timeline-year {
  font-size: 11px; font-weight: 600;
  color: var(--gold); letter-spacing: 1px;
  margin-bottom: 4px; display: block;
}
.cert-card {
  background: var(--violet-pale);
  border-radius: 20px;
  padding: 32px;
  border: 1px solid var(--border);
  margin-bottom: 24px;
}
.cert-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 18px; color: var(--violet-dark);
  margin-bottom: 8px;
}
.cert-card p { font-size: 14px; color: var(--text-mid); line-height: 1.6; }
.cert-medal {
  font-size: 32px; margin-bottom: 12px; display: block;
}

/* ── SERVICES ── */
.services-bg { background: var(--violet-pale); }
.services-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.service-card {
  background: white;
  border-radius: 20px;
  padding: 32px 28px;
  border: 1px solid var(--border);
  transition: all 0.25s;
  position: relative; overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--violet), var(--gold));
  opacity: 0; transition: opacity 0.25s;
}
.service-card:hover { transform: translateY(-4px); box-shadow: 0 16px 40px rgba(107,79,160,0.1); }
.service-card:hover::before { opacity: 1; }
.service-icon {
  width: 56px; height: 56px; border-radius: 16px;
  background: var(--violet-pale);
  display: flex; align-items: center; justify-content: center;
  font-size: 26px; margin-bottom: 20px;
}
.service-card h3 {
  font-size: 17px; font-weight: 600;
  color: var(--violet-dark); margin-bottom: 10px;
}
.service-card p { font-size: 14px; color: var(--text-light); line-height: 1.7; }

/* ── AVIS ── */
.reviews-bg { background: white; }
.reviews-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.review-card {
  background: var(--cream);
  border-radius: 20px; padding: 28px;
  border: 1px solid var(--border);
  position: relative;
}
.review-card::before {
  content: '"';
  position: absolute; top: 16px; right: 24px;
  font-family: 'Playfair Display', serif;
  font-size: 60px; color: var(--violet-pale);
  line-height: 1;
}
html[dir="rtl"] .review-card::before {
  right: auto; left: 24px;
}
.review-stars { color: #FFB800; font-size: 14px; margin-bottom: 14px; }
.review-text {
  font-size: 14px; line-height: 1.75;
  color: var(--text-mid); margin-bottom: 20px;
  font-style: italic;
}
.review-author {
  display: flex; align-items: center; gap: 12px;
}
.review-avatar {
  width: 38px; height: 38px; border-radius: 50%;
  background: var(--violet);
  display: flex; align-items: center; justify-content: center;
  color: white; font-size: 13px; font-weight: 600; flex-shrink: 0;
}
.review-author-info strong { font-size: 13px; color: var(--violet-dark); display: block; }
.review-author-info span { font-size: 11px; color: var(--text-light); }

/* ── FAQ ── */
.faq-bg { background: var(--violet-pale); }
.faq-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 60px; align-items: start;
}
.faq-items { display: flex; flex-direction: column; gap: 16px; }
.faq-item {
  background: white;
  border-radius: 16px;
  border: 1px solid var(--border);
  overflow: hidden;
}
.faq-question {
  width: 100%; text-align: left; padding: 20px;
  background: none; border: none; cursor: pointer;
  display: flex; justify-content: space-between; align-items: center;
  font-size: 15px; font-weight: 600; color: var(--violet-dark);
  font-family: 'DM Sans', sans-serif;
}
html[dir="rtl"] .faq-question { text-align: right; }
.faq-icon {
  width: 24px; height: 24px; border-radius: 50%;
  background: var(--cream); display: flex; align-items: center; justify-content: center;
  color: var(--violet); font-size: 18px; line-height: 1;
  transition: transform 0.3s;
}
.faq-item.active .faq-icon { transform: rotate(45deg); }
.faq-answer {
  padding: 0 20px; max-height: 0; overflow: hidden;
  transition: max-height 0.3s ease-out, padding 0.3s ease;
  font-size: 14px; line-height: 1.6; color: var(--text-mid);
}
.faq-item.active .faq-answer { padding: 0 20px 20px; max-height: 200px; }


/* ── RDV / CONTACT ── */
.contact-bg { background: white; }
.contact-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 60px; align-items: start;
}
.contact-info-block { display: flex; flex-direction: column; gap: 24px; }
.contact-item {
  display: flex; align-items: flex-start; gap: 16px;
}
.contact-item-icon {
  width: 44px; height: 44px; border-radius: 12px;
  background: var(--violet-pale);
  display: flex; align-items: center; justify-content: center;
  font-size: 20px; flex-shrink: 0;
}
.contact-item h4 { font-size: 13px; font-weight: 600; color: var(--text-light); margin-bottom: 4px; }
.contact-item p { font-size: 15px; color: var(--violet-dark); font-weight: 500; }
.contact-item a { color: var(--violet); text-decoration: none; }
.rdv-panel {
  background: white;
  border-radius: 24px; padding: 40px;
  border: 1px solid var(--border);
  box-shadow: 0 8px 32px rgba(107,79,160,0.08);
}
.rdv-panel h3 {
  font-family: 'Playfair Display', serif;
  font-size: 22px; color: var(--violet-dark);
  margin-bottom: 8px;
}
.rdv-panel p { font-size: 14px; color: var(--text-light); margin-bottom: 28px; }
.form-group { margin-bottom: 18px; }
.form-group label {
  display: block; font-size: 12px; font-weight: 600;
  color: var(--text-mid); letter-spacing: 0.5px;
  margin-bottom: 8px; text-transform: uppercase;
}
.form-group input, .form-group select {
  width: 100%; padding: 12px 16px;
  border: 1.5px solid var(--border);
  border-radius: 12px; font-size: 14px;
  font-family: 'DM Sans', sans-serif;
  color: var(--text-dark);
  background: var(--cream);
  transition: border-color 0.2s;
  outline: none;
}
.form-group input:focus, .form-group select:focus {
  border-color: var(--violet);
  background: white;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.btn-whatsapp-full {
  width: 100%; padding: 16px;
  background: #25D366; color: white;
  border: none; border-radius: 50px;
  font-size: 15px; font-weight: 600;
  font-family: 'DM Sans', sans-serif;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center; gap: 10px;
  transition: all 0.2s; margin-bottom: 14px;
}
.btn-whatsapp-full:hover { background: #1DAA54; }
.btn-calendly-full {
  width: 100%; padding: 16px;
  background: var(--violet); color: white;
  border: none; border-radius: 50px;
  font-size: 15px; font-weight: 600;
  font-family: 'DM Sans', sans-serif;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center; gap: 10px;
  transition: all 0.2s;
  text-decoration: none;
}
.btn-calendly-full:hover { background: var(--violet-dark); }
.divider-or {
  text-align: center; position: relative;
  font-size: 12px; color: var(--text-light);
  margin: 12px 0;
}
.divider-or::before, .divider-or::after {
  content: '';
  position: absolute; top: 50%;
  width: 38%; height: 1px;
  background: var(--border);
}
.divider-or::before { left: 0; }
.divider-or::after { right: 0; }

/* ── MAP ── */
.map-section { padding: 0; }
.map-embed {
  width: 100%; height: 360px;
  border: none;
  filter: saturate(0.8) opacity(0.95);
}

/* ── FOOTER ── */
footer {
  background: var(--violet-dark);
  color: rgba(255,255,255,0.7);
  padding: 50px 5% 30px;
}
.footer-inner {
  max-width: 1100px; margin: 0 auto;
  display: grid; grid-template-columns: 2fr 1fr 1fr;
  gap: 50px; padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  margin-bottom: 24px;
}
.footer-brand strong {
  font-family: 'Playfair Display', serif;
  font-size: 18px; color: white; display: block; margin-bottom: 10px;
}
.footer-brand p { font-size: 13px; line-height: 1.7; }
footer h4 { color: var(--gold-light); font-size: 12px; letter-spacing: 1px; text-transform: uppercase; margin-bottom: 16px; }
footer ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
footer ul li { font-size: 13px; }
footer ul a { color: rgba(255,255,255,0.6); text-decoration: none; }
footer ul a:hover { color: white; }
.footer-bottom {
  max-width: 1100px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  font-size: 12px;
}
.footer-bottom a { color: var(--gold-light); text-decoration: none; }

/* ── CALENDLY BUTTON ── */
.btn-calendly {
  background: #FFB800; /* Bright gold/orange */
  color: var(--violet-dark);
  padding: 14px 28px;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: all 0.3s;
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(255, 184, 0, 0.3);
}
.btn-calendly:hover {
  background: #FFA000;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 184, 0, 0.4);
}

.btn-facebook {
  background: #1877F2;
  color: white;
  padding: 14px 28px;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: all 0.3s;
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(24, 119, 242, 0.3);
}

.btn-facebook:hover {
  background: #1565C0;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(24, 119, 242, 0.4);
}

.btn-whatsapp-full {
  width: 100%;
  justify-content: center;
  background: var(--violet);
}

/* ── HAMBURGER ── */
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; border: none; background: none; padding: 4px; }
.hamburger span { width: 24px; height: 2px; background: var(--violet-dark); border-radius: 2px; transition: all 0.3s; }

/* ── ANIMATIONS ── */
.fade-in { opacity: 0; transition: opacity 0.8s ease-out, transform 0.8s ease-out; }
.fade-in.visible { opacity: 1; transform: translateY(0) !important; }
.slide-up { transform: translateY(40px); }

.footer-social-link {
  display: inline-flex;
  align-items: center;
  color: white;
  text-decoration: none;
  font-size: 14px;
  transition: opacity 0.3s;
  padding: 8px 0;
}
.footer-social-link:hover {
  opacity: 0.8;
}
.footer-contact-list {
  list-style: none;
  padding: 0;
}
.footer-contact-list li {
  margin-bottom: 12px;
}

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .hero-inner { grid-template-columns: 1fr; gap: 40px; }
  .hero-right { display: none; }
  .about-grid, .contact-grid, .faq-grid { grid-template-columns: 1fr; gap: 40px; }
  .services-grid, .reviews-grid, .blog-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; gap: 30px; }
}
@media (min-width: 901px) and (max-width: 1100px) {
  .services-grid { grid-template-columns: 1fr 1fr; }
  .reviews-grid { grid-template-columns: 1fr 1fr; }
}
