:root {
  --primary: #d7262f;
  --primary-dark: #a81c24;
  --secondary: #1f8f4e;
  --secondary-soft: #eaf6ef;
  --text: #1f1f1f;
  --white: #ffffff;
  --dark: #111111;
  --light: #f6f7f6;
  --title-font: "Playfair Display", "Rosario", Georgia, serif;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: "Rosario", Arial, sans-serif;
  color: var(--text);
  background: var(--white);
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
img, video { max-width: 100%; }
section[id] { scroll-margin-top: 96px; }
.container { width: min(1160px, 92%); margin: 0 auto; }

header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.92);
  border-bottom: 1px solid #f1f1f1;
  backdrop-filter: blur(6px);
}
.topbar {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 10px 0;
}
.logo { font-size: 30px; font-weight: 700; color: var(--primary); }
nav ul {
  list-style: none;
  display: flex;
  gap: 22px;
  margin: 0;
  padding: 0;
  font-size: 18px;
}
.btn {
  border: 0;
  border-radius: 999px;
  padding: 11px 18px;
  font: inherit;
  cursor: pointer;
}
.btn-primary { background: var(--primary); color: #fff; font-weight: 700; }
.btn-primary:hover { background: var(--primary-dark); }
.btn-outline { border: 1px solid var(--primary); color: var(--primary); background: transparent; }
.btn-outline.light { color: #fff; border-color: #fff; }
.header-cta {
  display: flex;
  gap: 10px;
  align-items: center;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.social-link {
  width: 42px;
  height: 42px;
  display: inline-grid;
  place-items: center;
  border-radius: 50%;
  border: 1px solid #ececec;
  background: #fff;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.social-link:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.12);
}
.social-link.instagram { color: var(--secondary); }

.lang-switch {
  display: flex;
  gap: 6px;
  align-items: center;
}
.lang-switch a {
  font-size: 12px;
  font-weight: 700;
  border: 1px solid #ddd;
  border-radius: 999px;
  padding: 4px 9px;
}
.lang-switch a.active {
  background: var(--dark);
  color: #fff;
  border-color: var(--dark);
}

.hero {
  position: relative;
  min-height: 95vh;
  min-height: 95svh;
  color: #fff;
  display: grid;
  place-items: center;
  text-align: center;
  overflow: hidden;
  padding: 130px 0 40px;
  background: center / cover no-repeat url("/photos/image_1.png");
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(32, 32, 32, 0.84) 20%, rgba(32, 32, 32, 0.48) 70%, rgba(32, 32, 32, 0.2));
}
.hero-content { position: relative; z-index: 2; width: min(1060px, 94%); }
.hero h1 {
  margin: 0 0 14px;
  font-size: clamp(34px, 5vw, 66px);
  line-height: 1.06;
  font-family: var(--title-font);
  font-weight: 700;
  letter-spacing: 0.01em;
}
.hero p {
  margin: 0 auto;
  max-width: 900px;
  font-size: clamp(18px, 2.2vw, 26px);
  color: #fafafa;
}
.hero-note {
  margin: 18px auto 0;
  display: inline-block;
  padding: 8px 15px;
  border-radius: 999px;
  font-size: 15px;
  background: rgba(31, 143, 78, 0.20);
  border: 1px solid rgba(255, 255, 255, 0.25);
}
.rating-chip {
  margin: 12px auto 0;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.28);
  color: #fff;
  font-size: 14px;
  font-weight: 600;
}
.rating-stars { color: #ffe08a; letter-spacing: 1px; font-size: 13px; }
.hero-actions {
  margin-top: 18px;
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

section { padding: 40px 0; }
.reveal-on-scroll {
  opacity: 0;
  transform: translateY(14px);
  transition:
    opacity 280ms ease-out,
    transform 280ms ease-out;
  transition-delay: var(--reveal-delay, 0ms);
  will-change: opacity, transform;
}

.reveal-on-scroll.is-visible {
  opacity: 1;
  transform: translateY(0);
}
.section-title { text-align: center; margin-bottom: 20px; }
.section-title h2, .section-title h3 {
  margin: 0;
  font-size: clamp(29px, 3.4vw, 45px);
  color: #2b2b2b;
  font-family: var(--title-font);
  font-weight: 700;
  letter-spacing: 0.012em;
  font-style: italic;
}
.section-title p { margin: 6px auto 0; max-width: 860px; color: #5f5f5f; font-size: 20px; }

.trust-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.trust-card {
  background: #fff;
  border: 1px solid #f0ecec;
  border-radius: 14px;
  padding: 24px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
  text-align: center;
  font-family: "Arial", "Helvetica Neue", Helvetica, sans-serif;
}
.trust-card h3 {
  margin: 6px 0 8px;
  font-size: clamp(20px, 2vw, 28px);
  line-height: 1.2;
  letter-spacing: 0.01em;
  font-family: var(--title-font);
  font-weight: 700;
}
.trust-card p {
  margin: 0;
  font-size: clamp(15px, 1.1vw, 18px);
  line-height: 1.45;
  color: #3f3f3f;
}
.package-notes {
  margin-top: 18px;
  text-align: center;
  max-width: 980px;
  margin-left: auto;
  margin-right: auto;
  color: #4b4b4b;
  font-size: 16px;
  line-height: 1.55;
}
.package-notes p {
  margin: 0;
}
.package-notes strong {
  color: #2b2b2b;
}
.package-notes em {
  color: #6a6a6a;
}

/* ===== Packages (prestations / services) ===== */
#prestations .trust-grid,
#services .trust-grid {
  gap: 22px;
  align-items: stretch;
}

#prestations .trust-card,
#services .trust-card {
  padding: 26px 22px 22px;
  border-radius: 18px;
  border: 1px solid rgba(234, 246, 239, 0.9);
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.06);
  background: linear-gradient(180deg, #ffffff 0%, #fcfcfc 100%);
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
  display: flex;
  flex-direction: column;
}

#prestations .trust-card:hover,
#services .trust-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.10);
}

#prestations .trust-card i,
#services .trust-card i {
  width: 52px;
  height: 52px;
  font-size: 22px;
  margin: 0 auto 10px;
}

