/* ============================================================
   SAS SCMP — Main Stylesheet
   Design tokens extracted from Elementor Kit (backup)
   ============================================================ */


/* ── Custom properties ────────────────────────── */
:root {
  --color-primary:      #001D3D;
  --color-accent:       #E85D04;
  --color-accent-dark:  #C34C00;
  --color-accent-border:#9F3E00;
  --color-white:        #FFFFFF;
  --color-text:         #7A7A7A;
  --color-text-dark:    #0D1427;
  --color-bg-light:     #F6F7FA;
  --color-border:       #EAECF1;
  --color-border-mid:   #c4c4c4;
  --color-gray-light:   #E5E5E5;

  --font-heading: 'Mulish', sans-serif;
  --font-body:    'Roboto', sans-serif;

  --container-width: 1140px;
  --radius-btn:  40px;
  --radius-input: 6px;

  /* Announcement bar height (for layout calculations) */
  --bar-height: 44px;
}

/* ── Reset ────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-body);
  color: var(--color-text);
  background: #fff;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }

a { color: inherit; text-decoration: none; }

ul { list-style: none; }

/* ── Container ────────────────────────────────── */
.container {
  width: 100%;
  max-width: var(--container-width);
  margin-inline: auto;
  padding-inline: 20px;
}

/* ── Buttons ───────────────────────────────────── */
.btn {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 400;
  color: var(--color-white);
  background: linear-gradient(331deg, var(--color-accent) 0%, var(--color-accent-dark) 100%);
  border: 7px solid var(--color-accent-border);
  border-radius: var(--radius-btn);
  padding: 13px 38px;
  cursor: pointer;
  transition: background 0.25s ease, border-color 0.25s ease;
  text-align: center;
}
.btn:hover,
.btn:focus {
  background: linear-gradient(331deg, var(--color-accent-dark) 0%, var(--color-accent) 100%);
  outline: none;
}

/* ── Section spacing ───────────────────────────── */
.section { padding-block: 80px; }
.container--narrow { max-width: 800px; margin-inline: auto; }

/* ============================================================
   ANNOUNCEMENT BAR
   ============================================================ */
.announcement-bar {
  background-color: var(--color-accent);
  color: var(--color-white);
  font-family: var(--font-body);
  font-size: 0.875rem;
  height: var(--bar-height);
}
/* Inner container handles flex layout, max-width, and padding */
.announcement-bar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  gap: 12px;
}
.announcement-bar__text {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 500;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.announcement-bar__text a {
  color: inherit;
  font-weight: 700;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 2px;
}
.announcement-bar__social {
  display: flex;
  align-items: center;
  gap: 5px;
  flex-shrink: 0;
}
/* Dark navy icon badges in announcement bar */
.bar-social-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background-color: var(--color-primary);
  color: var(--color-white);
  font-size: 0.75rem;
  transition: opacity 0.2s;
}
.bar-social-icon:hover { opacity: 0.8; }

/* ============================================================
   HEADER / NAVIGATION
   ============================================================ */
.site-header {
  background: var(--color-white);
  position: relative;
  z-index: 10;
  margin-bottom: -80px; /* Overlap hero section below by the full nav height */
}
.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
  gap: 24px;
}
.site-header__logo {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  width: 33.3%;
}
.site-header__logo img {
  width: 49%;
  height: auto;
}

/* ── Desktop nav ───────────────────────────────── */
.site-nav { display: flex; align-items: center; }

.nav-menu {
  display: flex;
  align-items: center;
  gap: 4px;
}
.nav-menu__item a {
  display: block;
  font-family: var(--font-heading);
  font-size: 0.9375rem;
  font-weight: 600;
  color: #000000;
  padding: 15px;
  transition: color 0.2s;
}
.nav-menu__item a:hover,
.nav-menu__item.active > a {
  color: var(--color-accent);
  background: none;
}
.nav-menu__nolink {
  display: block;
  font-family: var(--font-heading);
  font-size: 0.9375rem;
  font-weight: 600;
  color: #000000;
  padding: 15px;
  cursor: default;
  transition: color 0.2s;
}
.nav-menu__item:hover > .nav-menu__nolink {
  color: var(--color-accent);
}

/* ── Mobile hamburger ────────────────────────── */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  color: var(--color-primary);
  font-size: 1.5rem;
  line-height: 1;
}

