/* ═══════════════════════════════════════════════════════════
   HOME FLOW — ordre de lecture plus professionnel
   ═══════════════════════════════════════════════════════════ */
.home-page-flow {
  display: flex;
  flex-direction: column;
}

.home-page-flow > .hero-slider-active-1 {
  order: 10;
}

.home-page-flow > .quick-pillars-section {
  order: 20;
}

.home-page-flow > .why-us-section-2 {
  order: 30;
}

.home-page-flow > .company-achievements-section {
  order: 40;
}

.home-page-flow > .why-choice-us {
  order: 50;
}

.home-page-flow > .services-section {
  order: 60;
}

.home-page-flow > .notre-expertise-section {
  order: 70;
}

.home-page-flow > .shop-home-section {
  order: 80;
}

.home-page-flow > .nos-projets-section {
  order: 90;
}

.home-page-flow > .realisations-section {
  order: 100;
}

.home-page-flow > .testimonial {
  order: 110;
}

.home-page-flow > .notre-equipe-section {
  order: 120;
}

.home-page-flow > .tarifs-express-section {
  order: 130;
}

.home-page-flow > .formules-section {
  order: 140;
}

.home-page-flow > .faq-section {
  order: 150;
}

.home-page-flow > .our-events-section {
  order: 160;
}

.home-page-flow > .latest-blog-section-2 {
  order: 170;
}

.home-page-flow > .contact-home-section {
  order: 180;
}

.home-page-flow > .major-partners {
  order: 190;
}

/* Hero image focal point */
@media (max-width: 1199px) {
  .hero-slider-active-1 .hero-side {
    background-position: 72% center;
  }
}

@media (max-width: 767px) {
  .hero-slider-active-1 .hero-side {
    background-position: 78% center;
  }
}

/* ═══════════════════════════════════════════════════════════
   QUICK PILLARS — section 3 cartes après le hero
   ═══════════════════════════════════════════════════════════ */
.quick-pillars-section {
  padding: 80px 0;
}

.qp-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

/* ── Carte de base ── */
.qp-card {
  position: relative;
  background: #ffffff;
  border-radius: 24px;
  padding: 40px 32px 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  overflow: hidden;
  box-shadow:
    0 4px 6px rgba(0, 0, 0, 0.04),
    0 12px 40px rgba(0, 69, 64, 0.10),
    0 2px 8px rgba(0, 0, 0, 0.06);
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1),
              box-shadow 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.qp-card:hover {
  transform: translateY(-8px);
  box-shadow:
    0 8px 12px rgba(0, 0, 0, 0.06),
    0 24px 64px rgba(0, 69, 64, 0.16),
    0 4px 16px rgba(0, 0, 0, 0.08);
}

/* ── Numéro décoratif en arrière-plan ── */
.qp-number {
  position: absolute;
  top: -12px;
  right: 20px;
  font-family: var(--font-heading);
  font-size: 6rem;
  font-weight: 900;
  line-height: 1;
  color: rgba(0, 0, 0, 0.045);
  pointer-events: none;
  user-select: none;
  letter-spacing: -4px;
}

.qp-card--featured .qp-number {
  color: rgba(255, 255, 255, 0.08);
}

/* ── Icône ── */
.qp-icon-wrap {
  width: 60px;
  height: 60px;
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  flex-shrink: 0;
}

.qp-icon--green {
  background: linear-gradient(135deg, #85BF18 0%, #6da314 100%);
  color: #ffffff;
  box-shadow: 0 8px 24px rgba(133, 191, 24, 0.35);
}

.qp-icon--light {
  background: rgba(255, 255, 255, 0.18);
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.3);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

/* ── Corps texte ── */
.qp-body { display: flex; flex-direction: column; gap: 8px; flex: 1; }

.qp-title {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--color-title);
  line-height: 1.3;
  margin: 0;
}

.qp-text {
  font-size: 0.9rem;
  color: var(--color-body);
  line-height: 1.75;
  margin: 0;
}

/* ── Lien bas de carte ── */
.qp-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--color-primary);
  text-decoration: none;
  margin-top: 4px;
  transition: gap 0.25s ease, color 0.25s ease;
}

