/* ==========================================================
   RENAUDIN COUVERTURES — Custom styles
   ========================================================== */

html {
  scroll-behavior: smooth;
}

body {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  padding-top: 76px; /* height of sticky nav (no top bar on mobile) */
}

@media (min-width: 768px) {
  body {
    padding-top: 116px; /* sticky nav + top info bar */
  }
}

/* ---------- Desktop nav links ---------- */
.nav-link {
  position: relative;
  font-size: 14px;
  font-weight: 500;
  color: #475569;
  letter-spacing: 0.01em;
  padding: 6px 0;
  transition: color 0.2s ease;
}

.nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -4px;
  height: 2px;
  background: #66C5E0;
  border-radius: 2px;
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-link:hover {
  color: #0F2534;
}

.nav-link:hover::after {
  transform: scaleX(1);
}

.nav-link-active {
  color: #0F2534;
  font-weight: 600;
}

.nav-link-active::after {
  transform: scaleX(1);
}

/* ---------- Mobile menu links ---------- */
.mobile-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 16px;
  margin: 0 -16px;
  border-radius: 14px;
  font-family: 'Poppins', sans-serif;
  font-size: 17px;
  font-weight: 600;
  color: #475569;
  transition: all 0.2s ease;
}

.mobile-link svg {
  opacity: 0;
  transform: translateX(-8px);
  transition: all 0.25s ease;
  color: #66C5E0;
}

.mobile-link:hover,
.mobile-link:focus-visible {
  background: #f8fafc;
  color: #0F2534;
}

.mobile-link:hover svg,
.mobile-link:focus-visible svg {
  opacity: 1;
  transform: translateX(0);
}

.mobile-link-active {
  background: linear-gradient(135deg, rgba(102, 197, 224, 0.12), rgba(102, 197, 224, 0.04));
  color: #0F2534;
}

.mobile-link-active svg {
  opacity: 1;
  transform: translateX(0);
}

/* ---------- Mobile menu — open state ---------- */
body.menu-open {
  overflow: hidden;
}

body.menu-open #mobile-overlay {
  opacity: 1;
  pointer-events: auto;
}

body.menu-open #mobile-menu {
  transform: translateX(0);
  box-shadow: -20px 0 60px -20px rgba(15, 37, 52, 0.25);
}

/* ---------- Hamburger — cross animation ---------- */
body.menu-open #menu-btn [data-bar="1"] {
  transform: translate(-50%, -50%) rotate(45deg);
}
body.menu-open #menu-btn [data-bar="2"] {
  opacity: 0;
}
body.menu-open #menu-btn [data-bar="3"] {
  transform: translate(-50%, -50%) rotate(-45deg);
}

/* ---------- Scrolled nav — subtle lift ---------- */
#main-nav.scrolled {
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 1px 3px rgba(15, 37, 52, 0.06), 0 4px 20px -8px rgba(15, 37, 52, 0.08);
}

/* ==========================================================
   SERVICE CARDS
   ========================================================== */
.service-card {
  display: block;
  background: white;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(226, 232, 240, 0.8);
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1),
              box-shadow 0.35s cubic-bezier(0.4, 0, 0.2, 1),
              border-color 0.35s ease;
}

.service-card:hover {
  transform: translateY(-6px);
  border-color: rgba(102, 197, 224, 0.4);
  box-shadow: 0 20px 40px -15px rgba(15, 37, 52, 0.2), 0 8px 16px -8px rgba(15, 37, 52, 0.08);
}

.service-card-image {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: #0F2534;
}

.service-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.02);
  transition: transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.service-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(15, 37, 52, 0.55) 0%, rgba(15, 37, 52, 0) 50%);
  pointer-events: none;
}

.service-card-num {
  position: absolute;
  top: 16px;
  left: 16px;
  font-family: 'Poppins', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: white;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  padding: 6px 10px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.25);
}