#prestations .trust-card h3,
#services .trust-card h3 {
  margin: 2px 0 10px;
  font-size: clamp(18px, 2.1vw, 26px);
  letter-spacing: 0.01em;
}

#prestations .trust-card p,
#services .trust-card p {
  font-size: clamp(14px, 1.15vw, 17px);
  line-height: 1.55;
  color: #333;
}

#prestations .package-price,
#services .package-price {
  display: block;
  margin-top: 6px;
  font-weight: 900;
  color: #d7262f;
  font-size: clamp(18px, 2.0vw, 26px);
  letter-spacing: 0.01em;
}

/* Mise en avant de la formule du milieu */
#prestations .trust-grid article:nth-child(2),
#services .trust-grid article:nth-child(2) {
  border-color: rgba(215, 38, 47, 0.35);
  box-shadow: 0 22px 60px rgba(215, 38, 47, 0.14);
  transform: translateY(-6px);
}

#prestations .package-notes,
#services .package-notes {
  margin-top: 22px;
  padding: 18px 18px;
  border-radius: 16px;
  background: rgba(215, 38, 47, 0.04);
  border: 1px solid rgba(215, 38, 47, 0.12);
}

#prestations .package-notes p + p,
#services .package-notes p + p {
  margin-top: 14px;
}

@media (max-width: 980px) {
  #prestations .trust-grid,
  #services .trust-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  #prestations .trust-grid article:nth-child(2),
  #services .trust-grid article:nth-child(2) {
    transform: none;
  }
}

@media (max-width: 700px) {
  #prestations .trust-card,
  #services .trust-card {
    padding: 22px 16px 18px;
  }

  #prestations .trust-card i,
  #services .trust-card i {
    width: 48px;
    height: 48px;
    font-size: 20px;
  }

  #prestations .package-notes,
  #services .package-notes {
    padding: 16px 14px;
  }
}
.trust-card i {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--secondary-soft);
  color: var(--secondary);
  margin: 0 auto 10px;
  font-size: 24px;
}