/* ── Mobile drawer ───────────────────────────── */
@media (max-width: 767px) {
  .site-header { margin-bottom: -70px; }

  .nav-toggle { display: flex; align-items: center; }

  .site-nav {
    position: fixed;
    inset: 0 0 0 30%;
    background: var(--color-primary);
    flex-direction: column;
    align-items: flex-start;
    padding: 80px 32px 40px;
    gap: 0;
    transform: translateX(100%);
    transition: transform 0.35s ease;
    z-index: 200;
    box-shadow: -4px 0 30px rgba(0,0,0,0.3);
  }
  .site-nav.is-open {
    transform: translateX(0);
  }
  .nav-menu {
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    width: 100%;
  }
  .nav-menu__item { width: 100%; }
  .nav-menu__item a {
    color: rgba(255,255,255,0.85);
    padding: 14px 0;
    border-radius: 0;
    border-bottom: 1px solid rgba(255,255,255,0.12);
    font-size: 1.0625rem;
  }
  .nav-menu__nolink {
    color: rgba(255,255,255,0.85);
    padding: 14px 0;
    border-bottom: 1px solid rgba(255,255,255,0.12);
    font-size: 1.0625rem;
  }
  .nav-menu__item:hover > .nav-menu__nolink { color: var(--color-white); }
  .nav-menu__item a:hover,
  .nav-menu__item.active > a {
    background: transparent;
    color: var(--color-white);
  }

  /* Overlay behind drawer */
  .nav-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.45);
    z-index: 9; 
  }
  .nav-overlay.is-visible { display: block; }
}

/* ============================================================
   HERO SECTION
   ============================================================ */
.hero {
  background: #ffffff;
  position: relative;
  padding-top: 80px;   /* compensates for header margin-bottom: -80px overlap */
  padding-bottom: 0;
  text-align: center;
}
/* White overlay (matches backup's 0.93 opacity white overlay) */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: #ffffff;
  opacity: 0.93;
  pointer-events: none;
}
.hero .container { position: relative; }

.hero__inner {
  max-width: 700px;
  margin-inline: auto;
  padding: 80px 50px;
  text-align: center;
}

/* Tagline — matches .envato-kit-138-bracket .elementor-widget-container > *:before/after */
.hero__tagline {
  font-family: 'Nunito', var(--font-heading), sans-serif;
  font-size: 1em;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 4px;
  color: #212121;
  margin-bottom: 16px;
}
/* Orange bracket pseudo-elements */
.hero__tagline::before {
  content: "[";
  color: #ffab00;
  display: inline-block;
  margin-right: 4px;
  line-height: 1em;
  position: relative;
  top: -1px;
}
.hero__tagline::after {
  content: "]";
  color: #ffab00;
  display: inline-block;
  margin-left: 4px;
  line-height: 1em;
  position: relative;
  top: -1px;
}

.hero__title {
  font-family: 'Nunito Sans', var(--font-heading), sans-serif;
  font-size: clamp(2.5rem, 6vw, 3.8em);
  font-weight: 800;
  color: #28211a;
  line-height: 1em;
  margin-bottom: 20px;
}

/* Accent divider: 72px wide, 3px, #ffab00, centered */
.hero__divider-accent {
  width: 72px;
  height: 3px;
  background: #ffab00;
  margin: 0 auto 0;
  padding-block: 2px;
}
/* Full-width black divider: 100%, 1px, #000 */
.hero__divider-full {
  width: 100%;
  height: 1px;
  background: #000;
  margin-top: 15px;
  margin-bottom: 15px;
}

@media (max-width: 767px) {
  .hero__inner { padding: 30px 20px; }
  .hero__title { font-size: clamp(1.8rem, 7vw, 2.5em); }
}

/* ============================================================
   CAROUSEL SECTION
   ============================================================ */
.carousel-section {
  background: var(--color-white);
  padding-block: 0 60px;
}
.swiper {
  width: 100%;
  padding-bottom: 40px !important;
}
.swiper-slide img {
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 8px;
  display: block;
}
.swiper-pagination-bullet {
  background: var(--color-border-mid);
  opacity: 1;
}
.swiper-pagination-bullet-active {
  background: var(--color-accent);
}

/* ============================================================
   ACTUALITES PAGE
   ============================================================ */