.service-card-arrow {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: white;
  color: #0F2534;
  border-radius: 999px;
  opacity: 0;
  transform: translate(8px, -8px) rotate(-30deg);
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-card:hover .service-card-arrow {
  opacity: 1;
  transform: translate(0, 0) rotate(0deg);
  background: #66C5E0;
}

.service-card-body {
  padding: 22px 22px 24px;
}

/* ==========================================================
   FAQ
   ========================================================== */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  background: white;
  border: 1px solid #e2e8f0;
  border-radius: 18px;
  transition: border-color 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
  overflow: hidden;
}

.faq-item:hover {
  border-color: rgba(102, 197, 224, 0.4);
}

.faq-item[open] {
  border-color: rgba(102, 197, 224, 0.5);
  box-shadow: 0 10px 30px -12px rgba(15, 37, 52, 0.08);
}

.faq-summary {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 22px 24px;
  cursor: pointer;
  list-style: none;
  user-select: none;
  transition: color 0.2s ease;
}

.faq-summary::-webkit-details-marker {
  display: none;
}

.faq-num {
  flex-shrink: 0;
  font-family: 'Poppins', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  color: #94a3b8;
  transition: color 0.25s ease;
}

.faq-item[open] .faq-num {
  color: #66C5E0;
}

.faq-question {
  flex: 1;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 16px;
  color: #0F2534;
  line-height: 1.4;
}

.faq-icon {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #e2e8f0;
  border-radius: 999px;
  color: #0F2534;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-item:hover .faq-icon {
  border-color: #66C5E0;
  color: #66C5E0;
}

.faq-item[open] .faq-icon {
  background: #0F2534;
  border-color: #0F2534;
  color: white;
  transform: rotate(45deg);
}

.faq-content {
  padding: 0 24px 24px 24px;
  padding-left: 68px; /* align with question, past the number */
}

.faq-content p {
  color: #64748b;
  font-size: 15px;
  line-height: 1.65;
}

.faq-content p strong {
  color: #0F2534;
  font-weight: 600;
}

/* Smooth open/close animation via native <details> */
.faq-item {
  --content-height: 0;
}

.faq-content {
  overflow: hidden;
  max-height: 0;
  opacity: 0;
  transform: translateY(-4px);
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1),
              opacity 0.25s ease,
              transform 0.3s ease,
              padding 0.3s ease;
  padding-top: 0;
  padding-bottom: 0;
}

.faq-item[open] .faq-content {
  max-height: 500px;
  opacity: 1;
  transform: translateY(0);
  padding-bottom: 24px;
}

@media (max-width: 640px) {
  .faq-summary {
    gap: 12px;
    padding: 18px 20px;
  }
  .faq-question {
    font-size: 15px;
  }
  .faq-content {
    padding-left: 20px;
    padding-right: 20px;
  }
}

/* ==========================================================
   PRESTATION BLOCKS — editorial alternating layout
   ========================================================== */
.presta-block {
  scroll-margin-top: 140px; /* offset for anchor jumps (sticky header) */
}

.presta-visual {
  position: relative;
}

.presta-image {
  position: relative;
  aspect-ratio: 4 / 5;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 30px 60px -30px rgba(15, 37, 52, 0.3),
              0 10px 25px -10px rgba(15, 37, 52, 0.12);
}

.presta-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(15, 37, 52, 0.2) 0%, transparent 40%);
  pointer-events: none;
}

.presta-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1s cubic-bezier(0.4, 0, 0.2, 1);
}

.presta-block:hover .presta-image img {
  transform: scale(1.04);
}

.presta-badge {
  position: absolute;
  bottom: -14px;
  left: 24px;
  display: flex;
  align-items: center;
  gap: 10px;
  background: white;
  padding: 12px 18px 12px 14px;
  border-radius: 999px;
  box-shadow: 0 15px 35px -10px rgba(15, 37, 52, 0.25);
}