.media-carousel {
  --media-gap: 18px;
  position: relative;
  width: min(1040px, 100%);
  margin: 0 auto;
  padding-bottom: 0;
}
.media-viewport {
  overflow-x: auto;
  overflow-y: hidden;
  scrollbar-width: none;
  -ms-overflow-style: none;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
}
.media-viewport::-webkit-scrollbar {
  display: none;
}
.media-track {
  display: flex;
  gap: var(--media-gap);
  direction: ltr;
}
.gallery-item {
  border-radius: 14px;
  overflow: hidden;
  position: relative;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
  min-height: 220px;
  background: #f4f4f4;
}
.media-slide {
  flex: 0 0 calc((100% - (var(--media-gap) * 2)) / 3);
  scroll-snap-align: start;
  scroll-snap-stop: always;
}
.gallery-item img,
.gallery-item video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.gallery-item video::-webkit-media-controls-timeline,
.gallery-item video::-webkit-media-controls-current-time-display,
.gallery-item video::-webkit-media-controls-time-remaining-display {
  display: none !important;
}
.gallery-item .label {
  position: absolute;
  bottom: 12px;
  left: 12px;
  background: rgba(31, 31, 31, 0.78);
  color: #fff;
  font-size: 14px;
  padding: 6px 10px;
  border-radius: 999px;
  display: none;
}
.media-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid #e2e2e2;
  background: #fff;
  color: #151515;
  font-size: 26px;
  line-height: 1;
  box-shadow: 0 10px 18px rgba(0, 0, 0, 0.09);
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
  z-index: 2;
}
.media-btn:hover {
  transform: translateY(-50%) scale(1.05);
  border-color: #cfcfcf;
  box-shadow: 0 14px 24px rgba(0, 0, 0, 0.14);
}
.media-btn.prev { left: -22px; }
.media-btn.next { right: -22px; }

.cta {
  border-radius: 16px;
  text-align: center;
  color: #fff;
  padding: 58px 20px;
  background: linear-gradient(120deg, rgba(215, 38, 47, 0.88), rgba(17, 17, 17, 0.85)),
    url("https://images.unsplash.com/photo-1513104890138-7c749659a591?auto=format&fit=crop&w=1600&q=80") center/cover;
}
.cta h3 {
  margin: 0 0 10px;
  font-size: clamp(30px, 4vw, 52px);
  font-family: var(--title-font);
  font-style: italic;
  font-weight: 700;
}
.cta p { margin: 0 0 20px; font-size: 21px; }