.actualites-section {
  padding-block: 80px;
}
.section-title {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 4vw, 3rem);
  font-weight: 800;
  color: var(--color-primary);
  margin-bottom: 24px;
}
.actualites-intro {
  font-size: 1rem;
  color: var(--color-text);
  margin-bottom: 28px;
  line-height: 1.75;
}
.actualites-layout {
  display: flex;
  gap: 40px;
  align-items: flex-start;
}
.actualites-content {
  flex: 2;
  min-width: 0;
}
.actualites-fb {
  flex: 3;
  min-width: 0;
}
.services-list {
  margin-bottom: 48px;
}
.services-list__item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 0;
  font-family: var(--font-heading);
  font-size: 1.0625rem;
  font-weight: 700;
  color: var(--color-primary);
  border-bottom: 1px solid var(--color-gray-light);
}
.services-list__item:first-child { border-top: 1px solid var(--color-gray-light); }
.services-list__item .icon {
  color: var(--color-accent);
  font-size: 1rem;
  flex-shrink: 0;
}
.social-cta {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}
.social-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 22px;
  border-radius: 30px;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.9375rem;
  color: var(--color-white);
  transition: opacity 0.2s;
}
.social-btn:hover { opacity: 0.85; }
.social-btn--fb   { background: #1877F2; }
.social-btn--li   { background: #0A66C2; }

/* ============================================================
   CONTACT PAGE
   ============================================================ */
.contact-section {
  padding-block: 80px;
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}
.contact-map iframe {
  width: 100%;
  height: 380px;
  border: none;
  border-radius: 8px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}
.contact-map__caption {
  margin-top: 14px;
  font-size: 0.9375rem;
  color: var(--color-text);
  font-style: italic;
}
.contact-info {
  padding: 32px;
  background: var(--color-primary);
  border-radius: 12px;
  color: var(--color-white);
}
.contact-info__title {
  font-family: var(--font-heading);
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--color-white);
  margin-bottom: 8px;
}
.contact-info__desc {
  font-size: 0.9375rem;
  color: rgba(255,255,255,0.8);
  margin-bottom: 28px;
  line-height: 1.7;
}
.contact-info__list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.contact-info__row {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}
.contact-info__row .icon {
  color: var(--color-accent);
  font-size: 1.125rem;
  margin-top: 2px;
  flex-shrink: 0;
  width: 20px;
  text-align: center;
}
.contact-info__row p {
  font-size: 0.9375rem;
  color: rgba(255,255,255,0.9);
  line-height: 1.5;
}
.contact-info__row a {
  color: rgba(255,255,255,0.9);
  text-decoration: underline;
  text-underline-offset: 2px;
  transition: color 0.2s;
}
.contact-info__row a:hover { color: var(--color-accent); }

/* ── Contact form ──────────────────────────────── */
.contact-form-section {
  padding-block: 80px 140px;
  position: relative;
  background: var(--color-primary);
  overflow: hidden;
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - 60px), 50% 100%, 0 calc(100% - 60px));
}
.contact-form-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('../images/backgrounds/contact-bg.jpg') center center / cover no-repeat;
  opacity: 0.15;
  pointer-events: none;
}
.contact-form-section .container { position: relative; }

.form-card {
  background: var(--color-bg-light);
  border-radius: 12px;
  padding: 40px;
  max-width: 680px;
  margin-inline: auto;
  box-shadow: 0 8px 40px rgba(0,0,0,0.2);
}
.form-card__title {
  font-family: var(--font-heading);
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--color-primary);
  margin-bottom: 28px;
  text-align: center;
}

.form-group {
  margin-bottom: 20px;
}
.form-group label {
  display: block;
  font-family: var(--font-body);
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--color-text-dark);
  margin-bottom: 6px;
}
.form-group label .required {
  color: var(--color-accent);
  margin-left: 3px;
}
.form-group input,
.form-group textarea {
  width: 100%;
  padding: 14px 20px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-input);
  background: var(--color-white);
  font-family: var(--font-body);
  font-size: 0.9375rem;
  color: var(--color-text-dark);
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
}
.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--color-accent);
  box-shadow: 0 0 0 3px rgba(232,93,4,0.12);
  background: var(--color-white);
}
.form-group textarea { resize: vertical; min-height: 160px; }

.form-group__subtitle {
  font-size: 0.875rem;
  color: var(--color-text);
  margin-bottom: 8px;
}

.form-group--heading {
  margin-bottom: 8px;
}
.form-group--heading p {
  font-family: var(--font-heading);
  font-size: 1.0625rem;
  font-weight: 700;
  color: var(--color-primary);
}

.field--honeypot { display: none !important; }

.form-message {
  margin-top: 16px;
  padding: 14px 18px;
  border-radius: 6px;
  font-size: 0.9375rem;
  display: none;
}
.form-message.success {
  display: block;
  background: #d1fae5;
  color: #065f46;
  border: 1px solid #6ee7b7;
}
.form-message.error {
  display: block;
  background: #fee2e2;
  color: #991b1b;
  border: 1px solid #fca5a5;
}