.presta-badge-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  background: #0F2534;
  color: #66C5E0;
  font-family: 'Poppins', sans-serif;
  font-size: 12px;
  font-weight: 700;
  border-radius: 999px;
  letter-spacing: 0.05em;
}

.presta-badge-label {
  font-family: 'Poppins', sans-serif;
  font-size: 11px;
  font-weight: 600;
  color: #0F2534;
  text-transform: uppercase;
  letter-spacing: 0.18em;
}

/* --- Text side --- */
.presta-kicker {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #66C5E0;
  margin-bottom: 14px;
}

.presta-title {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: clamp(2rem, 3.5vw, 2.75rem);
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: #0F2534;
  margin-bottom: 18px;
}

.presta-desc {
  font-size: 16px;
  line-height: 1.7;
  color: #64748b;
  margin-bottom: 24px;
}

.presta-list {
  list-style: none;
  padding: 0;
  margin: 0 0 32px 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
}

@media (min-width: 500px) {
  .presta-list {
    grid-template-columns: 1fr 1fr;
    gap: 10px 18px;
  }
}

.presta-list li {
  position: relative;
  padding-left: 28px;
  font-size: 14px;
  font-weight: 500;
  color: #334155;
  line-height: 1.5;
}

.presta-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 3px;
  width: 18px;
  height: 18px;
  border-radius: 999px;
  background: rgba(102, 197, 224, 0.18);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%233fa8c8' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 11px 11px;
}

.presta-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #0F2534;
  color: white;
  font-weight: 600;
  font-size: 13px;
  padding: 14px 24px;
  border-radius: 999px;
  transition: background 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
}

.presta-cta:hover {
  background: #66C5E0;
  color: #0F2534;
  box-shadow: 0 15px 30px -10px rgba(102, 197, 224, 0.5);
}

.presta-cta:hover svg {
  transform: translateX(3px);
}

.presta-cta svg {
  transition: transform 0.25s ease;
}


/* ==========================================================
   GALERIE
   ========================================================== */

/* ---------- Filtres ---------- */
.galerie-filter {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  border-radius: 999px;
  border: 1px solid #e2e8f0;
  background: white;
  color: #475569;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.01em;
  cursor: pointer;
  transition: color 0.2s ease, border-color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.galerie-filter:hover {
  color: #0F2534;
  border-color: #cbd5e1;
  background: #f8fafc;
}

.galerie-filter-active,
.galerie-filter-active:hover {
  background: #0F2534;
  color: white;
  border-color: #0F2534;
  box-shadow: 0 10px 20px -8px rgba(15, 37, 52, 0.35);
}

.galerie-filter-count {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 20px;
  height: 20px;
  padding: 0 6px;
  border-radius: 999px;
  background: #f1f5f9;
  color: #475569;
  font-size: 10px;
  font-weight: 700;
  transition: background 0.2s ease, color 0.2s ease;
}

.galerie-filter-active .galerie-filter-count {
  background: rgba(255, 255, 255, 0.15);
  color: white;
}

/* ---------- Items ---------- */
.galerie-item {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: 14px;
  aspect-ratio: 4 / 5;
  background: #f1f5f9;
  cursor: zoom-in;
  box-shadow: 0 4px 14px -6px rgba(15, 37, 52, 0.15);
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.galerie-item:hover {
  box-shadow: 0 25px 40px -15px rgba(15, 37, 52, 0.3);
  transform: translateY(-3px);
}

.galerie-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}

.galerie-item:hover img {
  transform: scale(1.06);
}

/* ---------- Overlay ---------- */
.galerie-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  padding: 14px;
  background: linear-gradient(to top, rgba(15, 37, 52, 0.75) 0%, rgba(15, 37, 52, 0) 55%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

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

.galerie-overlay-label {
  display: inline-flex;
  align-items: center;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.95);
  color: #0F2534;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  backdrop-filter: blur(4px);
}

.galerie-overlay-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 999px;
  background: #66C5E0;
  color: #0F2534;
  box-shadow: 0 6px 14px -4px rgba(102, 197, 224, 0.6);
}