.reviews-section {
  padding-top: 6px;
}
.reviews-carousel {
  position: relative;
  overflow: hidden;
  border: 1px solid #eadfdf;
  border-radius: 22px;
  padding: 34px 70px;
  background:
    radial-gradient(120% 90% at 100% 0%, rgba(31, 143, 78, 0.06), transparent 45%),
    radial-gradient(120% 90% at 0% 100%, rgba(215, 38, 47, 0.06), transparent 45%),
    #fff;
  box-shadow: 0 20px 40px rgba(17, 17, 17, 0.08);
  min-height: 250px;
}
.reviews-carousel [data-reviews-track] {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}
.review-item {
  display: none;
  border: 1px solid #ece6e6;
  border-radius: 14px;
  padding: 14px;
  background: #fff;
  font-family: "Roboto", "Arial", sans-serif;
}
.review-item.active {
  display: block;
  animation: reviewFade 0.35s ease;
}
.review-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 14px;
  margin-bottom: 10px;
}
.review-user {
  display: flex;
  align-items: center;
  gap: 12px;
}
.review-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: inline-grid;
  place-items: center;
  color: #fff;
  font-size: 24px;
  font-weight: 700;
}
.review-author-wrap {
  display: grid;
  gap: 4px;
}
.review-author {
  font-weight: 700;
  font-size: clamp(15px, 1vw, 18px);
  line-height: 1.1;
  color: #d08b4a;
}
.review-date {
  font-size: 12px;
  color: #80868b;
  line-height: 1;
}
.google-icon {
  width: 22px;
  height: 22px;
  display: block;
}
.review-g-only {
  width: 38px;
  height: 38px;
}
.review-stars {
  display: inline-block;
  color: #fbbc04;
  letter-spacing: 2px;
  font-size: 24px;
  line-height: 1;
  margin-bottom: 8px;
}
.review-text {
  margin: 0;
  max-width: 90ch;
  line-height: 1.35;
  color: #202124;
  font-size: clamp(14px, 1vw, 17px);
}
.reviews-meta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 18px;
  font-size: 14px;
  font-weight: 600;
  color: #5f6368;
  background: #f6f6f6;
  border: 1px solid #ececec;
  border-radius: 999px;
  padding: 8px 12px;
}
.reviews-meta-logo {
  display: inline-flex;
  align-items: center;
  gap: 0;
}
.reviews-controls {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.reviews-btn {
  pointer-events: auto;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid #e2e2e2;
  background: #fff;
  color: #151515;
  font-size: 26px;
  line-height: 1;
  box-shadow: 0 10px 18px rgba(0, 0, 0, 0.09);
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}
.reviews-btn:hover {
  transform: translateY(-50%) scale(1.05);
  border-color: #cfcfcf;
  box-shadow: 0 14px 24px rgba(0, 0, 0, 0.14);
}
.reviews-btn.prev { left: 14px; }
.reviews-btn.next { right: 14px; }
.reviews-section .btn.btn-outline {
  margin-top: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 10px 18px;
  border-radius: 999px;
  border-width: 2px;
  box-shadow: 0 8px 16px rgba(215, 38, 47, 0.08);
  transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}
.reviews-section .btn.btn-outline:hover {
  transform: translateY(-1px);
  box-shadow: 0 12px 20px rgba(215, 38, 47, 0.14);
}

@keyframes reviewFade {
  from {
    opacity: 0;
    transform: translateY(8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.contact-wrap {
  background: var(--light);
  border-top: 1px solid #f2dddd;
  border-bottom: 1px solid #f2dddd;
}
.contact-layout {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 24px;
  align-items: start;
}
.contact-info {
  background: #fff;
  border-radius: 14px;
  padding: 24px;
  border: 1px solid #f0e4e4;
}
.contact-info ul { margin: 14px 0 0; padding: 0; list-style: none; display: grid; gap: 8px; }
.contact-info li i { color: var(--secondary); width: 20px; }

.contact-form {
  background: #fff;
  border-radius: 14px;
  border: 1px solid #f0e4e4;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.05);
  padding: 24px;
}
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.field { display: grid; gap: 6px; }
.field.full { grid-column: 1 / -1; }
.field label { font-weight: 600; }
.field .required-mark {
  color: #ff4b4b;
  font-weight: 700;
}
.field input, .field select, .field textarea {
  width: 100%;
  border: 1px solid #d9d9d9;
  border-radius: 10px;
  padding: 12px;
  font: inherit;
  background: #fff;
}
.field textarea { min-height: 130px; resize: vertical; }
.small-note { font-size: 13px; color: #767676; margin-top: 10px; }
.form-status-message {
  margin-top: 10px;
  font-weight: 600;
}
.form-status-message.success { color: #1f8f4e; }
.form-status-message.error { color: #d7262f; }
.contact-form.is-submitted {
  opacity: 0.92;
}

footer {
  background: var(--dark);
  color: #eee;
  padding: 34px 0 16px;
  margin-top: 10px;
}
.footer-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}
.footer-brand {
  display: grid;
  gap: 6px;
}
.footer-brand strong {
  font-size: 24px;
  color: #fff;
  line-height: 1.05;
}
.footer-brand span {
  color: #cfd3d7;
  font-size: 15px;
}
.footer-social { display: flex; align-items: center; gap: 10px; }
.footer-social .social-link {
  border-color: #ffffff;
  background: #ffffff;
  color: #111111;
  width: 50px;
  height: 50px;
  font-size: 24px;
}
.footer-social .social-link.instagram { color: #111111; }
.footer-social .social-link.whatsapp { color: #111111; }
.footer-social .social-link.phone { color: #111111; }
.footer-extra {
  margin-top: 18px;
  padding-top: 14px;
  border-top: 1px solid #343434;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}
.footer-col {
  display: grid;
  gap: 8px;
}
.footer-title {
  margin: 0;
  color: #fff;
  font-size: 15px;
  font-weight: 700;
}
.footer-links,
.footer-info {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 6px;
  color: #cfd3d7;
  font-size: 14px;
}
.footer-links a {
  color: #cfd3d7;
}
.footer-links a:hover {
  color: #fff;
}
.copyright {
  margin-top: 18px;
  padding-top: 12px;
  border-top: 1px solid #444;
  color: #bfc4c9;
  font-size: 13px;
  text-align: center;
}

.footer-kosher {
  display: flex;
  justify-content: center;
  margin: 18px 0 0;
}
.footer-kosher img {
  width: 240px;
  height: auto;
  display: block;
  mix-blend-mode: normal;
}

.floating-actions {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 70;
  display: grid;
  gap: 10px;
}
.floating-btn {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  display: inline-grid;
  place-items: center;
  color: #111111;
  font-size: 28px;
  border: 1px solid #ffffff;
  background: #ffffff;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.2);
  transition: transform 0.2s ease;
}
.floating-btn:hover { transform: translateY(-2px); }
.floating-btn.whatsapp { background: #ffffff; color: #111111; }
.floating-btn.instagram { background: #ffffff; color: #111111; }
.floating-btn.phone { background: #ffffff; color: #111111; }

body[dir="rtl"] {
  font-family: "Arial", "Rosario", sans-serif;
}
body[dir="rtl"] .hero,
body[dir="rtl"] .section-title,
body[dir="rtl"] .trust-card,
body[dir="rtl"] .contact-info,
body[dir="rtl"] .contact-form {
  text-align: right;
}
body[dir="rtl"] .topbar {
  flex-direction: row-reverse;
}
body[dir="rtl"] .header-cta {
  justify-content: flex-start;
}
body[dir="rtl"] .gallery-item .label {
  left: auto;
  right: 12px;
}
body[dir="rtl"] .media-btn.prev {
  left: auto;
  right: -22px;
}
body[dir="rtl"] .media-btn.next {
  right: auto;
  left: -22px;
}
body[dir="rtl"] .footer-extra,
body[dir="rtl"] .footer-col,
body[dir="rtl"] .footer-links,
body[dir="rtl"] .footer-info {
  text-align: right;
}
body[dir="rtl"] .reviews-btn.prev {
  left: auto;
  right: 14px;
}
body[dir="rtl"] .reviews-btn.next {
  right: auto;
  left: 14px;
}

@media (max-width: 1180px) {
  nav ul { gap: 14px; font-size: 16px; }
  .header-cta .social-link,
  .header-cta .btn-outline { display: none; }
}

@media (max-width: 980px) {
  nav { display: none; }
  .trust-grid { grid-template-columns: 1fr 1fr; }
  .media-slide { flex-basis: calc((100% - var(--media-gap)) / 2); }
  .gallery-item { min-height: 200px; }
  .contact-layout { grid-template-columns: 1fr; }
  .hero { padding-top: 150px; }
  section { padding: 34px 0; }
  .reviews-carousel { padding: 28px 56px; }
  .review-text { font-size: clamp(15px, 1.8vw, 19px); }
}
@media (max-width: 700px) {
  section { padding: 26px 0; }
  .section-title { margin-bottom: 14px; }
  .topbar { padding: 8px 0; }
  .logo { font-size: 24px; }
  .lang-switch a { font-size: 11px; padding: 4px 7px; }
  .header-cta .btn-primary { padding: 9px 12px; font-size: 14px; }
  .trust-grid, .form-grid { grid-template-columns: 1fr; }
  .media-slide { flex-basis: 100%; }
  .media-carousel { width: min(320px, 86vw); }
  .gallery-item { min-height: 145px; }
  .gallery-item video,
  .gallery-item img { aspect-ratio: 9 / 16; }
  .media-carousel { padding-bottom: 70px; }
  .media-btn {
    top: auto;
    bottom: 8px;
    transform: none;
  }
  .media-btn:hover { transform: scale(1.05); }
  .media-btn.prev { left: calc(50% - 58px); }
  .media-btn.next { right: calc(50% - 58px); }
  body[dir="rtl"] .media-btn.prev { right: calc(50% - 58px); left: auto; }
  body[dir="rtl"] .media-btn.next { left: calc(50% - 58px); right: auto; }
  .hero-actions { flex-direction: column; align-items: center; }
  .hero-actions .btn { width: min(320px, 100%); }
  .reviews-carousel { padding: 22px 16px 70px; min-height: 280px; }
  .reviews-carousel [data-reviews-track] {
    grid-template-columns: 1fr;
  }
  .review-top {
    flex-direction: row;
  }
  .review-avatar {
    width: 42px;
    height: 42px;
    font-size: 24px;
  }
  .review-author { font-size: 22px; }
  .review-stars { font-size: 28px; }
  .review-text { font-size: 18px; line-height: 1.55; }
  .reviews-meta { font-size: 13px; }
  .reviews-section .btn.btn-outline { width: 100%; }
  .reviews-btn {
    top: auto;
    bottom: 16px;
    transform: none;
  }
  .reviews-btn:hover { transform: scale(1.05); }
  .reviews-btn.prev { left: calc(50% - 58px); }
  .reviews-btn.next { right: calc(50% - 58px); }
  .floating-actions { right: 12px; bottom: 12px; }
  footer { padding: 24px 0 90px; }
  .footer-row {
    justify-content: center;
    text-align: center;
  }
  .footer-extra {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .footer-kosher img {
    width: min(260px, 86vw);
  }
  .footer-brand strong { font-size: 21px; }
  .footer-brand span { font-size: 14px; }
}

/* ===== Global dark theme ===== */
body {
  background: #070709;
  color: #ececec;
}

header {
  background: rgba(10, 10, 12, 0.9);
  border-bottom: 1px solid #1e1f23;
}

.logo,
nav ul li a,
.lang-switch a {
  color: #f3f3f3;
}

.lang-switch a {
  border-color: #3b3d45;
  background: #131419;
}

.lang-switch a.active {
  background: #f4f4f4;
  color: #0f1013;
  border-color: #f4f4f4;
}

.social-link {
  border-color: #3b3d45;
  background: #15161b;
}

.btn-outline {
  border-color: #f25c64;
  color: #f25c64;
}

.section-title h2,
.section-title h3 {
  color: #f6f6f6;
}

.section-title p {
  color: #c8c8cc;
}

.trust-card,
.gallery-item,
.reviews-carousel,
.contact-info,
.contact-form {
  background: #121317;
  border-color: #25262c;
  color: #ececec;
}

.trust-card p,
.review-text,
.package-notes,
.footer-info,
.footer-links {
  color: #d3d3d8;
}

.package-notes {
  background: rgba(255, 255, 255, 0.04);
  border-color: #2d2f36;
}

.review-item {
  background: #14161b;
  border-color: #2a2c33;
}

.reviews-meta {
  background: #1b1d23;
  border-color: #2e3038;
  color: #d0d4da;
}

.reviews-btn,
.media-btn {
  background: #171920;
  border-color: #2f323a;
  color: #f1f1f1;
}

.contact-wrap {
  background: #0f1013;
  border-top: 1px solid #22242a;
  border-bottom: 1px solid #22242a;
}

.field input,
.field select,
.field textarea {
  background: #12141a;
  border-color: #31343d;
  color: #f2f2f2;
}

.field label,
.contact-info li {
  color: #e7e7eb;
}

.footer-extra {
  border-top-color: #2f3138;
}

.copyright {
  border-top-color: #2f3138;
  color: #b8bcc4;
}

/* Dark harmony: packages + hashgaha */
#prestations .trust-card,
#services .trust-card {
  background: linear-gradient(180deg, #11131a 0%, #0d0f14 100%);
  border-color: #2a2d36;
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.35);
}

#prestations .trust-card:hover,
#services .trust-card:hover {
  box-shadow: 0 18px 46px rgba(0, 0, 0, 0.46);
  border-color: #3a3e4a;
}

#prestations .trust-card h3,
#services .trust-card h3 {
  color: #f5f7fb;
}

#prestations .trust-card p,
#services .trust-card p {
  color: #d2d6de;
}

#prestations .trust-card i,
#services .trust-card i {
  background: rgba(31, 143, 78, 0.18);
  color: #74d495;
}

#prestations .package-price,
#services .package-price {
  color: #ff6e76;
}

#prestations .trust-grid article:nth-child(2),
#services .trust-grid article:nth-child(2) {
  border-color: rgba(242, 92, 100, 0.65);
  box-shadow: 0 0 0 1px rgba(242, 92, 100, 0.35), 0 22px 60px rgba(242, 92, 100, 0.22);
}

#prestations .package-notes,
#services .package-notes {
  background: rgba(16, 18, 24, 0.95);
  border-color: #2a2d36;
  color: #d2d6de;
}

#prestations .package-notes strong,
#services .package-notes strong {
  color: #f4f6fb;
}

#prestations .package-notes em,
#services .package-notes em {
  color: #b8bdc8;
}

.footer-kosher {
  margin: 0;
  padding: 18px 0 14px;
  background: #0a0b0f;
  border-top: 1px solid #1f222a;
  border-bottom: 1px solid #1f222a;
}

.footer-kosher img {
  width: min(340px, 88vw);
  padding: 10px;
  border-radius: 14px;
  background: #ffffff;
  border: 1px solid #dce1ea;
  box-shadow: 0 10px 26px rgba(13, 18, 28, 0.18);
}

@media (prefers-reduced-motion: reduce) {
  .reveal-on-scroll {
    opacity: 1;
    transform: none;
    transition: none;
  }
}