.form-card .btn {
  width: 100%;
  font-size: 1rem;
  padding: 15px;
}

/* ── Field-level errors ────────────────────── */
.field-error {
  display: block;
  font-size: 0.8125rem;
  color: #dc2626;
  margin-top: 5px;
}
.form-group input.is-invalid,
.form-group textarea.is-invalid {
  border-color: #dc2626;
}

/* ============================================================
   MENTIONS LÉGALES PAGE
   ============================================================ */
.mentions-section {
  padding-block: 80px;
  min-height: 50vh;
}
.mentions-section h1 {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: var(--color-primary);
  margin-bottom: 32px;
}
.mentions-section p {
  color: var(--color-text);
  line-height: 1.8;
  margin-bottom: 16px;
}
.mentions-section h2 {
  font-family: var(--font-heading);
  font-size: 1.375rem;
  font-weight: 800;
  color: var(--color-primary);
  margin-top: 36px;
  margin-bottom: 12px;
}

/* ============================================================
   404 PAGE
   ============================================================ */
.notfound-section {
  padding-block: 120px;
  text-align: center;
}
.notfound-section h1 {
  font-family: var(--font-heading);
  font-size: clamp(5rem, 15vw, 10rem);
  font-weight: 900;
  color: var(--color-accent);
  line-height: 1;
  margin-bottom: 0;
}
.notfound-section h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  font-weight: 800;
  color: var(--color-primary);
  margin-bottom: 16px;
}
.notfound-section p {
  color: var(--color-text);
  margin-bottom: 36px;
  font-size: 1.0625rem;
}

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  position: relative;
  background: var(--color-primary);
  color: rgba(255,255,255,0.8);
  overflow: hidden;
  padding-top: 130px;  /* matches backup --padding-top:130px */
  padding-bottom: 50px;
}
/* CNC background photo with primary-color overlay at 0.91 opacity */
.site-footer::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('../images/backgrounds/footer-bg.jpg') center center / cover no-repeat;
  opacity: 0.09; /* 1 - 0.91 = 0.09 so the overlay is 91% primary */
  pointer-events: none;
}
.site-footer .container { position: relative; }

/* Triangle shape divider at top of footer (white fill = matches section above) */
.footer-shape-top {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 60px;
  overflow: hidden;
  line-height: 0;
  pointer-events: none;
}
.footer-shape-top svg {
  display: block;
  width: 100%;
  height: 60px;
}
.footer-shape-fill {
  fill: #ffffff; /* matches the white section above */
}

/* ── Row 1: Brand + Icon-boxes ──────────────────────────── */
.footer-row-1 {
  display: flex;
  gap: 0;
  margin-bottom: 0;
}

/* Brand column — ~32.28% width */
.footer-brand {
  flex: 0 0 32.28%;
  max-width: 32.28%;
  padding-right: 20px;
}
.footer-brand__logo {
  width: 75%;
  height: auto;
  max-width: 220px;
  margin-bottom: 16px;
  /* No filter — show the actual orange SCMP logo */
}
.footer-brand__desc {
  font-size: 0.875rem;
  color: var(--color-gray-light); /* --e-global-color-4f2c925 = #DFDFDF */
  line-height: 1.75;
  margin-bottom: 16px;
}

/* Footer social icons — orange accent square (border-radius: 10px) */
.footer-social {
  display: flex;
  align-items: center;
  gap: 5px;
}
.footer-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 10px;
  background: var(--color-accent);
  color: var(--color-white);
  font-size: 1rem;
  transition: opacity 0.2s;
}
.footer-social a:hover { opacity: 0.8; }

/* ── Icon-boxes (Phone / Email / Address) ─────────── */
.footer-right {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding-left: 30px;
}

.footer-iconboxes {
  display: flex;
  flex-direction: row;
  gap: 20px;
  align-items: flex-start;
  justify-content: space-between;
}