/* Animation apparition items */
.galerie-item {
  animation: galerie-fade-in 0.4s cubic-bezier(0.22, 1, 0.36, 1) both;
}

@keyframes galerie-fade-in {
  from { opacity: 0; transform: translateY(10px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ---------- Pagination ---------- */
.galerie-page-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 40px;
  height: 40px;
  padding: 0 12px;
  border-radius: 10px;
  background: white;
  border: 1px solid #e2e8f0;
  color: #475569;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: color 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.galerie-page-btn:hover:not(:disabled) {
  color: #0F2534;
  border-color: #cbd5e1;
  background: #f8fafc;
}

.galerie-page-btn:disabled {
  opacity: 0.4;
  cursor: not-allowed;
}

.galerie-page-btn-active,
.galerie-page-btn-active:hover {
  background: #0F2534;
  border-color: #0F2534;
  color: white;
}

.galerie-page-dots {
  padding: 0 6px;
  color: #94a3b8;
  font-weight: 600;
  user-select: none;
}

/* ---------- GLightbox custom (brand touch) ---------- */
.glightbox-clean .gnext,
.glightbox-clean .gprev,
.glightbox-clean .gclose {
  background-color: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(6px);
  border-radius: 999px;
  transition: background-color 0.2s ease;
}

.glightbox-clean .gnext:hover,
.glightbox-clean .gprev:hover,
.glightbox-clean .gclose:hover {
  background-color: rgba(102, 197, 224, 0.85);
}

.glightbox-clean .gslide-description {
  display: none !important;
}

.glightbox-clean .gslide-title {
  display: none !important;
}


/* ==========================================================
   CONTACT
   ========================================================== */

/* ---------- Contact cards (left column) ---------- */
.contact-card {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px 22px;
  background: white;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  transition: border-color 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
}

.contact-card:not(.contact-card-static):hover {
  border-color: #66C5E0;
  box-shadow: 0 20px 35px -20px rgba(102, 197, 224, 0.4);
  transform: translateY(-2px);
}

.contact-card-icon {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(102, 197, 224, 0.12);
  color: #3fa8c8;
  transition: background 0.25s ease, color 0.25s ease;
}

.contact-card:not(.contact-card-static):hover .contact-card-icon {
  background: #66C5E0;
  color: #0F2534;
}

.contact-card-body {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.contact-card-label {
  font-size: 10px;
  font-weight: 700;
  color: #94a3b8;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.contact-card-value {
  font-family: 'Poppins', sans-serif;
  font-size: 15px;
  font-weight: 600;
  color: #0F2534;
  line-height: 1.35;
}

.contact-card-hint {
  font-size: 12px;
  color: #64748b;
  margin-top: 2px;
}

.contact-card-arrow {
  flex-shrink: 0;
  width: 16px;
  height: 16px;
  color: #cbd5e1;
  align-self: center;
  transition: color 0.25s ease, transform 0.25s ease;
}

.contact-card:not(.contact-card-static):hover .contact-card-arrow {
  color: #0F2534;
  transform: translateX(3px);
}

/* ---------- Form wrapper ---------- */
.contact-form-wrapper {
  background: white;
  padding: 32px;
  border: 1px solid #e2e8f0;
  border-radius: 20px;
  box-shadow: 0 30px 60px -30px rgba(15, 37, 52, 0.15);
}

@media (min-width: 768px) {
  .contact-form-wrapper {
    padding: 44px;
  }
}

/* ---------- Form fields ---------- */
.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-label {
  font-size: 12px;
  font-weight: 600;
  color: #0F2534;
  letter-spacing: 0.02em;
}

.form-input,
.form-select,
.form-textarea {
  width: 100%;
  padding: 14px 18px;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  background: #f8fafc;
  color: #0F2534;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  line-height: 1.4;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.form-input::placeholder,
.form-textarea::placeholder {
  color: #94a3b8;
}

.form-input:hover,
.form-select:hover,
.form-textarea:hover {
  border-color: #cbd5e1;
  background: white;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  outline: none;
  border-color: #66C5E0;
  background: white;
  box-shadow: 0 0 0 4px rgba(102, 197, 224, 0.15);
}

.form-textarea {
  resize: vertical;
  min-height: 130px;
  font-family: 'Inter', sans-serif;
}

/* Custom select with chevron */
.form-select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='none' stroke='%2364748b' stroke-width='2' viewBox='0 0 24 24'%3e%3cpath stroke-linecap='round' stroke-linejoin='round' d='M19 9l-7 7-7-7'/%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 46px;
  cursor: pointer;
}

/* ---------- Checkbox ---------- */
.form-check {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  cursor: pointer;
  user-select: none;
}

.form-check input[type="checkbox"] {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.form-check-box {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  border: 1.5px solid #cbd5e1;
  border-radius: 6px;
  background: white;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: transparent;
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
  margin-top: 1px;
}

.form-check:hover .form-check-box {
  border-color: #66C5E0;
}

.form-check input[type="checkbox"]:checked + .form-check-box {
  background: #66C5E0;
  border-color: #66C5E0;
  color: #0F2534;
}

.form-check input[type="checkbox"]:focus-visible + .form-check-box {
  box-shadow: 0 0 0 4px rgba(102, 197, 224, 0.25);
}

.form-check-label {
  font-size: 12.5px;
  line-height: 1.55;
  color: #64748b;
}

/* ---------- Submit button ---------- */
.contact-submit {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 28px;
  border-radius: 999px;
  background: #0F2534;
  color: white;
  font-weight: 600;
  font-size: 13.5px;
  letter-spacing: 0.01em;
  cursor: pointer;
  border: 0;
  transition: background 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
}

.contact-submit:hover {
  background: #66C5E0;
  color: #0F2534;
  box-shadow: 0 18px 35px -12px rgba(102, 197, 224, 0.6);
}

.contact-submit:hover svg {
  transform: translateX(3px);
}

.contact-submit svg {
  transition: transform 0.25s ease;
}

.contact-submit:active {
  transform: translateY(1px);
}


/* ==========================================================
   SWEETALERT2 — custom Renaudin
   ========================================================== */

.swal-renaudin.swal2-popup {
  border-radius: 20px !important;
  padding: 36px 32px 28px !important;
  font-family: 'Inter', sans-serif !important;
  box-shadow: 0 30px 60px -20px rgba(15, 37, 52, 0.25) !important;
  max-width: 420px !important;
}

.swal-renaudin .swal2-icon {
  margin-bottom: 20px !important;
}

.swal-renaudin-title {
  font-family: 'Poppins', sans-serif !important;
  font-size: 20px !important;
  font-weight: 700 !important;
  color: #0F2534 !important;
  margin-bottom: 8px !important;
}

.swal-renaudin-html {
  font-size: 14px !important;
  color: #475569 !important;
  line-height: 1.6 !important;
}

.swal-renaudin-html strong {
  color: #0F2534;
  font-weight: 600;
}

.swal2-actions {
  margin-top: 24px !important;
  gap: 10px !important;
}

.swal-renaudin-btn-confirm {
  display: inline-flex !important;
  align-items: center !important;
  padding: 12px 26px !important;
  border-radius: 999px !important;
  background: #0F2534 !important;
  color: white !important;
  font-family: 'Inter', sans-serif !important;
  font-size: 13px !important;
  font-weight: 600 !important;
  cursor: pointer !important;
  border: none !important;
  transition: background 0.2s ease !important;
}

.swal-renaudin-btn-confirm:hover {
  background: #66C5E0 !important;
  color: #0F2534 !important;
}

.swal-renaudin-btn-cancel {
  display: inline-flex !important;
  align-items: center !important;
  padding: 12px 26px !important;
  border-radius: 999px !important;
  background: #f1f5f9 !important;
  color: #475569 !important;
  font-family: 'Inter', sans-serif !important;
  font-size: 13px !important;
  font-weight: 600 !important;
  cursor: pointer !important;
  border: none !important;
  transition: background 0.2s ease !important;
}

.swal-renaudin-btn-cancel:hover {
  background: #e2e8f0 !important;
}

/* Couleurs des icônes Swal */
.swal2-icon.swal2-success {
  border-color: #66C5E0 !important;
  color: #66C5E0 !important;
}
.swal2-icon.swal2-success [class^='swal2-success-line'] {
  background-color: #66C5E0 !important;
}
.swal2-icon.swal2-success .swal2-success-ring {
  border-color: rgba(102, 197, 224, 0.3) !important;
}


/* ==========================================================
   MENTIONS LÉGALES — TOC sticky
   ========================================================== */

.mentions-toc-link {
  display: block;
  padding: 9px 0 9px 18px;
  margin-left: -1px;
  border-left: 2px solid transparent;
  color: #64748b;
  font-size: 13px;
  font-weight: 500;
  line-height: 1.4;
  transition: color 0.2s ease, border-color 0.2s ease, padding-left 0.2s ease;
}

.mentions-toc-link:hover {
  color: #0F2534;
  border-left-color: #66C5E0;
  padding-left: 22px;
}

.mentions-toc-link:target,
article:target ~ nav .mentions-toc-link {
  color: #0F2534;
  border-left-color: #0F2534;
}


/* ==========================================================
   QUICK CALL — bouton d'appel flottant
   ========================================================== */

.quick-call {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 40;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 8px 8px 8px 8px;
  background: #0F2534;
  color: white;
  border-radius: 999px;
  box-shadow: 0 18px 35px -10px rgba(15, 37, 52, 0.35), 0 6px 12px -4px rgba(15, 37, 52, 0.2);
  text-decoration: none;
  transition: transform 0.3s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.3s ease, background 0.3s ease;
}

.quick-call:hover {
  background: #66C5E0;
  color: #0F2534;
  transform: translateY(-3px);
  box-shadow: 0 25px 45px -10px rgba(102, 197, 224, 0.55), 0 10px 20px -6px rgba(15, 37, 52, 0.2);
}

.quick-call-icon {
  position: relative;
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 999px;
  background: #66C5E0;
  color: #0F2534;
  transition: background 0.3s ease, color 0.3s ease;
}

.quick-call:hover .quick-call-icon {
  background: white;
  color: #0F2534;
}

.quick-call-icon::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 999px;
  background: #66C5E0;
  animation: quick-call-ping 2.2s cubic-bezier(0, 0, 0.2, 1) infinite;
  z-index: 0;
}

.quick-call-icon > svg {
  position: relative;
  z-index: 1;
}

@keyframes quick-call-ping {
  0%   { transform: scale(1);   opacity: 0.55; }
  70%  { transform: scale(1.8); opacity: 0; }
  100% { transform: scale(1.8); opacity: 0; }
}

.quick-call-label {
  display: flex;
  flex-direction: column;
  padding-right: 16px;
  line-height: 1;
}

.quick-call-top {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  opacity: 0.7;
}

.quick-call:hover .quick-call-top {
  opacity: 0.85;
}

.quick-call-num {
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  font-weight: 700;
  margin-top: 4px;
  letter-spacing: 0.01em;
}

/* Mobile: icône seule, pas d'étiquette */
@media (max-width: 767px) {
  .quick-call {
    right: 16px;
    bottom: 16px;
    padding: 6px;
  }
  .quick-call-label {
    display: none;
  }
  .quick-call-icon {
    width: 52px;
    height: 52px;
  }
}

/* Masquer le bouton quand le menu mobile est ouvert (sinon il passe au-dessus) */
body.menu-open .quick-call {
  opacity: 0;
  pointer-events: none;
  transform: translateY(10px);
}