.qp-link:hover { gap: 14px; color: #6da314; }

/* ── Carte mise en avant (teal) ── */
.qp-card--featured {
  background: var(--color-teal);
}

.qp-card--featured .qp-title { color: #ffffff; }
.qp-card--featured .qp-text  { color: rgba(255, 255, 255, 0.72); }
.qp-card--featured .qp-link  { color: #85BF18; }
.qp-card--featured .qp-link:hover { color: #a8d93a; }

/* ── Responsive ── */
@media (max-width: 991px) {
  .qp-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .qp-card:last-child {
    grid-column: 1 / -1;
    max-width: 480px;
    margin: 0 auto;
    width: 100%;
  }
}

@media (max-width: 575px) {
  .quick-pillars-section { margin-top: 0; }
  .qp-grid { grid-template-columns: 1fr; gap: 16px; }
  .qp-card:last-child { grid-column: auto; max-width: 100%; }
  .qp-card { padding: 28px 24px 24px; }
  .qp-number { font-size: 4.5rem; }
}


/* ─── Event status badges ──────────────────────────────────── */
.event-status-badge {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.event-upcoming { background: #e8f5e9; color: #2e7d32; }
.event-ongoing  { background: #fff3e0; color: #e65100; }
.event-past     { background: #f5f5f5; color: #757575; }

.event-description {
  font-size: 0.9rem;
  color: #666;
  margin-bottom: 0.75rem;
  line-height: 1.6;
}

.event-card--past .thumb img {
  filter: grayscale(20%);
}

/* ─── Tarifs express section ────────────────────────────────── */
.tarifs-express-section {
  background: #f8f7f0;
}

.tarifs-express-section .section-note {
  max-width: 640px;
  margin: 0 auto 52px;
  color: var(--body-color);
  font-size: 0.95rem;
  line-height: 1.7;
  text-align: center;
}

.tarifs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

@media (max-width: 991px) {
  .tarifs-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

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

.tarif-card {
  background: #fff;
  border-radius: 16px;
  padding: 28px 24px 24px;
  border-top: 4px solid var(--theme-color-3);
  box-shadow: 0 2px 16px rgba(0, 69, 64, 0.06);
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: transform 0.22s, box-shadow 0.22s;
}

.tarif-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0, 69, 64, 0.12);
}

.tarif-head {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.tarif-icon {
  width: 48px;
  height: 48px;
  min-width: 48px;
  border-radius: 12px;
  background: rgba(0, 69, 64, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--theme-color-3);
  font-size: 20px;
}

.tarif-card h4 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--theme-color-3);
  margin: 0;
  line-height: 1.3;
}

.tarif-desc {
  font-size: 0.84rem;
  color: var(--body-color);
  line-height: 1.6;
  margin: 0;
  flex: 1;
}

.tarif-price-row {
  display: flex;
  align-items: baseline;
  gap: 6px;
  padding-top: 14px;
  border-top: 1px solid #eef0ec;
}

.tarif-price {
  font-size: 1.55rem;
  font-weight: 800;
  color: var(--theme-color-3);
  line-height: 1;
}

.tarif-unit {
  font-size: 0.78rem;
  color: var(--body-color);
  font-weight: 500;
}

.tarif-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: auto;
  padding-top: 4px;
}

@media (max-width: 575px) {
  .tarif-footer {
    flex-direction: column;
    align-items: stretch;
  }
}

.tarif-engagement {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  padding: 4px 10px;
  border-radius: 50px;
  white-space: nowrap;
}

.tarif-engagement.sans {
  background: #e6f4e0;
  color: #2d7a1f;
}

.tarif-engagement.contrat {
  background: rgba(0, 69, 64, 0.1);
  color: var(--theme-color-3);
}

.tarif-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 18px;
  border-radius: 999px;
  background: var(--theme-color-3);
  color: var(--white-color);
  font-size: 0.82rem;
  font-weight: 700;
  text-decoration: none;
  transition: background 0.2s ease, transform 0.2s ease;
}

.tarif-btn:hover {
  background: var(--theme-color);
  color: var(--white-color);
  transform: translateY(-1px);
}

.tarifs-cta {
  margin-top: 44px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  text-align: center;
}

.tarifs-cta p {
  font-size: 0.9rem;
  color: var(--body-color);
  margin: 0;
}

.formules-section {
  background: #f8f7f0;
}

.formules-intro {
  max-width: 620px;
  margin: 0 auto 56px;
  color: var(--body-color);
  font-size: 0.95rem;
  line-height: 1.7;
  text-align: center;
}

.formules-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  align-items: stretch;
  border: 1px solid #dde3d8;
  border-radius: 16px;
  overflow: hidden;
}

@media (max-width: 991px) {
  .formules-grid {
    grid-template-columns: repeat(2, 1fr);
    border-radius: 12px;
  }
}

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

.formule-card {
  display: flex;
  flex-direction: column;
  background: #fff;
  position: relative;
  border-right: 1px solid #dde3d8;
  transition: box-shadow 0.22s;
}

.formule-card:last-child {
  border-right: none;
}

.formule-card.featured {
  background: #004540;
}

.formule-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  background: #c8e63c;
  color: #004540;
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 4px 12px;
  border-radius: 50px;
  white-space: nowrap;
}

.formule-head {
  padding: 36px 28px 28px;
  text-align: center;
  background: #efefed;
  border-bottom: 1px solid #dde3d8;
}

.formule-card.featured .formule-head {
  background: #004540;
  border-bottom-color: rgba(255, 255, 255, 0.15);
}

.formule-name {
  display: block;
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #555;
  margin-bottom: 14px;
}

.formule-card.featured .formule-name {
  color: rgba(255, 255, 255, 0.65);
}

.formule-price {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 4px;
}

.f-amount {
  font-size: 2.6rem;
  font-weight: 800;
  color: #004540;
  line-height: 1;
  font-family: var(--heading-font, inherit);
}

.formule-card.featured .f-amount {
  color: #fff;
}

.f-unit {
  font-size: 0.8rem;
  color: #888;
  font-weight: 500;
  align-self: flex-end;
  padding-bottom: 4px;
}

.formule-card.featured .f-unit {
  color: rgba(255, 255, 255, 0.55);
}

.formule-features {
  list-style: none;
  padding: 0;
  margin: 0;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.formule-features li {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 24px;
  font-size: 0.9rem;
  color: #444;
  border-bottom: 1px solid #ebebeb;
  text-align: center;
}

.formule-features li:last-child {
  border-bottom: none;
}

.formule-card.featured .formule-features li {
  color: rgba(255, 255, 255, 0.88);
  border-bottom-color: rgba(255, 255, 255, 0.1);
}

.formule-features li.off {
  color: #bbb;
}

.formule-card.featured .formule-features li.off {
  color: rgba(255, 255, 255, 0.3);
}

.formule-features li i.fa-check {
  color: #004540;
  font-size: 12px;
  flex-shrink: 0;
}

.formule-card.featured .formule-features li i.fa-check {
  color: #c8e63c;
}

.formule-features li i.fa-xmark {
  color: #ccc;
  font-size: 12px;
  flex-shrink: 0;
}

.formule-card.featured .formule-features li i.fa-xmark {
  color: rgba(255, 255, 255, 0.25);
}

.formule-footer {
  padding: 24px 28px;
  border-top: 1px solid #dde3d8;
  background: #fff;
}

.formule-card.featured .formule-footer {
  background: #004540;
  border-top-color: rgba(255, 255, 255, 0.15);
}

.formule-btn {
  display: block;
  text-align: center;
  background: #f0f0ee;
  color: #004540;
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  padding: 15px 24px;
  border-radius: 6px;
  transition: background 0.2s, color 0.2s;
  text-decoration: none;
}

.formule-btn:hover {
  background: #004540;
  color: #fff;
}

.formule-card.featured .formule-btn {
  background: #004540;
  color: #fff;
  border: 2px solid #c8e63c;
}

.formule-card.featured .formule-btn:hover {
  background: #c8e63c;
  color: #004540;
  border-color: #c8e63c;
}

.formules-note {
  text-align: center;
  font-size: 0.85rem;
  color: var(--body-color);
  margin-top: 32px;
}

.contact-home-section {
  position: relative;
  background:
    radial-gradient(circle at top left, rgba(200, 230, 60, 0.12), transparent 28%),
    radial-gradient(circle at right center, rgba(0, 69, 64, 0.08), transparent 24%);
}

.contact-home-form-card,
.contact-home-info-card {
  height: 100%;
  border-radius: 28px;
  border: 1px solid rgba(0, 69, 64, 0.08);
  box-shadow: 0 18px 48px rgba(12, 30, 43, 0.08);
}

.contact-home-form-card {
  padding: 34px 32px;
}

.contact-home-info-card {
  padding: 34px 30px;
  background:
    linear-gradient(180deg, rgba(255, 252, 243, 0.98), rgba(255, 248, 232, 0.88));
  border-color: rgba(11, 93, 86, 0.08);
  box-shadow: 0 18px 46px rgba(8, 72, 66, 0.12);
}

.contact-home-kicker {
  margin-bottom: 14px;
}

.contact-home-title h2 {
  font-size: clamp(2.4rem, 4.5vw, 3.5rem);
  line-height: 0.98;
  letter-spacing: -0.03em;
}

.contact-home-intro {
  max-width: 640px;
  color: var(--color-body);
  font-size: 1.03rem;
  line-height: 1.75;
  margin-bottom: 28px;
}

.contact-home-section .ct-field-icon {
  position: relative;
}

.contact-home-section .ct-icon-inside {
  left: 16px;
  color: #7c8695;
  font-size: 0.95rem;
}

.contact-home-section .ct-field-icon .form-control {
  padding-left: 44px !important;
}

.contact-home-section .ct-form-card .form-control {
  min-height: 56px;
  border: 1.5px solid #dbe4ee;
  border-radius: 14px;
  padding: 14px 16px;
  background: #fbfcf8;
  font-size: 0.98rem;
}

.contact-home-section .ct-form-card .form-control::placeholder {
  color: #7f8898;
}

.contact-home-section .ct-form-card .form-control:focus {
  border-color: rgba(0, 69, 64, 0.45);
  box-shadow: 0 0 0 4px rgba(200, 230, 60, 0.18);
  background: #fff;
}

.contact-home-section .ct-form-card textarea.form-control {
  min-height: 154px;
  padding-top: 16px;
  resize: vertical;
}

.contact-home-submit {
  min-height: 56px;
  padding: 14px 24px;
  border-radius: 14px;
  font-size: 0.98rem;
  font-weight: 700;
  background: linear-gradient(135deg, #0b5d56 0%, #084842 100%);
  color: #fff6dc;
  border: 1px solid rgba(255, 224, 138, 0.28);
  box-shadow: 0 14px 30px rgba(8, 72, 66, 0.24);
}

.contact-home-submit:hover,
.contact-home-submit:focus {
  background: linear-gradient(135deg, #0f6a61 0%, #0a514a 100%);
  color: #fff9e9;
  box-shadow: 0 18px 38px rgba(8, 72, 66, 0.3);
}

.contact-home-submit:focus-visible {
  outline: 3px solid rgba(255, 224, 138, 0.38);
  outline-offset: 3px;
}

.contact-home-submit i {
  font-size: 0.95rem;
  color: #ffe08a;
}

.contact-home-info-item {
  align-items: flex-start;
  gap: 16px;
  padding: 14px 0;
  margin-bottom: 0;
  border-bottom: 1px solid rgba(11, 93, 86, 0.09);
}

.contact-home-info-item:first-child {
  padding-top: 0;
}

.contact-home-info-item:last-of-type {
  border-bottom: none;
  padding-bottom: 0;
}

.contact-home-section .ct-icon-circle {
  width: 54px;
  height: 54px;
  min-width: 54px;
  background: linear-gradient(180deg, rgba(255, 234, 172, 0.46), rgba(246, 247, 210, 0.74));
  color: #0b5d56;
  border: 1px solid rgba(255, 224, 138, 0.28);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.6);
  font-size: 1rem;
}

.contact-home-section .ct-label {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: #6e7f7a;
  margin-bottom: 6px;
}

.contact-home-section .ct-value {
  font-size: 1.08rem;
  font-weight: 700;
  line-height: 1.45;
  color: #083f3a;
}

.contact-home-section .ct-value a {
  color: #083f3a;
}

.contact-home-section .ct-value a:hover {
  color: #0b5d56;
}

.contact-home-section .ct-sublabel {
  font-size: 0.95rem;
  line-height: 1.5;
  color: #7c867d;
  margin-top: 4px;
}

.contact-home-devis {
  margin-top: 28px;
  padding: 22px 24px;
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(255, 248, 225, 0.88), rgba(255, 255, 255, 0.96));
  border: 1px solid rgba(11, 93, 86, 0.12);
  border-left: 4px solid #0b5d56;
}

.contact-home-devis-title {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 8px;
  font-size: 1.08rem;
  font-weight: 800;
  color: #0b5d56;
}

.contact-home-devis-title i {
  color: #c89a2b;
}

.contact-home-devis-text {
  margin: 0;
  font-size: 0.96rem;
  line-height: 1.7;
  color: #7a8379;
}

@media (max-width: 991px) {
  .contact-home-form-card,
  .contact-home-info-card {
    border-radius: 24px;
    padding: 28px 24px;
  }

  .contact-home-title h2 {
    font-size: clamp(2rem, 8vw, 2.8rem);
  }
}

@media (max-width: 575px) {
  .contact-home-submit {
    width: 100%;
  }

  .contact-home-section .ct-value {
    font-size: 1rem;
  }
}

/* ==========================================================================
   Home Art Direction – Premium section styling
   ========================================================================== */

.services-section,
.tarifs-express-section,
.formules-section,
.why-us-section-2,
.company-achievements-section,
.notre-expertise-section,
.why-choice-us,
.shop-home-section,
.nos-projets-section,
.realisations-section,
.notre-equipe-section,
.testimonial,
.faq-section,
.latest-blog-section-2,
.contact-home-section {
  position: relative;
  isolation: isolate;
  overflow: hidden;
}

.services-section::before,
.tarifs-express-section::before,
.formules-section::before,
.company-achievements-section::before,
.shop-home-section::before,
.realisations-section::before,
.notre-equipe-section::before,
.latest-blog-section-2::before,
.contact-home-section::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: -1;
}

.services-section {
  background:
    radial-gradient(circle at top left, rgba(200, 230, 60, 0.14), transparent 26%),
    linear-gradient(180deg, #fbfbf7 0%, #f4f5ee 100%);
}

.services-section::before {
  background:
    linear-gradient(135deg, rgba(0, 69, 64, 0.02), transparent 48%),
    radial-gradient(circle at right 18%, rgba(0, 69, 64, 0.07), transparent 18%);
}

.services-section .project-card.style-service {
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 16px 42px rgba(14, 28, 39, 0.08);
  border: 1px solid rgba(0, 69, 64, 0.07);
}

.services-section .project-card.style-service:hover {
  transform: translateY(-10px);
  box-shadow: 0 24px 60px rgba(0, 69, 64, 0.13);
}

.services-section .project-card.style-service .thumb .content {
  backdrop-filter: blur(10px);
}

.tarifs-express-section {
  background:
    radial-gradient(circle at right top, rgba(0, 69, 64, 0.08), transparent 24%),
    linear-gradient(180deg, #fcfcf9 0%, #f5f6ef 100%);
}

.tarifs-express-section::before {
  background:
    radial-gradient(circle at left bottom, rgba(200, 230, 60, 0.12), transparent 22%);
}

.tarif-card {
  border-radius: 22px;
  border: 1px solid rgba(0, 69, 64, 0.07);
  box-shadow: 0 12px 34px rgba(10, 28, 39, 0.07);
}

.tarif-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 22px 48px rgba(0, 69, 64, 0.13);
}

.tarif-icon {
  border-radius: 16px;
  background: linear-gradient(180deg, rgba(200, 230, 60, 0.18), rgba(0, 69, 64, 0.06));
}

.formules-section {
  background:
    radial-gradient(circle at left top, rgba(200, 230, 60, 0.1), transparent 24%),
    linear-gradient(180deg, #f7f8f3 0%, #eef3ef 100%);
}

.formules-section::before {
  background:
    radial-gradient(circle at right 22%, rgba(0, 69, 64, 0.08), transparent 18%);
}

.formules-grid {
  border-radius: 24px;
  box-shadow: 0 18px 48px rgba(14, 30, 43, 0.08);
  backdrop-filter: blur(12px);
}

.why-us-section-2 {
  margin-bottom: 0 !important;
  padding-bottom: 144px !important;
  background:
    radial-gradient(circle at left top, rgba(200, 230, 60, 0.12), transparent 22%),
    linear-gradient(180deg, #ffffff 0%, #f7f8f3 100%);
}

.why-us-section-2 .why-us-section-2-bg {
  border-radius: 0 !important;
}

.why-us-section-2 .why-us-content {
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(0, 69, 64, 0.08);
  box-shadow: 0 22px 54px rgba(14, 30, 43, 0.08);
  backdrop-filter: blur(14px);
  border-radius: 28px;
  padding: 36px 34px;
}

.company-achievements-section {
  margin: -122px 0 52px;
  padding: 0 20px;
  z-index: 4;
  overflow: visible;
}

.company-achievements-section::before {
  display: none;
}

.company-achievements-section .container {
  position: relative;
  max-width: 1240px;
}

.company-achievements-section .company-achievements {
  margin-top: 0 !important;
  margin-inline: auto;
  padding: 18px;
  gap: 18px;
  border-radius: 32px;
  background:
    radial-gradient(circle at top right, rgba(255, 255, 255, 0.12), transparent 18%),
    radial-gradient(circle at left bottom, rgba(200, 230, 60, 0.08), transparent 22%),
    linear-gradient(135deg, #0a544e 0%, #084842 52%, #0d665d 100%);
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow:
    0 28px 60px rgba(7, 24, 32, 0.18),
    0 10px 24px rgba(7, 24, 32, 0.08);
  backdrop-filter: blur(14px);
}

.company-achievements-section .achievement {
  padding: 26px 18px 22px;
  border-radius: 22px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.11), rgba(255, 255, 255, 0.05));
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
  transition: transform 0.26s ease, box-shadow 0.26s ease, background 0.26s ease;
}

.company-achievements-section .achievement:hover {
  transform: translateY(-6px);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.14), rgba(255, 255, 255, 0.07));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.1),
    0 16px 30px rgba(6, 20, 30, 0.12);
}

.company-achievements-section .achievement i {
  margin-bottom: 18px;
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.18);
  color: #f7ffd0;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.12),
    0 10px 20px rgba(6, 20, 30, 0.12);
}