.footer-iconbox {
  display: flex;
  align-items: center;
  gap: 15px;
}
/* Orange stacked square icon */
.footer-iconbox__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 45px;
  height: 45px;
  min-width: 45px;
  border-radius: 10px;
  background: var(--color-accent);
  color: var(--color-white);
  font-size: 21px;
  text-decoration: none;
  flex-shrink: 0;
}
.footer-iconbox__content { flex: 1; }
.footer-iconbox__title {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 800;
  margin-bottom: 2px;
  line-height: 1.2;
}
.footer-iconbox__title a,
.footer-iconbox__title span {
  color: var(--color-white); /* --e-global-color-secondary = #FFFFFF */
  text-decoration: none;
}
.footer-iconbox__title a:hover { color: var(--color-accent); }
.footer-iconbox__desc {
  font-size: 0.875rem;
  color: var(--color-gray-light); /* --e-global-color-4f2c925 = #DFDFDF */
  line-height: 1.4;
}
/* Email description is white (#FFFFFF = secondary) */
.footer-iconbox__desc--white {
  color: var(--color-white);
}

/* ── Row divider ─────────────────────────────────── */
.footer-divider {
  width: 100%;
  height: 1px;
  background: rgba(255,255,255,0.12); /* --e-global-color-fcc2e27 = #FFFFFF1F */
  margin-block: 28px;
}

/* ── Row 2: Nav + Raccourcis + Horaires ──────────── */
.footer-row-2 {
  display: flex;
  flex-direction: row;
  gap: 32px;
}

/* ── Footer columns ────────────────────────── */
.footer-col {
  flex: 1;
}
.footer-col__title {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 800;
  color: var(--color-white);
  margin-bottom: 16px;
}
.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.footer-col ul li,
.footer-col ul li a,
.footer-col ul li span {
  font-size: 0.875rem;
  color: var(--color-gray-light); /* #DFDFDF */
}
.footer-col ul li a {
  text-decoration: none;
  transition: color 0.2s;
}
.footer-col ul li a:hover { color: var(--color-accent); }

/* ── Horaires list ──────────────── */
.footer-hours {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.footer-hours li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.875rem;
  color: var(--color-gray-light);
}
.footer-hours__icon {
  color: var(--color-accent); /* orange clock icon */
  font-size: 0.875rem;
  flex-shrink: 0;
}

/* ── Footer bottom bar ─────────────────────── */
.footer-bottom {
  text-align: center;
}
.footer-bottom__divider {
  width: 100%;
  height: 1px;
  background: rgba(255,255,255,0.12);
  margin-bottom: 15px;
  margin-top: 15px;
}
.footer-bottom__copy {
  font-size: 0.8125rem;
  color: #ffffff;
  text-shadow: 0px 0px 10px rgba(0,0,0,0.3);
  line-height: 1.8;
}
.footer-bottom__copy a {
  color: #ffffff;
  text-decoration: underline;
  text-underline-offset: 2px;
  transition: color 0.2s;
}
.footer-bottom__copy a:hover { color: var(--color-accent); }

/* ============================================================
   RESPONSIVE — Tablet (768px–1023px)
   ============================================================ */
@media (max-width: 1023px) {
  .footer-row-1 { flex-direction: column; gap: 24px; }
  .footer-brand { flex: none; max-width: 100%; padding-right: 0; }
  .footer-right { padding-left: 0; }
  .footer-row-2 { gap: 20px; }
  .site-footer { padding-top: 120px; }

  .contact-grid {
    grid-template-columns: 1fr;
  }
  .section { padding-block: 60px; }
}

/* ============================================================
   RESPONSIVE — Mobile (≤767px)
   ============================================================ */
@media (max-width: 767px) {
  .announcement-bar__text span:not(.bar-phone) { display: none; }
  .announcement-bar { justify-content: center; }
  .announcement-bar__social { display: none; }

  .site-header__inner { height: 64px; }
  .site-header__logo img { width: 77%; }

  .footer-row-1 { flex-direction: column; }
  .footer-brand { max-width: 100%; flex: none; padding-right: 0; }
  .footer-brand__logo { width: 69%; }
  .footer-right { padding-left: 0; }
  .footer-iconboxes { flex-wrap: wrap; }
  .footer-iconbox { flex-direction: column; align-items: center; text-align: center; }
  .footer-row-2 { flex-direction: column; gap: 24px; }
  .footer-col ul li { text-align: left; }
  .footer-hours li { justify-content: center; }
  .footer-bottom { text-align: center; }
  .site-footer { padding-top: 100px; }

  .form-card {
    padding: 28px 20px;
  }
  .contact-info { padding: 24px; }

  .section { padding-block: 48px; }
  .actualites-section { padding-block: 48px; }
  .actualites-layout { flex-direction: column; }
  .actualites-fb { flex: none; width: 100%; }
}

/* ============================================================
   UTILITY
   ============================================================ */
.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}