.company-achievements-section .achievement h2,
.company-achievements-section .achievement p {
  color: #fff;
}

.company-achievements-section .achievement h2 {
  margin-bottom: 12px;
  text-shadow: 0 8px 22px rgba(6, 20, 30, 0.18);
}

.company-achievements-section .achievement p {
  opacity: 0.84;
  max-width: 15ch;
  margin-inline: auto;
  line-height: 1.45;
}

.notre-expertise-section {
  margin: 0;
}

.notre-expertise-section .dust-recycle-card {
  border-radius: 28px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 24px 60px rgba(6, 20, 30, 0.22);
  backdrop-filter: blur(10px);
}

.why-choice-us {
  margin-top: 36px;
  padding: 52px 34px 24px;
  border-radius: 34px;
  background:
    linear-gradient(180deg, rgba(247, 248, 242, 0.96), rgba(255, 255, 255, 0.98));
  box-shadow: 0 18px 52px rgba(10, 30, 43, 0.08);
}

.shop-home-section {
  background:
    radial-gradient(circle at left top, rgba(0, 69, 64, 0.08), transparent 26%),
    linear-gradient(180deg, #f8faf6 0%, #ffffff 100%);
}

.shop-home-section::before {
  background:
    radial-gradient(circle at right bottom, rgba(200, 230, 60, 0.12), transparent 22%);
}

.shop-home-section .promo-banner {
  border-radius: 30px;
  box-shadow: 0 24px 64px rgba(0, 69, 64, 0.18);
  background: linear-gradient(135deg, #0b5d56 0%, #084842 58%, #0f6a61 100%);
}

.shop-home-section .product-card {
  border-radius: 22px;
  box-shadow: 0 14px 42px rgba(12, 28, 39, 0.08);
  border: 1px solid rgba(0, 69, 64, 0.06);
}

.shop-home-section .product-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 24px 56px rgba(0, 69, 64, 0.14);
}

.shop-home-section .shop-section-header .header-left .common-title h2 {
  color: #083f3a;
}

.shop-home-section .shop-section-header .header-left .common-title h2 span {
  color: #0b5d56;
}

.shop-home-section .shop-section-header {
  align-items: center;
  text-align: center;
}

.shop-home-section .shop-section-header .header-left {
  align-items: center;
  text-align: center;
}

.shop-home-section .shop-section-header .header-right {
  width: 100%;
  display: flex;
  justify-content: center;
}

.shop-home-section .category-icon-chips {
  justify-content: center;
}

.shop-home-section .category-icon-chip {
  border-color: rgba(11, 93, 86, 0.12);
  background: rgba(255, 251, 242, 0.9);
  color: #4f615d;
  box-shadow: 0 6px 18px rgba(11, 93, 86, 0.05);
}

.shop-home-section .category-icon-chip i {
  color: #0b5d56;
}

.shop-home-section .category-icon-chip:hover {
  border-color: rgba(255, 224, 138, 0.5);
  color: #0b5d56;
  background: linear-gradient(180deg, rgba(255, 246, 214, 0.94), rgba(255, 255, 255, 0.98));
  box-shadow: 0 12px 24px rgba(11, 93, 86, 0.1);
}

.shop-home-section .promo-eyebrow {
  background: rgba(255, 224, 138, 0.18);
  color: #fff3cf;
  border: 1px solid rgba(255, 224, 138, 0.24);
}

.shop-home-section .promo-title {
  color: #fff8e8;
}

.shop-home-section .promo-subtitle {
  color: rgba(255, 246, 221, 0.72);
}

.shop-home-section .promo-discount-num {
  color: #ffe08a;
  text-shadow: 0 10px 30px rgba(255, 224, 138, 0.2);
}

.shop-home-section .promo-discount-off {
  color: rgba(255, 246, 221, 0.78);
}

.shop-home-section .promo-cta-btn,
.shop-home-section .btn-primary-green {
  background: linear-gradient(135deg, #0b5d56 0%, #084842 100%);
  color: #fff6dc;
  border: 1px solid rgba(255, 224, 138, 0.28);
  box-shadow: 0 12px 28px rgba(8, 72, 66, 0.2);
}

.shop-home-section .promo-cta-btn:hover,
.shop-home-section .promo-cta-btn:focus,
.shop-home-section .btn-primary-green:hover,
.shop-home-section .btn-primary-green:focus {
  background: linear-gradient(135deg, #0f6a61 0%, #0a514a 100%);
  color: #fff9e9;
  box-shadow: 0 16px 34px rgba(8, 72, 66, 0.28);
}

.shop-home-section .product-cat-badge {
  background: rgba(255, 250, 238, 0.94);
  color: #0b5d56;
  border: 1px solid rgba(255, 224, 138, 0.22);
}

.shop-home-section .product-sale-badge {
  background: linear-gradient(135deg, #e0a83c 0%, #c8891b 100%);
  color: #fffaf0;
}

.shop-home-section .product-price-badge {
  background: rgba(255, 251, 242, 0.96);
  color: #083f3a;
  border: 1px solid rgba(255, 224, 138, 0.24);
}

.shop-home-section .card-overlay {
  background: rgba(8, 72, 66, 0.42);
}

.shop-home-section .card-overlay-btn {
  background: #fff8e7;
  color: #0b5d56;
}

.shop-home-section .card-overlay-btn:hover {
  background: #0b5d56;
  color: #fff6dc;
}

.shop-home-section .product-card .card-cat-label,
.shop-home-section .product-card .price-current {
  color: #0b5d56;
}

.nos-projets-section {
  margin-top: 40px;
  box-shadow: 0 30px 70px rgba(6, 24, 28, 0.2);
}

.nos-projets-section .section-top-3 {
  margin-bottom: 52px;
}

.nos-projets-section .section-top-3 .left .common-title h2 {
  max-width: 700px;
}

.nos-projets-section .we-do-card {
  border-radius: 18px !important;
  box-shadow: 0 18px 44px rgba(4, 22, 23, 0.18);
}

.realisations-section {
  background:
    radial-gradient(circle at top left, rgba(200, 230, 60, 0.12), transparent 22%),
    linear-gradient(180deg, #fbfcf8 0%, #f3f5ef 100%);
  padding: 96px 0 120px;
  border-radius: 34px;
  margin: 42px 20px 120px;
  box-shadow: 0 24px 60px rgba(10, 30, 43, 0.08);
}

.realisations-section::before {
  background:
    radial-gradient(circle at right 18%, rgba(0, 69, 64, 0.07), transparent 18%);
}

.realisations-section .project-card-2 {
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 16px 40px rgba(12, 28, 39, 0.08);
}

.realisations-section .common-title h2,
.realisations-section .section-top-3 .common-title h2 {
  color: var(--theme-color-3, #004540) !important;
}

.realisations-section .section-top-3 {
  align-items: center;
}

.notre-equipe-section {
  background:
    linear-gradient(180deg, #ffffff 0%, #f8faf6 100%);
}

.notre-equipe-section::before {
  background:
    radial-gradient(circle at left center, rgba(200, 230, 60, 0.12), transparent 20%);
}

.notre-equipe-section .volunteer-card-2 .thumb {
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 18px 48px rgba(12, 28, 39, 0.09);
}

.notre-equipe-section .contact-details {
  background: rgba(255, 255, 255, 0.84);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(0, 69, 64, 0.08);
  box-shadow: 0 18px 46px rgba(12, 28, 39, 0.08);
}

.testimonial {
  background:
    radial-gradient(circle at right top, rgba(200, 230, 60, 0.12), transparent 20%),
    linear-gradient(180deg, #f6f8f4 0%, #ffffff 100%);
  border-radius: 34px;
  margin: 0 20px;
  padding-bottom: 100px;
  box-shadow: 0 20px 56px rgba(12, 28, 39, 0.08);
}

.faq-section {
  border-radius: 34px;
  margin: 42px 20px 0;
  overflow: hidden;
  box-shadow: 0 26px 60px rgba(7, 24, 32, 0.18);
}

.faq-section .faq-accordion .accordion-item {
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.08);
  border-radius: 18px;
  overflow: hidden;
}

.latest-blog-section-2 {
  background:
    radial-gradient(circle at left top, rgba(200, 230, 60, 0.12), transparent 24%),
    linear-gradient(180deg, #fcfcf9 0%, #f7f8f2 100%);
}

.latest-blog-section-2::before {
  background:
    radial-gradient(circle at right center, rgba(0, 69, 64, 0.07), transparent 18%);
}

.latest-blog-section-2 .blog-card-2,
.blog-listing-page .blog-card-2 {
  display: flex;
  flex-direction: column;
  width: 100%;
  height: 100%;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 18px 48px rgba(12, 28, 39, 0.08);
  border: 1px solid rgba(0, 69, 64, 0.06);
}

.latest-blog-section-2 .row > [class*="col-"],
.blog-listing-page .row > [class*="col-"] {
  display: flex;
}

.latest-blog-section-2 .blog-card-2 .thumb,
.blog-listing-page .blog-card-2 .thumb {
  position: relative;
  flex-shrink: 0;
  overflow: hidden;
  aspect-ratio: 16 / 11;
}

.latest-blog-section-2 .blog-card-2 .thumb > a,
.blog-listing-page .blog-card-2 .thumb > a {
  display: block;
  height: 100%;
}

.latest-blog-section-2 .blog-card-2 .thumb > a img,
.blog-listing-page .blog-card-2 .thumb > a img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.latest-blog-section-2 .blog-card-2 .content,
.blog-listing-page .blog-card-2 .content {
  display: flex;
  flex: 1;
  flex-direction: column;
}

.latest-blog-section-2 .blog-card-2 .content .content-top,
.blog-listing-page .blog-card-2 .content .content-top {
  display: flex;
  flex: 1;
  flex-direction: column;
}

.latest-blog-section-2 .blog-card-2 .content .title,
.blog-listing-page .blog-card-2 .content .title {
  min-height: calc(1.45em * 3);
}

.latest-blog-section-2 .blog-card-2 .content .title h3,
.blog-listing-page .blog-card-2 .content .title h3 {
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}

.latest-blog-section-2 .blog-card-2 .content .content-bottom,
.blog-listing-page .blog-card-2 .content .content-bottom {
  margin-top: auto;
}

@media (max-width: 991px) {
  .why-us-section-2 {
    padding-bottom: 104px !important;
  }

  .why-us-section-2 .why-us-content {
    border-radius: 24px;
    padding: 28px 24px;
  }

  .realisations-section,
  .testimonial,
  .faq-section {
    margin-left: 12px;
    margin-right: 12px;
    border-radius: 24px;
  }

  .why-choice-us {
    padding: 40px 20px 14px;
    border-radius: 24px;
  }
}

@media (max-width: 575px) {
  .company-achievements-section {
    margin: -30px 0 38px;
    padding: 0 12px;
  }

  .services-section .project-card.style-service,
  .tarif-card,
  .shop-home-section .product-card,
  .latest-blog-section-2 .blog-card-2,
  .blog-listing-page .blog-card-2 {
    border-radius: 18px;
  }

  .company-achievements-section .company-achievements {
    padding: 14px;
    border-radius: 20px;
  }

  .realisations-section {
    padding-top: 74px;
    padding-bottom: 84px;
  }
}
