/*
 * ETS Theme Main Stylesheet
 * You can add your custom CSS here or use it as a compiled output file.
 */

:root {
  --primary-color: #ff3b3b;
  --text-color: #333333;
  --border-color: #e5e5e5;
  --bg-color: #fafafa;
}

* {
  box-shadow: none !important;
}

@media (min-width: 993px) {
  section {
    padding: 80px 100px !important;
  }
}

body {
  margin: 0;
  font-family: "Poppins", sans-serif;
  color: var(--text-color);
  overflow-x: hidden;
}

/* Header Base */
.site-header {
  background: #fff;
  border-bottom: 1px solid var(--border-color);
  position: relative;
}

.header-inner {
  display: flex;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 15px;
}

.header-left {
  flex: 0 0 250px;
  display: flex;
  align-items: center;
  border-right: 1px solid var(--border-color);
  padding-right: 20px;
}

.header-left img.custom-logo {
  max-width: 100%;
  height: auto;
}

.header-right {
  flex: 1;
  display: flex;
  flex-direction: column;
}

/* Top Bar */
.header-top-bar {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  padding: 10px 20px;
  border-bottom: 1px solid var(--border-color);
}

.header-contact {
  display: flex;
  align-items: center;
  margin-right: 30px;
}

.contact-icon {
  width: 40px;
  height: 40px;
  background: var(--bg-color);
  border-radius: 4px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-right: 15px;
}

.contact-details {
  display: flex;
  flex-direction: column;
}

.emergency-text {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.phone-number {
  font-size: 24px;
  font-weight: 700;
  color: var(--primary-color);
  text-decoration: none;
  line-height: 1;
}

.header-cta {
  border-left: 1px solid var(--border-color);
  padding-left: 30px;
}

.btn-devis {
  display: inline-block;
  padding: 11px 26px;
  background: var(--primary-color);
  color: #fff;
  font-weight: 600;
  text-decoration: none;
  border-radius: 8px;
  box-shadow: 0 6px 16px rgba(255, 59, 59, 0.3);
  transition: all 0.25s ease;
}

.btn-devis:hover {
  background: #e62e2e;
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(255, 59, 59, 0.42);
}

.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  margin-left: 20px;
}

/* Bottom Bar (Navigation) */
.header-bottom-bar {
  padding: 15px 20px;
}

.custom-header-nav {
  width: 100%;
}

.acf-menu-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: space-between;
  width: 100%;
}

.menu-item {
  text-align: center;
}

.menu-item a {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-decoration: none;
  color: var(--text-color);
  font-size: 13px;
  font-weight: 600;
  transition: color 0.3s ease;
}

.menu-item a:hover {
  color: var(--primary-color);
}

.menu-icon {
  display: block;
  height: 30px;
  margin-bottom: 5px;
}

.menu-icon img {
  max-height: 100%;
  width: auto;
}

/* Responsive */
@media (max-width: 992px) {
  .header-inner {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }

  .header-left {
    border-right: none;
    padding: 15px 0;
  }

  .header-top-bar {
    border-bottom: none;
    padding: 15px 0;
  }

  .header-contact,
  .header-cta {
    display: none;
  }

  .mobile-menu-toggle {
    display: block;
  }

  .header-bottom-bar {
    display: none; /* Can be toggled via JS */
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: #fff;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    z-index: 1000;
  }

  .acf-menu-list {
    flex-direction: column;
  }

  .menu-item {
    border-bottom: 1px solid var(--border-color);
  }

  .menu-item a {
    flex-direction: row;
    padding: 9px 20px;
  }

  .menu-icon {
    margin-bottom: 0;
    margin-right: 15px;
  }
  .acf-menu-list .submenu li a {
    text-align: start;
    padding: 6px 16px;
  }
}

/* =========================================
   Hero Section
   ========================================= */
.hero-section {
  background-color: var(--bg-color);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.hero-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 15px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 50px;
}

.hero-content {
  flex: 1;
  max-width: 700px;
}

.hero-subtitle {
  font-size: 16px;
  font-weight: 700;
  color: #000;
  margin-bottom: 15px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.hero-title {
  font-size: 48px;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 25px;
  color: #000;
}

.hero-description {
  font-size: 16px;
  font-weight: 400;
  color: #000;
  line-height: 1.6;
  margin-bottom: 40px;
}

.hero-buttons {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 50px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 15px 30px;
  border-radius: 4px;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
}

.btn-primary {
  background-color: var(--primary-color);
  color: #fff;
  border: 1px solid var(--primary-color);
}

.btn-primary:hover {
  background-color: #e02f2f;
  border-color: #e02f2f;
}

.btn-primary svg {
  margin-right: 10px;
}

.btn-outline {
  background-color: transparent;
  color: var(--text-color);
  border: 1px solid var(--text-color);
}

.btn-outline:hover {
  background-color: var(--text-color);
  color: #fff;
}

.hero-ratings-wrapper {
  margin-top: 35px;
}

.hero-ratings {
  display: inline-flex;
  align-items: center;
  gap: 20px;
  background-color: #fff;
  padding: 12px 25px;
  border-radius: 50px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  border: 1px solid #f0f0f0;
}

.rating-divider {
  width: 1px;
  height: 40px;
  background-color: #d1d5db;
  margin: 0 5px;
}

.rating-item {
  display: flex;
  align-items: center;
  gap: 15px;
}

.rating-stars {
  display: flex;
  flex-direction: column;
}

.rating-text {
  font-size: 13px;
  font-weight: 700;
  color: #1a1a1a;
}

.hero-media {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

.video-container {
  width: 100%;
  max-width: 650px;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  background: #ccc;
  position: relative;
  /* 16:9 aspect ratio */
  aspect-ratio: 16 / 9;
}

.video-container iframe,
.video-container video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}

.video-placeholder {
  width: 100%;
  max-width: 650px;
  aspect-ratio: 16/9;
  background: #bbb;
  border-radius: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* =========================================
   Sticky Contact Button & Popup
   ========================================= */
.sticky-contact-btn {
  position: fixed;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  background-color: #efefef;
  color: var(--text-color);
  padding: 15px 10px;
  writing-mode: vertical-rl;
  text-orientation: mixed;
  text-decoration: none;
  font-weight: 700;
  font-size: 14px;
  border-radius: 5px 0 0 5px;
  box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1);
  z-index: 999;
  transition: all 0.3s ease;
  border: 1px solid #ddd;
  border-right: none;
}

.sticky-contact-btn:hover {
  background-color: var(--primary-color);
  color: #fff;
  border-color: var(--primary-color);
}

.custom-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 9999;
  align-items: center;
  justify-content: center;
}

.custom-modal.active {
  display: flex;
}

.custom-modal-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
}

.custom-modal-content {
  background: #fff;
  width: 90%;
  max-width: 500px;
  border-radius: 8px;
  position: relative;
  z-index: 10;
  padding: 30px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.custom-modal-close {
  position: absolute;
  top: 15px;
  right: 15px;
  background: none;
  border: none;
  cursor: pointer;
  color: #777;
}

.custom-modal-close:hover {
  color: var(--primary-color);
}

.modal-body h3 {
  margin-top: 0;
  margin-bottom: 20px;
  font-size: 24px;
  color: var(--text-color);
}

/* Responsive adjustments for Hero */
@media (max-width: 992px) {
  .hero-container {
    flex-direction: column;
    text-align: center;
  }

  .hero-buttons {
    justify-content: center;
    gap: 12px;
	  flex-direction:column;
  }
  /* Both buttons on one row, each on a single line (no wrap) */
  .hero-buttons .btn {
    flex: 1 1 0;
    white-space: nowrap;
    padding: 14px 12px;
    font-size: 14px;
  }
  .btn-primary svg {
    margin-right: 7px;
  }

  /* Google + Trustpilot stay side by side on one line */
  .hero-ratings {
    justify-content: center;
    flex-direction: row;
    flex-wrap: nowrap;
    gap: 8px;
    padding: 10px 14px;
  }
  .rating-item {
    gap: 8px;
  }
  .rating-divider {
    margin: 0 2px;
  }
}

/* =========================================
   Features Bar Section
   ========================================= */
.features-bar-section {
  background-color: #f8f6f4 !important; /* Beige background full width */
  padding: 40px 100px !important; /* Override the global section padding to fit perfectly */
  border-top: 1px solid #eee;
  border-bottom: 1px solid #eee;
}

.features-bar-container {
  max-width: 1400px;
  margin: 0 auto;
  background-color: transparent;
  border-radius: 0;
  padding: 0;
}

.features-list {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: nowrap;
  gap: 20px;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 15px;
  flex: 1 1 0;
}

.feature-icon {
  width: 50px;
  height: 50px;
  background: #fff;
  border-radius: 12px;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
  flex-shrink: 0;
}

.feature-icon img {
  max-width: 24px;
  max-height: 24px;
  object-fit: contain;
}

.feature-text {
  font-size: 14px;
  font-weight: 700;
  color: var(--text-color);
  line-height: 1.3;
}

/* Responsive adjustments for Features Bar */
@media (max-width: 992px) {
  .features-bar-section {
    padding: 36px 24px !important; /* override the 100px desktop side padding */
  }
  .features-list {
    justify-content: center;
    flex-wrap: wrap;
  }

  .feature-item {
    min-width: 45%;
    flex: 1 1 auto;
    margin-bottom: 15px;
  }
}

@media (max-width: 576px) {
  .features-bar-section {
    padding: 30px 16px !important;
  }
  /* 2 columns; 5 items => rows of 2 + 2 + 1 (last spans full width) */
  .features-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px 14px;
    align-items: center;
  }
  .feature-item {
    min-width: 0;
    flex: none;
    justify-content: flex-start;
    align-items: center;
    margin-bottom: 0;
    gap: 10px;
  }
  .feature-icon {
    width: 40px;
    height: 40px;
  }
  .feature-text {
    font-size: 12.5px;
    line-height: 1.25;
    min-width: 0; /* allow text to wrap inside the flex item instead of clipping */
  }
  /* Only 5 features: put the last one on its own full-width line, centered */
  .feature-item:last-child {
    grid-column: 1 / -1;
    justify-content: center;
  }
}

/* =========================================
   Certificates Bar Section
   ========================================= */
.certificates-bar-section {
  padding: 60px 15px;
  background-color: #fff;
  border-top: 1px solid #f0f0f0;
  border-bottom: 1px solid #f0f0f0;
}

.certificates-bar-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.certificates-title {
  flex-shrink: 0;
  padding-right: 60px;
  margin-right: 60px;
  position: relative;
}

/* Vertical Divider */
.certificates-title::after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 70px;
  background-color: #e0e0e0;
}

.certificates-title h2 {
  font-size: 36px;
  font-weight: 700;
  margin: 0;
  color: #1a1a1a;
  white-space: nowrap;
  letter-spacing: -0.5px;
}

.certificates-list {
  display: flex;
  align-items: center;
  gap: 60px;
  flex-wrap: wrap;
  justify-content: center;
}

.certificate-item {
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease;
}

.certificate-item:hover {
  transform: translateY(-3px);
}

.certificate-item img {
  max-height: 120px;
  width: auto;
  object-fit: contain;
  filter: grayscale(0%);
  transition: filter 0.3s ease;
}

/* Responsive adjustments for Certificates Bar */
@media (max-width: 992px) {
  .certificates-bar-container {
    flex-direction: column;
    text-align: center;
  }

  .certificates-title {
    padding-right: 0;
    margin-right: 0;
    margin-bottom: 40px;
  }

  .certificates-title::after {
    width: 60px;
    height: 1px;
    bottom: -20px;
    top: auto;
    left: 50%;
    transform: translateX(-50%);
  }

  .certificates-list {
    gap: 20px;
  }
}

@media (max-width: 576px) {
  .certificates-title h2 {
    font-size: 24px;
  }

  .certificate-item img {
    max-height: 65px;
  }

  .certificates-list {
    gap: 25px;
  }
}

/* =========================================
   About Section
   ========================================= */
.about-section {
  padding: 80px 15px;
  background-color: #fff;
}

.about-container {
  max-width: 1300px;
  margin: 0 auto;
}

.about-grid {
  display: flex;
  align-items: center;
  background: transparent;
}

.about-image-col {
  flex: 0 0 45%;
  max-width: 45%;
}

.about-img {
  width: 100%;
  /* height: 530px; */
  object-fit: cover;
  position: relative;
  z-index: 9;
  border-radius: 12px;
}

.about-content-col {
  flex: 0 0 59%;
  display: flex;
  align-items: center;
  margin-left: -20px;
  z-index: 1;
}

.about-text-box {
  background: #fff;
  padding: 25px 50px;
  border: 1px solid #f2e9de; /* Light warm border */
  border-radius: 0 40px 40px 0; /* Rounded right corners */
  width: 100%;
}

.about-text-box.no-box-style {
  background: transparent;
  border: none;
  padding: 30px 20px;
  margin-left: 30px;
}

.about-title {
  font-size: 35px;
  font-weight: 700;
  color: #1a1a1a;
  margin: 0 0 10px 0;
  letter-spacing: -0.5px;
}

.about-subtitle {
  font-size: 16px;
  font-weight: 700;
  color: #333;
  margin: 0 0 20px 0;
}

.about-content {
  font-size: 15px;
  line-height: 1.6;
  color: #444;
  margin-bottom: 30px;
}

.about-content p {
  margin-bottom: 15px;
}

.about-content p:last-child {
  margin-bottom: 0;
}

.about-features-list {
  list-style: none;
  padding: 0;
  margin: 0 0 30px 0;
}

.about-features-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 15px;
}

.about-features-list li:last-child {
  margin-bottom: 0;
}

.about-check-icon {
  flex-shrink: 0;
  margin-top: 3px;
}

.about-list-text {
  font-size: 15px;
  color: #444;
  line-height: 1.5;
}

.about-list-text p {
  margin-bottom: 0;
}

.btn-text-arrow {
  display: inline-flex;
  align-items: center;
  padding: 14px 28px;
  background: #ff2d3c;
  color: #ffffff;
  font-weight: 600;
  font-size: 16px;
  text-decoration: none;
  border-radius: 6px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(255, 45, 60, 0.2);
}

.btn-text-arrow svg {
  margin-left: 10px;
  transition: transform 0.3s ease;
  stroke: currentColor;
}

.btn-text-arrow:hover {
  background: #e62534;
  color: #ffffff;
  box-shadow: 0 6px 20px rgba(255, 45, 60, 0.35);
}

.btn-text-arrow:hover svg {
  transform: translateX(6px);
}

/* Responsive adjustments for About Section */
@media (max-width: 992px) {
  .about-grid {
    flex-direction: column;
  }

  .about-image-col,
  .about-content-col {
    flex: 0 0 100%;
    max-width: 100%;
  }

  .about-image-col {
    margin-bottom: -30px;
  }

  .about-content-col {
    margin-left: 0;
    padding: 0 20px;
  }

  .about-text-box {
    border-radius: 20px;
    padding: 40px 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  }
}

@media (max-width: 768px) {
  /* Show the full photo (no crop) and stop the text box overlapping it */
  .about-img {
    height: auto;
  }
  .about-image-col {
    margin-bottom: 20px;
  }
  /* Center the text on mobile */
  .about-content-col,
  .about-text-box,
  .about-text-box.no-box-style {
    text-align: center;
    margin-left: 0;
    padding: 0px;
  }
  .about-features-list li {
    /* justify-content: center; */
    text-align: left;
  }
}

@media (max-width: 576px) {
  .about-title {
    font-size: 28px;
  }

  .about-text-box {
    padding: 30px 20px;
  }
}

/* =========================================
   Services Grid Section
   ========================================= */
.services-grid-section {
  background-color: #050505;
  padding: 80px 15px;
  color: #fff;
  border-radius: 20px;
}

.sg-container {
  max-width: 1200px;
  margin: 0 auto;
}

.sg-row {
  display: flex;
  gap: 30px;
  align-items: stretch;
}

.sg-left-col {
  flex: 0 0 calc(60% - 15px);
  display: flex;
  flex-direction: column;
}

.sg-right-col {
  flex: 0 0 calc(40% - 15px);
  display: flex;
}

.sg-header {
  margin-bottom: 40px;
}

.sg-subtitle {
  color: #e62b2b;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  display: flex;
  align-items: center;
  margin-bottom: 15px;
}

.sg-line {
  width: 25px;
  height: 2px;
  background-color: #e62b2b;
  margin-right: 10px;
}

.sg-title {
  font-size: 36px;
  font-weight: 700;
  color: #fff;
  margin: 0 0 20px 0;
}

.sg-description {
  color: #aaa;
  font-size: 14px;
  line-height: 1.6;
  margin: 0;
}

.sg-squares-wrapper {
  display: flex;
  gap: 20px;
  margin-bottom: 20px;
}

.sg-item {
  position: relative;
  overflow: hidden;
  display: block;
  text-decoration: none;
  flex: 1;
}

.sg-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.sg-item:hover img {
  transform: scale(1.05);
}

.sg-square {
  aspect-ratio: 1 / 1;
}

.sg-tall {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.sg-item-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 60px 20px 20px 20px;
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.8) 0%,
    rgba(0, 0, 0, 0) 100%
  );
  display: flex;
  align-items: flex-end;
  justify-content: center;
}

.sg-item-overlay h3 {
  color: #fff;
  font-size: 18px;
  font-weight: 700;
  margin: 0;
  text-align: center;
}

.sg-cta-box {
  background-color: #d11f1f;
  padding: 25px;
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: auto;
}

.sg-cta-icon {
  width: 60px;
  height: 60px;
  background-color: rgba(255, 255, 255, 0.15);
  border-radius: 8px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-shrink: 0;
}

.sg-cta-icon img {
  max-width: 30px;
  max-height: 30px;
  object-fit: contain;
}

.sg-cta-content {
  flex: 1;
}

.sg-cta-content h3 {
  color: #fff;
  font-size: 20px;
  font-weight: 700;
  margin: 0 0 5px 0;
}

.sg-cta-content p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 12px;
  line-height: 1.4;
  margin: 0;
}

.sg-cta-action {
  flex-shrink: 0;
}

.sg-btn {
  display: inline-flex;
  align-items: center;
  padding: 10px 20px;
  background-color: transparent;
  border: 1px solid #8a0f0f;
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  border-radius: 4px;
  transition: all 0.3s ease;
}

.sg-btn svg {
  margin-left: 8px;
}

.sg-btn:hover {
  background-color: #8a0f0f;
}

/* Responsive adjustments for Services Grid */
@media (max-width: 992px) {
  .sg-row {
    flex-direction: column;
  }
  .sg-left-col,
  .sg-right-col {
    flex: 0 0 100%;
  }
  .sg-tall {
    aspect-ratio: 4/3;
    height: auto;
  }
}

@media (max-width: 768px) {
  .sg-squares-wrapper {
    flex-direction: column;
  }
  .sg-square {
    aspect-ratio: 16/9;
  }
  .sg-cta-box {
    flex-direction: column;
    text-align: center;
  }
  .sg-cta-action {
    margin-top: 15px;
  }
}

/* =========================================
   Shared Section Headers (Used in multiple sections)
   ========================================= */
.section-subtitle {
  color: #e62b2b;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 15px;
}

.section-line {
  width: 25px;
  height: 2px;
  background-color: #e62b2b;
  margin-right: 10px;
}

.section-title {
  font-size: 36px;
  font-weight: 700;
  color: #1a1a1a;
  margin: 0 0 20px 0;
  letter-spacing: -0.5px;
}

/* =========================================
   Process Steps Section
   ========================================= */
.process-steps-section {
  padding: 80px 15px;
  background-color: #fffaf7; /* very light warm background */
}

.ps-container {
  max-width: 1200px;
  margin: 0 auto;
}

.ps-header {
  margin-bottom: 60px;
}

.ps-timeline-wrapper {
  position: relative;
  margin-bottom: 40px;
}

.ps-timeline-line {
  position: absolute;
  top: 25px; /* center of the circles */
  left: 50px;
  right: 50px;
  height: 1px;
  background-color: #ffcccc;
  z-index: 0;
}

.ps-steps-grid {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  position: relative;
  z-index: 1;
}

.ps-step-item {
  flex: 1;
  background: transparent;
}

.ps-step-number-wrapper {
  margin-bottom: 25px;
}

.ps-step-number {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: #fff;
  border: 2px solid #ffcccc;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 16px;
  font-weight: 700;
  color: #1a1a1a;
  position: relative;
  z-index: 2;
}

.ps-step-badge {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: transparent;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  z-index: 2;
}

.ps-step-badge img {
  width: 50px;
  height: 50px;
  object-fit: contain;
}

.ps-step-title {
  font-size: 18px;
  font-weight: 700;
  color: #1a1a1a;
  margin: 0 0 15px 0;
}

.ps-step-desc {
  font-size: 14px;
  line-height: 1.6;
  color: #555;
  margin: 0;
}

.ps-action {
  display: flex;
  justify-content: center;
  margin-top: 50px;
}

.btn-dark-arrow {
  display: inline-flex;
  align-items: center;
  padding: 15px 30px;
  background-color: #111;
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  border-radius: 6px;
  transition: background-color 0.3s ease;
}

.btn-dark-arrow svg {
  margin-left: 10px;
  transition: transform 0.3s ease;
}

.btn-dark-arrow:hover {
  background-color: #333;
}

.btn-dark-arrow:hover svg {
  transform: translateX(5px);
}

/* =========================================
   Expertise Grid Section
   ========================================= */
.expertise-grid-section {
  padding: 80px 15px;
  background-color: #fffaf7;
}

.ex-container {
  max-width: 1300px;
  margin: 0 auto;
}

.ex-row {
  display: flex;
  align-items: center;
  gap: 60px;
}

.ex-left-col {
  flex: 0 0 40%;
  max-width: 40%;
}

.ex-description {
  font-size: 15px;
  line-height: 1.6;
  color: #555;
  margin-top: 20px;
}

.ex-right-col {
  flex: 0 0 60%;
  max-width: 60%;
}

.ex-features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  align-items: start;
}

.ex-feature-card:nth-child(even) {
  margin-top: 40px;
}

.ex-feature-card {
  background-color: #fff;
  padding: 40px;
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.04);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.ex-feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.06);
}

.ex-feature-icon {
  width: 64px;
  height: 64px;
  background-color: #fbf5ee;
  border-radius: 12px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 25px;
}

.ex-feature-icon img {
  max-width: 44px;
  max-height: 44px;
  object-fit: contain;
}

.ex-feature-title {
  font-size: 18px;
  font-weight: 700;
  color: #111;
  margin: 0 0 15px 0;
}

.ex-feature-desc {
  font-size: 14px;
  line-height: 1.6;
  color: #666;
  margin: 0;
}

/* Responsive */
@media (max-width: 992px) {
  .ps-steps-grid {
    flex-direction: column;
    gap: 40px;
  }

  .ps-timeline-line {
    top: 0;
    bottom: 0;
    left: 24px;
    width: 1px;
    height: auto;
  }

  .ps-step-item {
    position: relative;
    padding-left: 60px;
  }

  .ps-step-number-wrapper {
    position: absolute;
    left: 0;
    top: 0;
    margin-bottom: 0;
  }

  .ex-row {
    flex-direction: column;
    gap: 10px;
  }

  .ex-left-col,
  .ex-right-col {
    flex: 0 0 100%;
    max-width: 100%;
  }

  .ex-left-col {
    margin-bottom: 0px;
    text-align: center;
  }

  .section-subtitle {
    justify-content: center;
  }
}

@media (max-width: 576px) {
  .ex-features-grid {
    grid-template-columns: 1fr;
  }

  .ex-feature-card:nth-child(even) {
    margin-top: 0;
  }

  .ex-feature-card {
    padding: 30px;
  }
  .ex-feature-icon {
    margin-bottom: 10px;
  }
}

/* =========================================
   Solutions Gallery Section
   ========================================= */
.solutions-gallery-section {
  padding: 80px 15px;
  background-color: #fff;
}

.sol-container {
  max-width: 1300px;
  margin: 0 auto;
}

.sol-header {
  margin-bottom: 40px;
}

.sol-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  grid-auto-rows: 250px;
  gap: 20px;
}

.sol-item {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  display: block;
  text-decoration: none;
}

.sol-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.sol-item:hover img {
  transform: scale(1.05);
}

.sol-item-1 {
  grid-row: span 2;
}

.sol-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 60px 25px 25px 25px;
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.8) 0%,
    rgba(0, 0, 0, 0) 100%
  );
  display: flex;
  align-items: flex-end;
}

.sol-overlay h3 {
  color: #fff;
  font-size: 20px;
  font-weight: 700;
  margin: 0;
}

/* =========================================
   Emergency Banner Section
   ========================================= */
.emergency-banner-section {
  max-width: 1300px;
  margin: 40px auto 80px auto;
  background-size: cover;
  background-position: center;
  position: relative;
  border-radius: 20px;
  overflow: hidden;
}

.eb-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  z-index: 1;
}

.eb-container {
  position: relative;
  z-index: 2;
}

.eb-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.eb-text-col {
  flex: 1;
}

.eb-title {
  color: #fff;
  font-size: 32px;
  font-weight: 700;
  margin: 0 0 15px 0;
}

.eb-desc {
  color: rgba(255, 255, 255, 0.9);
  font-size: 16px;
  line-height: 1.5;
  margin: 0;
}

.eb-action-col {
  flex-shrink: 0;
}

.eb-buttons-wrapper {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.btn-white-box {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 30px;
  background-color: #f7f7f7;
  color: #111 !important;
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
  border-radius: 6px;
  transition: all 0.3s ease;
}

.btn-white-box svg {
  margin-left: 10px;
  transition: transform 0.3s ease;
}

.btn-white-box:hover {
  background-color: #e0e0e0;
}

.btn-white-box:hover svg {
  transform: translateX(5px);
}

.btn-red-box {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 30px;
  background-color: #ff2a2a;
  color: #fff !important;
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
  border-radius: 6px;
  transition: all 0.3s ease;
}

.btn-red-box:hover {
  background-color: #e61919;
}

/* =========================================
   Why Us Section
   ========================================= */
.why-us-section {
  padding: 80px 15px;
  background-color: #fff;
}

.wu-container {
  max-width: 1300px;
  margin: 0 auto;
}

.wu-row {
  display: flex;
  gap: 80px;
  align-items: stretch;
}

.wu-image-col {
  flex: 0 0 45%;
  max-width: 45%;
}

.wu-image-wrapper {
  position: relative;
  padding: 40px 0 0 40px;
  height: 100%;
}

.wu-main-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 12px;
}

.wu-float-box-top {
  position: absolute;
  top: 0;
  right: -30px;
  background-color: #fff;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  min-width: 150px;
}

.wu-box-icon {
  max-width: 30px;
  margin-bottom: 10px;
}

.wu-box-text strong {
  display: block;
  font-size: 14px;
  color: #111;
}

.wu-box-text span {
  font-size: 12px;
  color: #666;
}

.wu-float-box-bottom {
  position: absolute;
  bottom: 20px;
  left: 0;
  background-color: #fc3030;
  padding: 25px;
  color: #fff;
  border-radius: 8px;
  text-align: center;
}

.wu-box2-number {
  font-size: 32px;
  font-weight: 700;
  line-height: 1;
  margin-bottom: 5px;
}

.wu-box2-text {
  font-size: 10px;
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 1px;
}

.wu-content-col {
  flex: 0 0 55%;
  max-width: 55%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.wu-description {
  font-size: 15px;
  line-height: 1.6;
  color: #555;
  margin-bottom: 30px;
}

.wu-features-list {
  display: flex;
  flex-direction: column;
}

.wu-feature-item {
  display: flex;
  gap: 20px;
  padding: 20px 0;
  border-bottom: 1px solid #eee;
}

.wu-feature-item:last-child {
  border-bottom: none;
}

.wu-feat-num {
  color: #fc3030;
  font-size: 24px;
  font-weight: 700;
}

.wu-feat-content {
  flex: 1;
}

.wu-feat-title {
  font-size: 18px;
  font-weight: 700;
  color: #111;
  margin: 0 0 5px 0;
}

.wu-feat-desc {
  font-size: 14px;
  line-height: 1.5;
  color: #666;
  margin: 0;
}

/* =========================================
   Contact Section
   ========================================= */

.page-id-25184 .wpcf7-form .wpcf7-text,
.wpcf7-form .wpcf7-textarea {
  background-color: #fcf8f5;
}

.page-id-25184 .wpcf7-textarea {
  background-color: #fcf8f5 !important;
}

.cf7-submit {
  margin-top: 20px;
}

.contact-section {
  padding: 80px 15px;
  background-color: #fff;
}

.cs-container {
  max-width: 1300px;
  margin: 0 auto;
}

.cs-row {
  display: flex;
  gap: 60px;
}

.cs-left-col {
  flex: 0 0 45%;
  max-width: 45%;
}

/* No-form variant: info content takes the full row, laid out as a clean grid */
.cs-row--no-form .cs-left-col {
  flex: 1 1 100%;
  max-width: 100%;
}
.cs-row--no-form .cs-desc {
  max-width: 720px;
}
.cs-row--no-form .cs-info-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 30px 40px;
}
.cs-row--no-form .cs-emergency-box {
  max-width: 520px;
}

.cs-title {
  font-size: 36px;
  font-weight: 700;
  color: #111;
  margin: 0 0 20px 0;
}

.cs-desc {
  font-size: 15px;
  line-height: 1.6;
  color: #555;
  margin-bottom: 40px;
}

.cs-info-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 40px;
}

.cs-info-item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.cs-info-icon {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-shrink: 0;
}

.cs-info-icon img {
  max-width: 50px;
}

.cs-info-content h4 {
  font-size: 18px;
  font-weight: 700;
  color: #111;
  margin: 0 0 5px 0;
}

.cs-info-details {
  font-size: 14px;
  line-height: 1.5;
  color: #444;
}

.cs-emergency-box {
  background-color: #1a1a1a;
  padding: 25px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  gap: 20px;
  border-left: 4px solid #fc3030;
}

.cs-em-icon {
  width: 60px;
  height: 60px;
  background-color: #333;
  border-radius: 8px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-shrink: 0;
}

.cs-em-icon img {
  max-width: 30px;
}

.cs-em-content {
  display: flex;
  flex-direction: column;
}

.cs-em-sub {
  font-size: 12px;
  color: #aaa;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.cs-em-num {
  font-size: 24px;
  font-weight: 700;
  color: #fff;
  margin: 2px 0;
}

.cs-em-text {
  font-size: 12px;
  color: #fc3030;
}

.cs-right-col {
  flex: 0 0 55%;
  max-width: 55%;
}

.cs-form-wrapper {
  background-color: #fcf8f5;
  padding: 50px;
  border-radius: 20px;
}

.cs-form-title {
  font-size: 28px;
  font-weight: 700;
  color: #111;
  margin: 0 0 30px 0;
}

/* CF7 Form Styles override */
.wpcf7-form .wpcf7-text,
.wpcf7-form .wpcf7-textarea {
  width: 100%;
  padding: 15px 20px;
  border: none;
  border-radius: 8px;
  background-color: #fff;
  font-size: 14px;
  color: #333;

  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.02);
}

.wpcf7-form .wpcf7-submit {
  background-color: #fc3030;
  color: #fff;
  border: none;
  padding: 15px 30px;
  font-size: 15px;
  font-weight: 600;
  border-radius: 8px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.wpcf7-form .wpcf7-submit:hover {
  background-color: #d92424;
}

/* Responsive Overrides */
@media (max-width: 992px) {
  .sol-grid {
    grid-template-columns: 1fr 1fr;
  }

  .sol-item-1 {
    grid-row: span 1;
    grid-column: span 2;
  }

  .eb-content {
    flex-direction: column;
    text-align: center;
  }

  .wu-row,
  .cs-row {
    flex-direction: column;
    gap: 40px;
  }

  .wu-image-col,
  .wu-content-col,
  .cs-left-col,
  .cs-right-col {
    flex: 0 0 100%;
    max-width: 100%;
  }

  .wu-image-wrapper {
    padding: 40px;
  }

  .wu-float-box-top {
    right: 0;
  }
}

@media (max-width: 576px) {
  .sol-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: 250px;
  }

  .sol-item-1 {
    grid-column: span 1;
  }

  .emergency-banner-section {
    margin: 0 15px 60px 15px;
    border-radius: 12px;
  }

  .eb-container {
    /* padding: 40px 20px; */
  }

  .eb-title {
    font-size: 26px;
  }

  .cs-form-wrapper {
    padding: 30px 20px;
  }
}

/* =========================================
   Testimonials Section
   ========================================= */
.testimonials-section {
  padding: 80px 15px;
  background-color: #fff;
}

.tm-container {
  max-width: 1300px;
  margin: 0 auto;
}

.tm-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 50px;
  flex-wrap: wrap;
  gap: 20px;
}

.tm-header-left {
  flex: 1;
}

.tm-google-box {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 15px 25px;
  border: 1px solid #eee;
  border-radius: 8px;
  background-color: #fff;
}

.tm-gb-icon {
  display: flex;
  align-items: center;
}

.tm-gb-text {
  font-size: 13px;
  color: #111;
}

.tm-gb-stars {
  color: #fbbc05;
  font-size: 16px;
  letter-spacing: 2px;
}

.tm-gb-link {
  font-size: 11px;
  font-weight: 700;
  color: #fc3030;
  text-decoration: none;
  text-transform: uppercase;
  margin-left: 10px;
}

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

/* Slick Carousel Styles for Testimonials */
.tm-carousel .slick-slide {
  margin: 0 15px;
}
.tm-carousel .slick-list {
  margin: 0 -15px;
}
.tm-carousel .slick-dots {
  display: flex;
  justify-content: center;
  list-style: none;
  padding: 0;
  margin: 30px 0 0;
  gap: 10px;
}
.tm-carousel .slick-dots li button {
  font-size: 0;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #ccc;
  border: none;
  cursor: pointer;
  padding: 0;
}
.tm-carousel .slick-dots li.slick-active button {
  background: var(--primary-color, #f98500);
}

.tm-card {
  background-color: #fcf8f5;
  padding: 40px;
  border-radius: 12px;
  text-align: center;
  display: flex;
  flex-direction: column;
}

.tm-stars {
  color: #fbbc05;
  font-size: 20px;
  letter-spacing: 2px;
  margin-bottom: 20px;
}

.tm-text {
  font-size: 15px;
  line-height: 1.6;
  color: #444;
  margin-bottom: 30px;
  flex: 1;
}

.tm-author-box {
  border-top: 1px solid #e0dcd9;
  padding-top: 20px;
}

.tm-author-name {
  font-size: 18px;
  font-weight: 700;
  color: #111;
  margin: 0 0 5px 0;
}

.tm-author-role {
  font-size: 12px;
  color: #666;
}

/* =========================================
   Recent Posts Section
   ========================================= */
.recent-posts-section {
  padding: 80px 15px;
  background-color: #fff;
}

.rp-container {
  max-width: 1300px;
  margin: 0 auto;
}

.rp-header {
  margin-bottom: 50px;
}

/* Carousel */
.rp-carousel {
  position: relative;
}

.rp-viewport {
  overflow: hidden;
}

.rp-track {
  display: flex;
  gap: 30px;
  margin-bottom: 40px;
  transition: transform 0.55s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
}

/* 3 cards per view on desktop (two 30px gaps) */
.rp-track .rp-card {
  flex: 0 0 calc((100% - 60px) / 3);
  max-width: calc((100% - 60px) / 3);
}

.rp-card {
  background-color: #fcf8f5;
  border-radius: 12px;
  overflow: hidden;
  transition: transform 0.3s ease;
}

.rp-card:hover {
  transform: translateY(-5px);
}

.rp-img-wrapper {
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background-color: #f0eae5;
}

.rp-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.rp-card:hover .rp-img {
  transform: scale(1.05);
}

.rp-img-placeholder {
  width: 100%;
  height: 100%;
  background-color: #ddd;
}

.rp-content {
  padding: 30px;
}

.rp-meta {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 15px;
}

.rp-author,
.rp-date {
  display: flex;
  align-items: center;
  font-size: 11px;
  color: #fc3030;
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 0.5px;
}

.rp-author svg,
.rp-date svg {
  margin-right: 6px;
}

.rp-title {
  font-size: 20px;
  font-weight: 700;
  line-height: 1.4;
  margin: 0 0 20px 0;
}

.rp-title a {
  color: #111;
  text-decoration: none;
  transition: color 0.3s ease;
}

.rp-title a:hover {
  color: #fc3030;
}

.rp-read-more {
  display: inline-flex;
  align-items: center;
  font-size: 13px;
  font-weight: 700;
  color: #111;
  text-decoration: none;
  transition: color 0.3s ease;
}

.rp-read-more svg {
  margin-left: 6px;
  transition: transform 0.3s ease;
}

.rp-read-more:hover {
  color: #fc3030;
}

.rp-read-more:hover svg {
  transform: translateX(5px);
}

.rp-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
}

.rp-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: #ddd;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.rp-dot.active,
.rp-dot:hover {
  background-color: #fc3030;
}

/* Responsive Overrides */
@media (max-width: 992px) {
  .tm-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  /* 2 cards per view (one 30px gap) */
  .rp-track .rp-card {
    flex: 0 0 calc((100% - 30px) / 2);
    max-width: calc((100% - 30px) / 2);
  }
}

@media (max-width: 768px) {
  .tm-header {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .section-subtitle {
    justify-content: center;
  }
  /* Testimonials become a swipeable slider on mobile */
  .tm-grid {
    display: flex;
    grid-template-columns: none;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    gap: 16px;
    padding: 4px 0 12px;
    scroll-padding: 0 15px;
    scrollbar-width: none;
  }
  .tm-grid::-webkit-scrollbar {
    display: none;
  }
  .tm-card {
    flex: 0 0 86%;
    max-width: 86%;
    scroll-snap-align: center;
    padding: 30px 24px;
  }
  .tm-carousel .tm-card {
    flex: none;
    max-width: 100%;
  }
  /* 1 card per view */
  .rp-track .rp-card {
    flex: 0 0 100%;
    max-width: 100%;
  }
}

/* =========================================
   Footer Section
   ========================================= */
.site-footer {
  background-color: #fcf8f5;
  border-top: 1px solid #eee;
}

.footer-top {
  padding: 80px 0 60px 0;
}

.footer-container {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 15px;
}

.footer-row {
  display: flex;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}

.footer-col-1 {
  flex: 0 0 32%;
}

.footer-col-2 {
  flex: 0 0 28%;
}

.footer-col-3 {
  flex: 0 0 32%;
}

.footer-logo {
  display: block;
  margin-bottom: 25px;
}

.footer-logo img {
  max-width: 220px;
  height: auto;
}

.footer-desc {
  font-size: 15px;
  line-height: 1.6;
  color: #444;
  margin-bottom: 25px;
}

.footer-socials {
  display: flex;
  gap: 12px;
}

.footer-social-link {
  width: 36px;
  height: 36px;
  background-color: #fc3030;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: background-color 0.3s ease;
}

.footer-social-link:hover {
  background-color: #d92424;
}

.footer-social-link img {
  width: 16px;
  height: 16px;
  filter: brightness(0) invert(1);
}

.footer-title {
  font-size: 20px;
  font-weight: 700;
  color: #111;
  margin-bottom: 30px;
}

.footer-services-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
}

.footer-services-list li a {
  color: #333;
  text-decoration: none;
  font-size: 15px;
  font-weight: 600;
  transition: color 0.3s ease;
}

.footer-services-list li a:hover {
  color: #fc3030;
}

.footer-contact-info p {
  margin: 0 0 15px 0;
  font-size: 15px;
  color: #444;
  line-height: 1.6;
}

.footer-contact-info a {
  color: #444;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-contact-info a:hover {
  color: #fc3030;
}

.footer-bottom {
  background-color: #000;
  padding: 20px 0;
  color: #fff;
}

.fb-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 15px;
}

.fb-copy {
  font-size: 14px;
  color: #eee;
}

.fb-links {
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
}

.fb-links a {
  color: #eee;
  text-decoration: none;
  font-size: 14px;
  transition: color 0.3s ease;
}

.fb-links a:hover {
  color: #fc3030;
}

/* Footer Responsive */
@media (max-width: 992px) {
  .footer-col-1,
  .footer-col-2,
  .footer-col-3 {
    flex: 0 0 100%;
  }
}

/* Compact footer on mobile */
@media (max-width: 768px) {
  .footer-top {
    padding: 45px 0 30px;
  }
  .footer-row {
    gap: 30px;
  }
  .footer-logo,
  .footer-desc {
    margin-bottom: 16px;
  }
  .footer-title {
    margin-bottom: 16px;
  }
  /* Keep services in 2 tight columns instead of one long stack */
  .footer-services-list {
    grid-template-columns: 1fr 1fr;
    gap: 10px 20px;
  }
  .footer-contact-info p {
    margin-bottom: 8px;
  }
}

@media (max-width: 576px) {
  .fb-row {
    flex-direction: column;
    text-align: center;
  }

  .fb-links {
    justify-content: center;
  }
}

/* =========================================
   1. Hero Overlay Section (.ho-section)
   ========================================= */
.container {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 15px;
  width: 100%;
}

.ho-section {
  position: relative;
  padding: 140px 15px;
  background-size: cover;
  background-position: center;
  background-color: #f5f5f5;
  min-height: 85vh;
  display: flex;
  align-items: center;
}
.ho-gradient {
  position: absolute;
  top: 0;
  left: 0;
  width: 60%;
  height: 100%;
  background: linear-gradient(
    to right,
    rgba(255, 255, 255, 0.95) 0%,
    rgba(255, 255, 255, 0.85) 60%,
    rgba(255, 255, 255, 0) 100%
  );
  z-index: 1;
}
.ho-container {
  max-width: 1300px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
  width: 100%;
}
.ho-content {
  max-width: 650px;
}
.ho-rating {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: #fff;
  padding: 8px 16px;
  border-radius: 50px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  margin-bottom: 25px;
}
.ho-stars {
  color: #ffc107;
  font-size: 16px;
  letter-spacing: 2px;
  border-right: 1px solid #eee;
  padding-right: 12px;
}
.ho-rating-source {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}
.ho-trustpilot-stars {
  display: flex;
  gap: 2px;
}
.ho-title {
  font-size: 46px;
  font-weight: 800;
  color: #111;
  line-height: 1.1;
  margin-bottom: 20px;
}
.ho-description {
  font-size: 17px;
  color: #444;
  line-height: 1.6;
  margin-bottom: 30px;
}

.hero-section.has-bg-image .hero-subtitle,
.hero-section.has-bg-image .hero-title,
.hero-section.has-bg-image .hero-description {
  color: #111;
}
.ho-checkmarks {
  list-style: none;
  padding: 0;
  margin: 0 0 40px 0;
  display: flex;
  flex-wrap: wrap;
  gap: 15px 25px;
}
.ho-checkmarks li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 15px;
  font-weight: 600;
  color: #111;
}
.ho-actions {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}
.ho-outline-btn {
  background: transparent;
  color: #111;
  border: 1px solid #111;
}
.ho-outline-btn:hover {
  background: #111;
  color: #fff;
}

/* Inline lead-form variant (hero_overlay + show_inline_form) */
.ho-container.has-form {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 560px;
  align-items: center;
  gap: 60px;
}
.ho-container.has-form .ho-content {
  max-width: 100%;
}
.ho-form-col {
  width: 100%;
  max-width: 100%;
}
.ho-form-card {
  background: #fff;
  border-radius: 18px;
  padding: 36px 40px 30px;
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.25);
  border: 1px solid rgba(0, 0, 0, 0.06);
}
.ho-form-card-title {
  font-size: 21px;
  font-weight: 800;
  color: #111;
  margin: 0 0 18px;
  text-align: center;
}
.ho-form-card .custom-quote-form {
  margin: 0;
}

@media (max-width: 992px) {
  .ho-gradient {
    width: 100%;
    background: linear-gradient(
      to right,
      rgba(255, 255, 255, 0.95) 0%,
      rgba(255, 255, 255, 0.9) 100%
    );
  }
  .ho-container.has-form {
    grid-template-columns: 1fr;
    align-items: stretch;
    gap: 30px;
  }
}
@media (max-width: 768px) {
  .ho-section {
    padding: 80px 15px;
    min-height: auto;
  }
  .ho-title {
    font-size: 36px;
  }
  .ho-form-card {
    padding: 26px 20px 20px;
  }
}

/* =========================================
   2. Features Cards CTA Section (.fcc-section)
   ========================================= */
.fcc-section {
  padding: 80px 0;
  background: #f8f6f4;
}
.fcc-header {
  text-align: left;
  margin-bottom: 40px;
}
.fcc-title {
  font-size: 36px;
  font-weight: 800;
  color: #111;
  margin-bottom: 20px;
}
.fcc-desc {
  font-size: 16px;
  color: #555;
  line-height: 1.6;
}
.fcc-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-bottom: 40px;
}
.fcc-card {
  background: #fff;
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.03);
  transition: transform 0.3s ease;
}
.fcc-card:hover {
  transform: translateY(-5px);
}
.fcc-icon {
  margin-bottom: 20px;
}
.fcc-icon img {
  width: 40px;
  height: auto;
}
.fcc-card-title {
  font-size: 18px;
  font-weight: 800;
  color: #111;
  margin-bottom: 15px;
  line-height: 1.3;
}
.fcc-card-desc {
  font-size: 15px;
  color: #555;
  line-height: 1.5;
}
.fcc-bot-desc {
  font-size: 15px;
  color: #555;
  margin-bottom: 30px;
  line-height: 1.6;
}
.fcc-cta-box {
  background: #fff;
  padding: 25px;
  border-radius: 8px;
  font-weight: 700;
  color: #111;
  font-size: 16px;
}

@media (max-width: 992px) {
  .fcc-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 768px) {
  .fcc-grid {
    grid-template-columns: 1fr;
  }
  .fcc-title {
    font-size: 30px;
  }
}

/* =========================================
   3. Alternating Blocks Section (.ab-section)
   ========================================= */
.ab-section {
  padding: 80px 0;
  background: #fff;
}
.ab-header {
  margin-bottom: 60px;
}
.ab-desc {
  max-width: 700px;
  margin: 20px auto 0;
  color: #555;
  font-size: 16px;
  line-height: 1.6;
}
.ab-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.ab-row {
  display: flex;
  align-items: center;
  gap: 40px;
  margin-bottom: 40px;
}
.ab-row-reverse {
  flex-direction: row-reverse;
}
.ab-img-col {
  flex: 0 0 50%;
}
.ab-img-col img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}
.ab-text-col {
  flex: 1;
}
.ab-text-col h3 {
  font-size: 26px;
  font-weight: 800;
  color: #111;
  margin-bottom: 15px;
}
.ab-text-content {
  font-size: 16px;
  color: #555;
  line-height: 1.6;
}
.ab-checklist {
  list-style: none;
  padding: 0;
  margin: 20px 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.ab-checklist li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 15px;
  color: #333;
  line-height: 1.5;
}
.ab-check-icon {
  flex-shrink: 0;
  margin-top: 2px;
  display: flex;
}
.ab-bottom-text {
  margin-top: 20px;
}

@media (max-width: 768px) {
  .ab-row,
  .ab-row-reverse {
    flex-direction: column;
    gap: 20px;
  }
  .ab-img-col {
    flex: 0 0 100%;
  }
}

/* =========================================
   4. Dark Columns Section (.dc-section)
   ========================================= */
.dc-section {
  padding: 80px 0;
  background: #111;
  color: #fff;
}
.dc-header {
  margin-bottom: 50px;
}
.dc-title {
  color: #fff !important;
  font-size: 36px;
}
.dc-desc {
  color: #aaa;
  font-size: 16px;
  margin-top: 15px;
}
.dc-columns-wrap {
  display: flex;
  gap: 30px;
}
.dc-column-box {
  flex: 1;
  background: #1a1a1a;
  padding: 30px;
  border-radius: 8px;
}
.dc-col-title {
  font-size: 22px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 25px;
}
.dc-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.dc-list li {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 20px;
  background: #222;
  padding: 15px;
  border-radius: 6px;
}
.dc-list li:last-child {
  margin-bottom: 0;
}
.dc-list-icon img {
  width: 50px;
  height: auto;
}
.dc-list-text {
  font-size: 16px;
  color: #eee;
  font-weight: 500;
}
.dc-list-content {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.dc-list-desc {
  font-size: 14px;
  color: #bbb;
  line-height: 1.4;
}

.dc-list-desc p {
  margin: 0px;
}
@media (max-width: 768px) {
  .dc-columns-wrap {
    flex-direction: column;
  }
  .dc-column-box {
    padding: 15px;
  }
}

/* =========================================
   5. Pricing Table Section (.pt-section)
   ========================================= */
.pt-section {
  padding: 80px 0;
  background: #fff;
}
.pt-header {
  margin-bottom: 50px;
}
.pt-title {
  font-size: 36px;
  color: #111;
}
.pt-desc {
  font-size: 16px;
  color: #555;
  margin-top: 15px;
}
.pt-table-wrap {
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.05);
  overflow: hidden;
  margin-bottom: 25px;
}
.pt-table {
  width: 100%;
  border-collapse: collapse;
}
.pt-table th {
  background: #111;
  color: #fff;
  padding: 20px;
  text-align: left;
  font-weight: 700;
  font-size: 18px;
}
.pt-table td {
  padding: 18px 20px;
  border-bottom: 1px solid #eee;
  color: #333;
  font-size: 16px;
  font-weight: 500;
}
.pt-table tr:last-child td {
  border-bottom: none;
}
.pt-footnote {
  font-size: 14px;
  color: #666;
  background: #f8f6f4;
  padding: 15px;
  .fcc-grid {
    grid-template-columns: 1fr;
  }
  .fcc-title {
    font-size: 30px;
  }
}

/* =========================================
   6. FAQ Accordion Section (.faq-section)
   ========================================= */
.faq-section {
  padding: 80px 0;
  background: #fff;
}
.faq-header {
  margin-bottom: 30px;
  text-align: left;
}
.faq-title {
  font-size: 34px;
  font-weight: 800;
  color: #111;
  max-width: 800px;
  line-height: 1.2;
}
.faq-accordion-wrapper {
  background-color: #fbf9f6;
  padding: 40px;
  border-radius: 12px;
}
.faq-accordion {
  width: 100%;
}
.faq-item {
  background: #fff;
  margin-bottom: 15px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.02);
}
.faq-question {
  padding: 22px 30px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #fff;
  transition: all 0.3s ease;
}
.faq-question h3 {
  margin: 0;
  font-size: 16px;
  font-weight: 700;
  color: #111;
  padding-right: 20px;
}
.faq-icon {
  position: relative;
  width: 16px;
  height: 16px;
}
.faq-icon::before,
.faq-icon::after {
  content: "";
  position: absolute;
  background: #111;
  transition: transform 0.3s ease;
}
.faq-icon::before {
  top: 7px;
  left: 0;
  width: 16px;
  height: 2px;
}
.faq-icon::after {
  top: 0;
  left: 7px;
  width: 2px;
  height: 16px;
}
.faq-item.active .faq-icon::after {
  transform: rotate(90deg);
}
.faq-answer {
  padding: 0 30px 25px;
  font-size: 15px;
  color: #555;
  line-height: 1.6;
  background: #fff;
}
.faq-answer-inner {
  padding-top: 0;
}
.faq-answer-inner p {
  margin-top: 0;
  margin-bottom: 15px;
}
.faq-answer-inner p:last-child {
  margin-bottom: 0;
}

@media (max-width: 768px) {
  .faq-section {
    padding: 50px 0;
  }
  .faq-accordion-wrapper {
    padding: 18px 16px;
  }
  .faq-title {
    font-size: 24px;
  }
  .faq-header {
    margin-bottom: 22px;
  }
  .faq-question {
    padding: 16px 18px;
  }
  .faq-question h3 {
    font-size: 15px !important;
    padding-right: 14px;
  }
  .faq-answer {
    padding: 0 18px 18px;
    font-size: 14px;
  }
  .faq-answer-inner p {
    font-size: 14px;
  }
}

/* =========================================
   10. Interventions Grid (.interventions-section)
   ========================================= */
.interventions-section {
  padding: 80px 0;
  background-color: #f6f3ef; /* Light beige color from image */
}
.ig-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.ig-grid.ig-cols-3 {
  grid-template-columns: repeat(3, 1fr);
}
.ig-grid.ig-cols-4 {
  grid-template-columns: repeat(4, 1fr);
}
.ig-grid.ig-cols-5 {
  grid-template-columns: repeat(5, 1fr);
}
.ig-grid.ig-cols-6 {
  grid-template-columns: repeat(6, 1fr);
}
.ig-intro-box {
  padding: 20px 20px 20px 0;
}
.ig-intro-box.top-header-mode {
  padding: 0;
  margin-bottom: 40px;
}
.ig-intro-box.top-header-mode .ig-title {
  max-width: 1200px;
  justify-content: center;
  display: flex;
}
.ig-subtitle {
  font-size: 13px;
  font-weight: 700;
  color: #fc3030;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 15px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
}
.ig-line {
  display: inline-block;
  width: 25px;
  height: 2px;
  background-color: #fc3030;
}
.ig-title {
  font-size: 32px;
  font-weight: 800;
  color: #111;
  line-height: 1.2;
  margin-bottom: 20px;
}
.ig-desc {
  font-size: 14px;
  color: #444;
  line-height: 1.6;
}
.ig-card {
  background: #fff;
  border-radius: 8px;
  padding: 20px;
  display: flex;
  flex-direction: column;
}
a.ig-card {
  text-decoration: none;
  color: inherit;
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;
}
a.ig-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.06);
}
a.ig-card .ig-card-title {
  color: #111;
  transition: color 0.2s ease;
}
a.ig-card:hover .ig-card-title {
  color: var(--primary-color, #fc3030);
}
.ig-card-icon {
  margin-bottom: 0px;
}
.ig-card-icon img {
  height: 64px !important;
  width: auto;
  object-fit: contain;
}
.ig-card-title {
  font-size: 18px;
  font-weight: 500;
  color: #111;

  margin: 0px;
  line-height: 1.3;
}
.ig-card-desc {
  font-size: 14px;
  color: #555;
  line-height: 1.6;
}
.ig-card-desc p {
  margin-top: 10px;
}

.ig-card-desc p:last-child {
  margin-top: 10px;
}

@media (max-width: 992px) {
  .ig-grid,
  .ig-grid.ig-cols-3,
  .ig-grid.ig-cols-4,
  .ig-grid.ig-cols-5 {
    grid-template-columns: repeat(2, 1fr);
  }
  .ig-intro-box {
    padding: 0 0 20px 0;
  }
}

@media (max-width: 768px) {
  .ig-grid,
  .ig-grid.ig-cols-3,
  .ig-grid.ig-cols-4,
  .ig-grid.ig-cols-5 {
    grid-template-columns: repeat(1, 1fr) !important;
  }
  .interventions-section {
    padding: 60px 0;
  }
  .ig-card {
    padding: 15px;
  }
  .ig-title {
    font-size: 28px;
  }
  .ig-card-icon {
    margin-bottom: 10px;
    font-weight: 500;
  }
  .ig-card-title {
    margin: 0px;
  }
}

/* =========================================
   11. Commerce Installations (.commerce-installations-section)
   ========================================= */
.commerce-installations-section {
  padding: 80px 0;
  background-color: #f6f3ef; /* Light beige color from image */
}
.ci-header {
  margin-bottom: 40px;
}
.ci-subtitle {
  font-size: 13px;
  font-weight: 700;
  color: #fc3030;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.ci-line {
  display: inline-block;
  width: 25px;
  height: 2px;
  background-color: #fc3030;
}
.ci-title {
  font-size: 32px;
  font-weight: 800;
  color: #111;
  line-height: 1.2;
  margin-bottom: 20px;
}
.ci-desc {
  font-size: 15px;
  color: #444;
  line-height: 1.6;
  max-width: 900px;
}
.ci-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 30px;
}
.ci-card {
  background: #fff;
  border-radius: 8px;
  padding: 20px;
  display: flex;
  align-items: flex-start;
  gap: 15px;
}
.ci-card-icon {
  flex-shrink: 0;
  width: 45px;
  height: 45px;
  background-color: #fc3030;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.ci-card-icon img {
  height: 100%;
  width: 100%;
  object-fit: contain;
  border-radius: 6px;
}
.ci-card-content {
  flex-grow: 1;
}
.ci-card-title {
  font-size: 16px;
  font-weight: 700;
  color: #111;
  margin: 0px;
  line-height: 1.3;
}
.ci-card-desc {
  font-size: 13px;
  color: #555;
  line-height: 1.5;
}
.ci-card-desc p {
  margin-bottom: 5px;
}
.ci-card-desc p:last-child {
  margin-bottom: 0;
}
.ci-bottom-bar {
  background: #fff;
  border-radius: 8px;
  padding: 20px;
  text-align: center;
  font-size: 15px;
  font-weight: 600;
  color: #222;
}

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

@media (max-width: 768px) {
  .ci-grid {
    grid-template-columns: 1fr;
  }
  .commerce-installations-section {
    padding: 60px 0;
  }
  .ci-title {
    font-size: 28px;
  }
}

/* =========================================
   12. Fabricant Features (.fabricant-features-section)
   ========================================= */
.fabricant-features-section {
  padding: 80px 0;
  background-color: #fff;
}
.ff-row {
  display: flex;
  gap: 60px;
}
.ff-left-col {
  flex: 1;
}
.ff-right-col {
  flex: 1;
}
.ff-title {
  font-size: 34px;
  font-weight: 800;
  color: #111;
  line-height: 1.2;
  margin-bottom: 25px;
}
.ff-desc {
  font-size: 15px;
  color: #444;
  line-height: 1.6;
  margin-bottom: 30px;
}
.ff-info-box {
  background-color: #fcf9f5;
  padding: 25px;
  border-radius: 8px;
  font-size: 14px;
  color: #222;
  line-height: 1.6;
}
.ff-features-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.ff-features-list li {
  display: flex;
  align-items: flex-start;
  gap: 15px;
}
.ff-icon {
  flex-shrink: 0;
  margin-top: 3px;
}
.ff-text {
  font-size: 15px;
  line-height: 1.5;
}
.ff-text strong {
  color: #111;
  font-weight: 700;
}
.ff-text span {
  color: #444;
}

@media (max-width: 992px) {
  .ff-row {
    flex-direction: column;
    gap: 40px;
  }
}

@media (max-width: 768px) {
  .fabricant-features-section {
    padding: 60px 0;
  }
  .ff-title {
    font-size: 28px;
  }
}

/* =========================================
   13. Intervention Zones (.intervention-zones-section)
   ========================================= */
.intervention-zones-section {
  padding: 80px 0;
  background-color: #fcfbf9; /* Very light beige */
}
.iz-header {
  margin-bottom: 50px;
}
.iz-subtitle {
  font-size: 13px;
  font-weight: 700;
  color: #fc3030;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.iz-line {
  display: inline-block;
  width: 25px;
  height: 2px;
  background-color: #fc3030;
}
.iz-title {
  font-size: 36px;
  font-weight: 800;
  color: #111;
  line-height: 1.2;
  margin-bottom: 20px;
}
.iz-desc {
  font-size: 15px;
  color: #444;
  line-height: 1.6;
  max-width: 900px;
}
.iz-layout {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}
.iz-tabs-nav {
  flex: 0 0 250px;
}
.iz-tabs-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.iz-tab-btn {
  background: none;
  border: none;
  padding: 0;
  font-size: 16px;
  font-weight: 600;
  color: #111;
  text-align: left;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: inherit;
}
.iz-tab-btn:hover {
  color: #fc3030;
}
.iz-tab-btn.active {
  color: #fc3030;
  font-weight: 700;
}
.iz-map-container {
  flex: 1;
  text-align: center;
  position: relative;
}
.iz-map-img {
  max-width: 100%;
  height: auto;
  opacity: 0.8; /* Slight fade like in image */
}

.iz-map-svg {
  max-width: 100%;
  height: auto;
  width: 100%;
  position: relative;
  z-index: 1;
}

.iz-dept-shape {
  cursor: pointer;
  outline: none;
  transition: transform 0.35s cubic-bezier(0.34, 1.4, 0.64, 1);
}

.iz-dept-hex {
  fill: url(#izFace);
  stroke: #ffffff;
  stroke-width: 1.2px;
  stroke-linejoin: round;
  filter: url(#izBevel);
  transition:
    fill 0.25s ease,
    stroke 0.25s ease;
}

.iz-dept-label {
  font-family: inherit;
  font-size: 15px;
  font-weight: 700;
  fill: #6f655b;
  pointer-events: none;
  transition: fill 0.25s ease;
}

.iz-dept-shape:hover {
  transform: translateY(-3px);
}

.iz-dept-shape:hover .iz-dept-hex {
  fill: #f6d7d2;
  stroke: #ffffff;
}

.iz-dept-shape:hover .iz-dept-label {
  fill: #c0392b;
}

.iz-dept-shape.active {
  transform: translateY(-7px);
}

.iz-dept-shape.active .iz-dept-hex {
  fill: url(#izFaceActive);
  stroke: #ffd2d2;
  stroke-width: 1.4px;
  filter: url(#izBevel) url(#izGlow);
}

.iz-dept-shape.active .iz-dept-label {
  fill: #ffffff;
}

.iz-dept-shape:focus-visible .iz-dept-hex {
  stroke: #ff5a78;
  stroke-width: 2px;
}
.iz-tabs-content-wrapper {
  flex: 0 0 300px;
}
.iz-tab-content {
  display: none;
  animation: fadeIn 0.4s ease;
}
.iz-tab-content.active {
  display: block;
}
.iz-content-title {
  font-size: 24px;
  font-weight: 800;
  color: #111;
  margin-bottom: 15px;
}
.iz-content-desc {
  font-size: 15px;
  color: #444;
  line-height: 1.6;
  margin-bottom: 25px;
}
.iz-btn {
  display: inline-block;
  background-color: #fc3030;
  color: #fff;
  padding: 12px 25px;
  font-size: 14px;
  font-weight: 600;
  border-radius: 4px;
  text-decoration: none;
  transition: background 0.3s;
}
.iz-btn:hover {
  background-color: #d12222;
  color: #fff;
}

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

@media (max-width: 992px) {
  .iz-layout {
    flex-direction: column;
    align-items: flex-start;
  }
  .iz-tabs-nav {
    flex: auto;
    width: 100%;
  }
  .iz-tabs-list {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 15px 25px;
  }
  .iz-map-container {
    width: 100%;
    max-width: 420px;
    margin: 30px auto;
  }
  .iz-tabs-content-wrapper {
    flex: auto;
    width: 100%;
  }
}

@media (max-width: 768px) {
  .intervention-zones-section {
    padding: 60px 0;
  }
  .iz-title {
    font-size: 28px;
  }
}

/* =========================================
   14. Pricing Table (.pricing-table-section)
   ========================================= */
.pricing-table-section {
  padding: 80px 0;
  background-color: #f0ede6; /* Darker beige matching the PDF */
}
.pt-header {
  margin-bottom: 40px;
  text-align: left;
}
.pt-subtitle {
  justify-content: center;
}
.pt-desc {
  margin-left: auto;
  margin-right: auto;
}
.pt-subtitle {
  font-size: 13px;
  font-weight: 700;
  color: #fc3030;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  gap: 10px;
  justify-content: flex-start;
}
.pt-line {
  display: inline-block;
  width: 25px;
  height: 2px;
  background-color: #fc3030;
}
.pt-title {
  font-size: 34px;
  font-weight: 800;
  color: #111;
  line-height: 1.2;
  margin-bottom: 20px;
}
.pt-desc {
  font-size: 15px;
  color: #444;
  line-height: 1.6;
}

.pt-wrap.pt-style-split {
  display: flex;
  align-items: flex-start;
  gap: 60px;
  margin-bottom: 30px;
}
.pt-wrap.pt-style-split .pt-header {
  flex: 0 0 35%;
  margin-bottom: 0;
}
.pt-wrap.pt-style-split .pt-table-container {
  flex: 1;
  margin: 0;
}

@media (max-width: 992px) {
  .pt-wrap.pt-style-split {
    flex-direction: column;
    gap: 30px;
  }
  .pt-wrap.pt-style-split .pt-header,
  .pt-wrap.pt-style-split .pt-table-container {
    flex: 1 1 auto;
    width: 100%;
  }
}

.pt-table-container {
  background-color: #fff;
  border-radius: 8px;
  overflow: hidden;
  margin: 0 auto 30px;
  max-width: 1100px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.04);
}
.pt-table-row {
  display: flex;
  border-bottom: 1px solid #f0f0f0;
}
.pt-table-row:last-child {
  border-bottom: none;
}
.pt-table-header-row {
  background-color: #000;
}
.pt-table-header-row .pt-col-left,
.pt-table-header-row .pt-col-right {
  border-bottom: 2px solid #eee;
}

.pt-col-heading {
  font-size: 15px;
  font-weight: 800;
  color: #fff !important;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.pt-col-left {
  flex: 0 0 35%;
  padding: 25px 30px;
  font-size: 15px;
  font-weight: 700;
  color: #222;
  border-right: 1px solid #f0f0f0;
}
.pt-col-center {
  flex: 1;
  padding: 25px 30px;
  font-size: 15px;
  color: #444;
}
.pt-col-right {
  display: none;
}

/* 3 columns modifier */
.pt-table-container.pt-3-cols .pt-col-left {
  flex: 0 0 25%;
}
.pt-table-container.pt-3-cols .pt-col-center {
  flex: 0 0 50%;
  border-right: 1px solid #f0f0f0;
}
.pt-table-container.pt-3-cols .pt-col-right {
  flex: 0 0 25%;
  display: block;
  padding: 25px 30px;
  font-size: 15px;
  color: #222;
  font-weight: 600;
}

.pt-bottom-bar {
  background: #fff;
  border-radius: 8px;
  padding: 25px 30px;
  font-size: 15px;
  font-weight: 600;
  color: #222;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.04);

  margin: 0 auto;
}
.pt-bottom-bar p {
  margin: 0;
}

@media (max-width: 768px) {
  .pricing-table-section {
    padding: 60px 0;
  }
  .pt-title {
    font-size: 28px;
  }

  /* Make Table Horizontally Scrollable on Mobile */
  .pt-table-container {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    border-radius: 8px; /* Maintain rounded corners */
  }

  /* Force a minimum width to trigger scrolling */
  .pt-table-row {
    min-width: 600px;
  }

  .pt-table-container.pt-3-cols .pt-table-row {
    min-width: 800px; /* Wider minimum for 3 columns */
  }
  .pt-col-left {
    padding: 10px 20px;
  }
  .pt-col-center {
    padding: 10px 20px;
  }
  .pt-bottom-bar {
    padding: 10px 20px;
  }

  .pt-table-container.pt-3-cols .pt-col-right {
    padding:;
  }
}

/* =========================================
   14b. Pricing Buttons (.pricing-buttons-section)
   ========================================= */
.pricing-buttons-section {
  padding: 80px 0;
  background-color: #fcfbf9;
}
.pb-header {
  margin-bottom: 40px;
}
.pb-subtitle {
  font-size: 13px;
  font-weight: 700;
  color: #fc3030;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.pb-line {
  display: inline-block;
  width: 25px;
  height: 2px;
  background-color: #fc3030;
}
.pb-title {
  font-size: 34px;
  font-weight: 800;
  color: #111;
  line-height: 1.2;
  margin-bottom: 20px;
}
.pb-desc {
  font-size: 15px;
  color: #444;
  line-height: 1.6;
  max-width: 900px;
}

.pb-table-container {
  background-color: #fff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02);
}
.pb-table-row {
  display: flex;
  align-items: center;
  border-bottom: 1px solid #f0f0f0;
  padding: 20px 30px;
}
.pb-table-row:last-child {
  border-bottom: none;
}
.pb-col-name {
  flex: 0 0 35%;
  font-size: 15px;
  font-weight: 700;
  color: #222;
  border-right: 1px solid #f0f0f0;
  padding-right: 20px;
}
.pb-col-price {
  flex: 0 0 25%;
  font-size: 15px;
  font-weight: 700;
  color: #222;
  padding: 0 20px;
  border-right: 1px solid #f0f0f0;
}
.pb-col-buttons {
  flex: 1;
  display: flex;
  gap: 15px;
  padding-left: 20px;
  justify-content: flex-start;
}
.btn-pb-red {
  display: inline-block;
  background-color: #fc3030;
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  padding: 10px 20px;
  border-radius: 4px;
  text-decoration: none;
  transition: background 0.3s ease;
}
.btn-pb-red:hover {
  background-color: #e02a2a;
  color: #fff;
}

@media (max-width: 992px) {
  .pb-col-name {
    flex: 0 0 30%;
  }
  .pb-col-price {
    flex: 0 0 30%;
  }
  .pb-col-buttons {
    flex-wrap: wrap;
  }
}

@media (max-width: 768px) {
  .pricing-buttons-section {
    padding: 60px 0;
  }
  .pb-title {
    font-size: 28px;
  }
  .pb-table-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
  }
  .pb-col-name,
  .pb-col-price {
    border-right: none;
    padding: 0;
    width: 100%;
  }
  .pb-col-buttons {
    padding-left: 0;
    width: 100%;
  }
}

/* =========================================
   14c. Image Cards (.image-cards-section)
   ========================================= */
.image-cards-section {
  padding: 80px 0;
  background-color: #fff;
}
.ic-header {
  margin-bottom: 40px;
}
.ic-subtitle {
  font-size: 13px;
  font-weight: 700;
  color: #fc3030;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.ic-line {
  display: inline-block;
  width: 25px;
  height: 2px;
  background-color: #fc3030;
}
.ic-title {
  font-size: 34px;
  font-weight: 800;
  color: #111;
  line-height: 1.2;
  margin-bottom: 20px;
}
.ic-desc {
  font-size: 15px;
  color: #444;
  line-height: 1.6;
  max-width: 900px;
}

.ic-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.ic-card {
  background-color: #fcfbf9;
  border-radius: 12px;
  padding: 20px;
  display: flex;
  flex-direction: column;
}
.ic-card-image-wrapper {
  border-radius: 8px;
  overflow: hidden;
  margin-bottom: 20px;
}
.ic-card-image-wrapper img {
  width: 100%;
  height: auto;
  aspect-ratio: 16/10;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
}
.ic-card-image-wrapper:hover img {
  transform: scale(1.05);
}
.ic-card-title {
  font-size: 16px;
  font-weight: 700;
  color: #111;
  line-height: 1.4;
  margin: 0;
}
.ic-action {
  text-align: center;
  margin-top: 40px;
}
.btn-ic-red {
  display: inline-flex;
  align-items: center;
  background-color: #fc3030;
  color: #fff;
  font-size: 15px;
  font-weight: 600;
  padding: 14px 28px;
  border-radius: 6px;
  text-decoration: none;
  transition: background 0.3s ease;
}
.btn-ic-red:hover {
  background-color: #e02a2a;
  color: #fff;
}

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

@media (max-width: 768px) {
  .image-cards-section {
    padding: 60px 0;
  }
  .ic-title {
    font-size: 28px;
  }
  .ic-grid {
    grid-template-columns: 1fr;
  }
}

/* =========================================
   15. Partners Grid (.partners-grid-section)
   ========================================= */
.partners-grid-section {
  padding: 80px 0;
  background-color: #fcfbf9; /* Light beige matching the image */
}
.pg-header {
  text-align: left;
  margin-bottom: 40px;
}
.pg-subtitle {
  font-size: 13px;
  font-weight: 700;
  color: #fc3030;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.pg-line {
  display: inline-block;
  width: 25px;
  height: 2px;
  background-color: #fc3030;
}
.pg-title {
  font-size: 34px;
  font-weight: 800;
  color: #111;
  line-height: 1.2;
}

.pg-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 15px;
}
.pg-logo-item {
  background-color: #fff;
  border-radius: 6px;
  padding: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 80px; /* Fixed height for uniform boxes */
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.02);
}
.pg-logo-item img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  filter: grayscale(0%); /* Assuming full color logos based on image */
  transition: transform 0.3s;
}
.pg-logo-item:hover img {
  transform: scale(1.05);
}

@media (max-width: 1200px) {
  .pg-grid {
    grid-template-columns: repeat(5, 1fr);
  }
}

@media (max-width: 992px) {
  .pg-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (max-width: 768px) {
  .partners-grid-section {
    padding: 60px 0;
  }
  .pg-title {
    font-size: 28px;
  }
  .pg-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

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

/* Conact Form Css AK*/

.custom-quote-form {
  border-radius: 0;
}

.custom-quote-form label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: #2d2d2d;
  margin-bottom: 8px;
}

.cf7-row {
  display: flex;
  gap: 15px;
  margin-bottom: 15px;
}

.cf7-col {
  width: 50%;
}

.custom-quote-form input,
.custom-quote-form select,
.custom-quote-form textarea {
  width: 100%;
  border: 1px solid #e3e0dd;
  background: #f8f8f8;
  border-radius: 6px;
  padding: 14px 16px;
  font-size: 14px;
  color: #666;
  outline: none;
  box-sizing: border-box;
  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease;
}

.custom-quote-form input:hover,
.custom-quote-form select:hover,
.custom-quote-form textarea:hover {
  border-color: #d3cfca;
}

.custom-quote-form input:focus,
.custom-quote-form select:focus,
.custom-quote-form textarea:focus {
  border-color: #fc3030;
  box-shadow: 0 0 0 3px rgba(252, 48, 48, 0.1);
}

.custom-quote-form select {
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='%23999'%3E%3Cpath d='M2 4l4 4 4-4'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 15px center;
}

.custom-quote-form textarea {
  height: 110px;
  resize: none;
}

.cf7-upload {
  margin-bottom: 15px;
}

.cf7-upload input[type="file"] {
  background: #fff;
  border: 1px dashed #ddd;
  padding: 12px;
}

.cf7-submit input {
  background: #ff3b3b;
  color: #fff;
  border: none;
  width: auto;
  padding: 14px 28px;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
  transition: 0.3s;
}

.cf7-submit input:hover {
  transform: translateY(-2px);
}

@media (max-width: 767px) {
  .cf7-row {
    flex-direction: column;
    gap: 15px;
  }

  .cf7-col {
    width: 100%;
  }
}

/* =========================================
   Logo Slider Section
   ========================================= */
.logo-slider-section {
  background-color: #fbf9f6;
  padding: 80px 15px;
}

.ls-container {
  max-width: 1200px;
  margin: 0 auto;
}

.ls-header {
  margin-bottom: 40px;
}

.ls-subtitle {
  font-size: 13px;
  text-transform: uppercase;
  color: #fc3030;
  font-weight: 700;
  letter-spacing: 1px;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
}

.ls-subtitle .red-line {
  width: 30px;
  height: 2px;
  background-color: #fc3030;
  display: inline-block;
  margin-right: 15px;
}

.ls-title {
  font-size: 32px;
  font-weight: 700;
  color: #1a1a1a;
  margin: 0 0 15px 0;
}

.ls-description {
  font-size: 15px;
  color: #555;
  line-height: 1.6;
  margin: 0;
}

.ls-slider-wrapper {
  overflow: hidden;
  position: relative;
  width: 100%;
  padding: 10px 0;
  margin-bottom: 40px;
}

.ls-slider-track {
  display: flex;
  width: max-content;
  animation: logoScroll 30s linear infinite;
}

.ls-slider-track:hover {
  animation-play-state: paused;
}

.ls-slide {
  width: 200px;
  height: 90px;
  background-color: #fff;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
  display: flex;
  justify-content: center;
  align-items: center;
  margin-right: 20px;
  padding: 15px;
  flex-shrink: 0;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.ls-slide:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
}

.ls-slide img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

@keyframes logoScroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(calc(-50% - 10px));
  }
}

.ls-bottom-box {
  background-color: #fff;
  padding: 25px 30px;
  border-radius: 8px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
  text-align: center;
}

.ls-bottom-box p {
  font-size: 14px;
  font-weight: 600;
  color: #1a1a1a;
  margin: 0;
  line-height: 1.5;
}

@media (max-width: 768px) {
  .ls-title {
    font-size: 26px;
  }
  .ls-slide {
    width: 150px;
    height: 70px;
  }

  .certificates-list {
    gap: 25px !important;
  }
}

/* =========================================
   Certificates Bar Section - Slider Effect
   ========================================= */
.certificates-wrapper {
  overflow: hidden;
  width: 100%;
}

.certificates-wrapper.is-continuous .certificates-list {
  display: flex;
  width: max-content;
  animation: scrollCertificates 25s linear infinite;
}

.certificates-wrapper.is-continuous .certificates-list:hover {
  animation-play-state: paused;
}

.certificates-list {
  display: flex;
  align-items: center;
  gap: 60px;
}

.certificate-item {
  flex-shrink: 0;
}

.certificate-item img {
  max-width: 150px;
  height: auto;
  object-fit: contain;
}

@keyframes scrollCertificates {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* ============================================================
   BLOG — listing + single (added by ETS redesign)
   ============================================================ */
.blog-archive__head {
  background: linear-gradient(180deg, #fff 0%, var(--bg-color) 100%);
  border-bottom: 1px solid var(--border-color);
  padding: 56px 0 44px;
  text-align: center;
  margin-bottom: 48px;
}
.blog-archive__eyebrow {
  display: inline-block;
  color: var(--primary-color);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.blog-archive__title {
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 700;
  line-height: 1.15;
  margin: 0 0 12px;
}
.blog-archive__sub {
  color: #6b6b6b;
  font-size: 17px;
  max-width: 640px;
  margin: 0 auto;
  line-height: 1.6;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-bottom: 56px;
}
@media (max-width: 980px) {
  .blog-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 640px) {
  .blog-grid {
    grid-template-columns: 1fr;
  }
}

.blog-card {
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1px solid var(--border-color);
  border-radius: 16px;
  overflow: hidden;
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;
}
.blog-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.1);
}
.blog-card__media {
  display: block;
  aspect-ratio: 16/10;
  overflow: hidden;
  background: #f1f1f1;
}
.blog-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.blog-card:hover .blog-card__media img {
  transform: scale(1.05);
}
.blog-card__ph {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  color: #c7c7c7;
}
.blog-card__body {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 22px;
}
.blog-card__cat {
  align-self: flex-start;
  background: #ffe9e9;
  color: var(--primary-color);
  font-size: 12px;
  font-weight: 600;
  padding: 5px 12px;
  border-radius: 999px;
  margin-bottom: 12px;
}
.blog-card__title {
  font-size: 19px;
  font-weight: 600;
  line-height: 1.35;
  margin: 0 0 10px;
}
.blog-card__title a {
  color: #1a1a1a;
  text-decoration: none;
}
.blog-card__title a:hover {
  color: var(--primary-color);
}
.blog-card__excerpt {
  color: #6b6b6b;
  font-size: 14.5px;
  line-height: 1.6;
  margin: 0 0 18px;
  flex: 1;
}
.blog-card__foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid var(--border-color);
  padding-top: 14px;
}
.blog-card__date {
  color: #9a9a9a;
  font-size: 13px;
}
.blog-card__more {
  color: var(--primary-color);
  font-weight: 600;
  font-size: 13.5px;
  text-decoration: none;
}
.blog-card__more:hover {
  text-decoration: underline;
}

.blog-pagination {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin: 0 0 64px;
  flex-wrap: wrap;
}
.blog-pagination .page-numbers {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 42px;
  height: 42px;
  padding: 0 12px;
  border: 1px solid var(--border-color);
  border-radius: 10px;
  color: #444;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.2s;
}
.blog-pagination .page-numbers:hover {
  border-color: var(--primary-color);
  color: var(--primary-color);
}
.blog-pagination .page-numbers.current {
  background: var(--primary-color);
  border-color: var(--primary-color);
  color: #fff;
}

/* Single */
.blog-single {
  padding: 36px 0 0;
}
.blog-single__wrap {
  max-width: 820px;
}
.blog-back {
  display: inline-block;
  color: #6b6b6b;
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  margin-bottom: 24px;
}
.blog-back:hover {
  color: var(--primary-color);
}
.blog-article__cats {
  margin-bottom: 14px;
}
.blog-article__cats a {
  display: inline-block;
  background: #ffe9e9;
  color: var(--primary-color);
  font-size: 12px;
  font-weight: 600;
  padding: 5px 12px;
  border-radius: 999px;
  text-decoration: none;
  margin-right: 6px;
}
.blog-article__title {
  font-size: clamp(28px, 4.5vw, 44px);
  font-weight: 700;
  line-height: 1.18;
  margin: 0 0 18px;
}
.blog-article__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  color: #8a8a8a;
  font-size: 14px;
  padding-bottom: 26px;
  border-bottom: 1px solid var(--border-color);
  margin-bottom: 30px;
}
.blog-meta__item {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}
.blog-article__hero {
  margin: 0 0 34px;
}
.blog-article__hero img {
  width: 100%;
  border-radius: 16px;
  display: block;
}

/* Prose typography for imported content */
.blog-prose {
  font-size: 17px;
  line-height: 1.85;
  color: #3a3a3a;
}
.blog-prose > * {
  margin: 0 0 22px;
}
.blog-prose h1,
.blog-prose h2 {
  font-size: 26px;
  font-weight: 700;
  line-height: 1.3;
  margin: 42px 0 16px;
  color: #1a1a1a;
}
.blog-prose h3 {
  font-size: 21px;
  font-weight: 600;
  line-height: 1.35;
  margin: 32px 0 12px;
  color: #1a1a1a;
}
.blog-prose h4 {
  font-size: 18px;
  font-weight: 600;
  margin: 26px 0 10px;
  color: #1a1a1a;
}
.blog-prose p {
  margin: 0 0 22px;
}
.blog-prose a {
  color: var(--primary-color);
  text-decoration: underline;
  text-underline-offset: 2px;
}
.blog-prose ul,
.blog-prose ol {
  padding-left: 24px;
  margin: 0 0 22px;
}
.blog-prose li {
  margin-bottom: 10px;
}
.blog-prose img {
  max-width: 100%;
  height: auto;
  border-radius: 14px;
  margin: 28px 0;
}
.blog-prose blockquote {
  margin: 28px 0;
  padding: 18px 24px;
  background: var(--bg-color);
  border-left: 4px solid var(--primary-color);
  border-radius: 0 12px 12px 0;
  font-style: italic;
  color: #444;
}
.blog-prose strong {
  color: #1a1a1a;
}
.blog-prose table {
  width: 100%;
  border-collapse: collapse;
  margin: 24px 0;
  font-size: 15px;
}
.blog-prose th,
.blog-prose td {
  border: 1px solid var(--border-color);
  padding: 12px 14px;
  text-align: left;
}
.blog-prose th {
  background: var(--bg-color);
  font-weight: 600;
}

.blog-article__tags {
  margin-top: 36px;
  padding-top: 22px;
  border-top: 1px solid var(--border-color);
  font-size: 14px;
  color: #8a8a8a;
}
.blog-article__tags span {
  font-weight: 600;
  margin-right: 6px;
}
.blog-article__tags a {
  display: inline-block;
  color: #555;
  background: var(--bg-color);
  border: 1px solid var(--border-color);
  padding: 4px 11px;
  border-radius: 999px;
  text-decoration: none;
  margin: 0 6px 6px 0;
  font-size: 13px;
}
.blog-article__tags a:hover {
  border-color: var(--primary-color);
  color: var(--primary-color);
}

.blog-cta {
  margin: 56px 0 72px;
  padding: 38px 32px;
  background: #1a1a1a;
  border-radius: 20px;
  text-align: center;
  color: #fff;
}
.blog-cta h3 {
  font-size: 24px;
  font-weight: 700;
  margin: 0 0 8px;
  color: #fff;
}
.blog-cta p {
  color: #c9c9c9;
  margin: 0 0 22px;
  font-size: 15.5px;
}
.blog-cta__btn {
  display: inline-block;
  background: var(--primary-color);
  color: #fff;
  font-weight: 600;
  padding: 15px 30px;
  border-radius: 12px;
  text-decoration: none;
  transition:
    transform 0.2s,
    filter 0.2s;
}
.blog-cta__btn:hover {
  transform: translateY(-2px);
  filter: brightness(1.08);
}
.blog-empty {
  text-align: center;
  color: #888;
  padding: 60px 0 80px;
  font-size: 17px;
}

/* ============================================================
   HEADER NAV — dropdown sub-menus (added by ETS redesign)
   ============================================================ */
.acf-menu-list .menu-item {
  position: relative;
}
.acf-menu-list .menu-item > a {
  display: flex;
  align-items: center;
  gap: 6px;
}
.menu-caret {
  display: inline-flex;
  align-items: center;
  transition: transform 0.25s ease;
  opacity: 0.7;
}
.acf-menu-list .menu-item.has-submenu:hover > a .menu-caret {
  transform: rotate(180deg);
}
.acf-menu-list .submenu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  min-width: 230px;
  background: #fff;
  border: 1px solid var(--border-color);
  border-radius: 14px;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.13);
  padding: 8px;
  list-style: none;
  margin: 0;
  opacity: 0;
  visibility: hidden;
  transition:
    opacity 0.2s ease,
    transform 0.2s ease;
  z-index: 200;
}
.acf-menu-list .submenu::before {
  content: "";
  position: absolute;
  top: -6px;
  left: 0;
  right: 0;
  height: 14px;
}
.acf-menu-list .menu-item.has-submenu:hover > .submenu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(6px);
}
.acf-menu-list .submenu li {
  margin: 0;
}
.acf-menu-list .submenu li a {
  display: block;
  padding: 11px 16px;
  border-radius: 9px;
  color: #333;
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  white-space: nowrap;
  transition:
    background 0.15s,
    color 0.15s;
}
.acf-menu-list .submenu li a:hover {
  background: var(--bg-color);
  color: var(--primary-color);
}

/* Mobile: submenu expands inline inside the drawer */
@media (max-width: 1024px) {
  .acf-menu-list .submenu {
    position: static !important;
    transform: none !important;
    opacity: 1;
    visibility: visible;
    box-shadow: none;
    border: 0;
    border-left: 2px solid var(--border-color);
    border-radius: 0;
    margin: 2px 0 8px 28px;
    padding: 0;
    display: none;
  }

  /* Prevent desktop hover transform from applying on mobile */
  .acf-menu-list .menu-item.has-submenu:hover > .submenu {
    transform: none !important;
  }

  .acf-menu-list .menu-item.has-submenu.is-open > .submenu {
    display: block;
  }
  .acf-menu-list .menu-item.has-submenu > a .menu-caret {
    margin-left: auto;
  }

  /* Prevent long text from causing horizontal scrolling */
  .acf-menu-list .submenu li a {
    white-space: normal;
  }
}

/* ============================================================
   MOBILE HEADER (bigger logo) + STICKY BOTTOM CTA BAR
   ============================================================ */
.mobile-cta-bar {
  display: none;
}

@media (max-width: 992px) {
  .header-inner {
    flex-direction: column;
    align-items: stretch;
    padding: 0 14px;
    position: relative;
  }
  .header-left {
    order: 1;
    border: 0;
    padding: 8px 0;
    flex: 0 0 auto;
    align-self: flex-start;
  }
  .custom-logo {
    max-height: 72px;
    width: auto;
    display: block;
  }
  .mobile-menu-toggle {
    display: block;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 8px;
    z-index: 6;
    padding: 6px;
    margin: 0;
  }
  .mobile-menu-toggle.is-active .icon-open {
    display: none;
  }
  .mobile-menu-toggle.is-active .icon-close {
    display: block !important;
  }
  .header-top-bar {
    padding: 0;
    border: 0;
  }
  /* CTAs moved to the sticky bottom bar */
  .header-contact,
  .header-cta {
    display: none !important;
  }

  /* Sticky bottom conversion bar — all pages, mobile */
  .mobile-cta-bar {
    display: flex;
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 999;
    gap: 10px;
    padding: 9px 12px;
    padding-bottom: calc(9px + env(safe-area-inset-bottom));
    background: #fff;
    border-top: 1px solid var(--border-color);
    box-shadow: 0 -6px 22px rgba(0, 0, 0, 0.12);
  }
  .mcta {
    flex: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 10px;
    border-radius: 12px;
    font-weight: 700;
    font-size: 15.5px;
    line-height: 1;
    text-decoration: none;
    color: #fff;
  }
  .mcta svg {
    flex: 0 0 auto;
  }
  .mcta--call {
    background: #16a34a;
    box-shadow: 0 6px 16px rgba(22, 163, 74, 0.4);
  }
  .mcta--devis {
    background: var(--primary-color);
    box-shadow: 0 6px 16px rgba(255, 59, 59, 0.42);
  }

  body {
    padding-bottom: 74px;
  } /* room so the bar never hides footer content */
}

@media (max-width: 430px) {
  .custom-logo {
    max-height: 62px;
  }
  .mcta {
    font-size: 14px;
    padding: 13px 6px;
    gap: 6px;
  }
}

/* Sticky CTA bar — slide up on scroll + new call label */
@media (max-width: 992px) {
  .mobile-cta-bar {
    transform: translateY(120%);
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  }
  .mobile-cta-bar.is-visible {
    transform: translateY(0);
  }
  .mcta__label {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    line-height: 1.12;
  }
  .mcta__label small {
    font-size: 10px;
    font-weight: 600;
    opacity: 0.92;
    letter-spacing: 0.03em;
    margin-top: 1px;
  }
  .header-bottom-bar {
    padding: 0px;
  }
}

/* =========================================================================
   City pages — rideau-repair "Les Pannes" as alternating image+text rows
   (matches Metal Curtain Repair spec). Scoped via the photo filename so only
   the 7 photo cards are affected; the small-icon "Pourquoi agir vite" grid,
   flat-icon masters, and standalone pages are untouched.
   ========================================================================= */
.ig-grid:has(.ig-card-icon img[src*="/sol-"]) {
  grid-template-columns: 1fr;
  gap: 55px;
}
.ig-grid:has(img[src*="/sol-"]) .ig-intro-box {
  text-align: center;
  max-width: 820px;
  margin: 0 auto 25px;
  padding: 0;
}
.ig-card:has(.ig-card-icon img[src*="/sol-"]) {
  display: grid;
  grid-template-columns: minmax(0, 46%) 1fr;
  column-gap: 45px;
  align-items: center;
  background: transparent;
  padding: 0;
  border-radius: 0;
}
.ig-card:has(img[src*="/sol-"]) .ig-card-icon {
  grid-column: 1;
  grid-row: 1 / span 2;
  margin: 0;
}
.ig-card:has(img[src*="/sol-"]) .ig-card-icon img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  border-radius: 12px;
  display: block;
}
.ig-card:has(img[src*="/sol-"]) .ig-card-title {
  grid-column: 2;
  grid-row: 1;
  align-self: end;
  margin-bottom: 10px;
}
.ig-card:has(img[src*="/sol-"]) .ig-card-desc {
  grid-column: 2;
  grid-row: 2;
  align-self: start;
}
/* match PDF text sizing for all "Les Pannes" rows */
.ig-card:has(img[src*="/sol-"]) .ig-card-title {
  font-size: 26px;
  line-height: 1.25;
  margin-bottom: 14px;
}
.ig-card:has(img[src*="/sol-"]) .ig-card-desc div,
.ig-card:has(img[src*="/sol-"]) .ig-card-desc {
  font-size: 16px;
  line-height: 1.7;
  color: #555;
}
/* zigzag: odd photo cards (2nd, 4th, 6th) flip image to the right */
.ig-card:has(img[src*="/sol-"]):nth-child(odd) .ig-card-icon {
  grid-column: 2;
}
.ig-card:has(img[src*="/sol-"]):nth-child(odd) .ig-card-title,
.ig-card:has(img[src*="/sol-"]):nth-child(odd) .ig-card-desc {
  grid-column: 1;
}
@media (max-width: 768px) {
  .ig-card:has(img[src*="/sol-"]) {
    grid-template-columns: 1fr;
  }
  .ig-card:has(img[src*="/sol-"]) .ig-card-icon,
  .ig-card:has(img[src*="/sol-"]) .ig-card-icon img,
  .ig-card:has(img[src*="/sol-"]) .ig-card-title,
  .ig-card:has(img[src*="/sol-"]) .ig-card-desc {
    grid-column: 1 !important;
    grid-row: auto !important;
  }
  .ig-card:has(img[src*="/sol-"]) .ig-card-icon img {
    height: 220px;
  }
}

/* =========================================================================
   "Chaque Minute Compte" urgency section (interventions_grid w/ urg- icons):
   title + intro full-width on top, 4 cards in one row, paragraph + highlight
   box below. Scoped by the urg- icon filename so the "Les Pannes" grid is
   unaffected.
   ========================================================================= */
.ig-grid:has(.ig-card-icon img[src*="/urg-"]) {
  grid-template-columns: repeat(4, 1fr);
}
.ig-grid:has(.ig-card-icon img[src*="/urg-"]) .ig-intro-box {
  grid-column: 1 / -1;
  padding: 0 0 10px 0;
}
.ig-footer-text {
  margin-top: 34px;
  color: #555;
  font-size: 16px;
  line-height: 1.7;
}
.ig-highlight-box {
  margin-top: 22px;
  background: #ffffff;
  border-radius: 12px;
  padding: 26px 32px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}
.ig-highlight-box p {
  margin: 0 0 8px;
  color: #111;
  font-weight: 700;
  line-height: 1.6;
}
.ig-highlight-box p:last-child {
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .ig-grid:has(.ig-card-icon img[src*="/urg-"]) {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 576px) {
  .ig-grid:has(.ig-card-icon img[src*="/urg-"]) {
    grid-template-columns: 1fr;
  }
}

/* =========================================================================
   Photo-style intervention cards (e.g. roller-shutter install types, rsi-svc-*):
   real production photos used as full-width banners, not tiny icons.
   ========================================================================= */
.ig-card:has(.ig-card-icon img[src*="/rsi-svc-"]) {
  padding: 0;
  overflow: hidden;
}
.ig-card:has(img[src*="/rsi-svc-"]) .ig-card-icon {
  margin: 0;
}
.ig-card:has(img[src*="/rsi-svc-"]) .ig-card-icon img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  display: block;
}
.ig-card:has(img[src*="/rsi-svc-"]) .ig-card-title {
  margin: 20px 24px 12px;
}
.ig-card:has(img[src*="/rsi-svc-"]) .ig-card-desc {
  margin: 0 24px 24px;
}

/* =========================================================================
   "Options de vitrage" (expertise_grid w/ swi-glass- icons): PDF shows this
   as a dark full-bleed section with icon-left cards in a clean even grid,
   not the default light cream / icon-on-top / staggered layout.
   ========================================================================= */
.expertise-grid-section:has(img[src*="/swi-glass-"]),
.expertise-grid-section:has(img[src*="/swr-opt-"]),
.expertise-grid-section:has(img[src*="/vt-3d-"]) {
  background-color: #14171c;
}
.expertise-grid-section:has(img[src*="/swi-glass-"]) .section-title,
.expertise-grid-section:has(img[src*="/swr-opt-"]) .section-title,
.expertise-grid-section:has(img[src*="/vt-3d-"]) .section-title {
  color: #fff;
}
.expertise-grid-section:has(img[src*="/swi-glass-"]) .ex-description,
.expertise-grid-section:has(img[src*="/swr-opt-"]) .ex-description,
.expertise-grid-section:has(img[src*="/vt-3d-"]) .ex-description {
  color: #b8bcc4;
}
.ex-feature-card:has(img[src*="/swi-glass-"]),
.ex-feature-card:has(img[src*="/swr-opt-"]),
.ex-feature-card:has(img[src*="/vt-3d-"]) {
  background-color: #1f242c;
  display: flex;
  align-items: flex-start;
  gap: 18px;
  padding: 28px;
  margin-top: 0 !important;
}
.ex-feature-card:has(img[src*="/swi-glass-"]) .ex-feature-icon,
.ex-feature-card:has(img[src*="/swr-opt-"]) .ex-feature-icon,
.ex-feature-card:has(img[src*="/vt-3d-"]) .ex-feature-icon {
  background-color: #2a3038;
  flex-shrink: 0;
  margin-bottom: 0;
}
.ex-feature-card:has(img[src*="/swi-glass-"]) .ex-feature-title,
.ex-feature-card:has(img[src*="/swr-opt-"]) .ex-feature-title,
.ex-feature-card:has(img[src*="/vt-3d-"]) .ex-feature-title {
  color: #fff;
  margin-bottom: 8px;
}
.ex-feature-card:has(img[src*="/swi-glass-"]) .ex-feature-desc,
.ex-feature-card:has(img[src*="/swr-opt-"]) .ex-feature-desc,
.ex-feature-card:has(img[src*="/vt-3d-"]) .ex-feature-desc {
  color: #9ba0aa;
}

/* =========================================================================
   "Quel vitrage choisir" (interventions_grid w/ gvf- photos): PDF shows
   this as alternating big-photo rows with checkmark bullets, not small icon
   cards. Reuses the same alternating-row treatment as the /sol- rows.
   ========================================================================= */
.ig-grid:has(.ig-card-icon img[src*="/gvf-"]) {
  grid-template-columns: 1fr;
  gap: 55px;
}
.ig-grid:has(img[src*="/gvf-"]) .ig-intro-box {
  text-align: center;
  max-width: 820px;
  margin: 0 auto 25px;
  padding: 0;
}
.ig-card:has(.ig-card-icon img[src*="/gvf-"]) {
  display: grid;
  grid-template-columns: minmax(0, 46%) 1fr;
  column-gap: 45px;
  align-items: center;
  background: transparent;
  padding: 0;
  border-radius: 0;
}
.ig-card:has(img[src*="/gvf-"]) .ig-card-icon {
  grid-column: 1;
  grid-row: 1 / span 2;
  margin: 0;
}
.ig-card:has(img[src*="/gvf-"]) .ig-card-icon img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  border-radius: 12px;
  display: block;
}
.ig-card:has(img[src*="/gvf-"]) .ig-card-title {
  grid-column: 2;
  grid-row: 1;
  align-self: end;
  margin-bottom: 10px;
  font-size: 26px;
  line-height: 1.25;
}
.ig-card:has(img[src*="/gvf-"]) .ig-card-desc {
  grid-column: 2;
  grid-row: 2;
  align-self: start;
  font-size: 16px;
  line-height: 1.7;
  color: #555;
}
.ig-card:has(img[src*="/gvf-"]):nth-child(odd) .ig-card-icon {
  grid-column: 2;
}
.ig-card:has(img[src*="/gvf-"]):nth-child(odd) .ig-card-title,
.ig-card:has(img[src*="/gvf-"]):nth-child(odd) .ig-card-desc {
  grid-column: 1;
}
@media (max-width: 768px) {
  .ig-card:has(img[src*="/gvf-"]) {
    grid-template-columns: 1fr;
  }
  .ig-card:has(img[src*="/gvf-"]) .ig-card-icon,
  .ig-card:has(img[src*="/gvf-"]) .ig-card-title,
  .ig-card:has(img[src*="/gvf-"]) .ig-card-desc {
    grid-column: 1 !important;
    grid-row: auto !important;
  }
  .ig-card:has(img[src*="/gvf-"]) .ig-card-icon img {
    height: 220px;
  }
}

/* =========================================================================
   "Options de vitrage" dark sections (cont'd): PDF shows the title full-width
   on top and the cards grid full-width below it, not a 40/60 side-by-side
   split. Override the ex-row split to stack vertically for these sections.
   ========================================================================= */
.ex-row:has(img[src*="/swi-glass-"]),
.ex-row:has(img[src*="/swr-opt-"]),
.ex-row:has(img[src*="/vt-3d-"]) {
  flex-direction: column;
  align-items: stretch;
  gap: 30px;
}
.ex-row:has(img[src*="/swi-glass-"]) .ex-left-col,
.ex-row:has(img[src*="/swr-opt-"]) .ex-left-col,
.ex-row:has(img[src*="/vt-3d-"]) .ex-left-col,
.ex-row:has(img[src*="/swi-glass-"]) .ex-right-col,
.ex-row:has(img[src*="/swr-opt-"]) .ex-right-col,
.ex-row:has(img[src*="/vt-3d-"]) .ex-right-col {
  flex: 0 0 100%;
  max-width: 100%;
}
.ex-row:has(img[src*="/swi-glass-"]) .ex-features-grid,
.ex-row:has(img[src*="/swr-opt-"]) .ex-features-grid,
.ex-row:has(img[src*="/vt-3d-"]) .ex-features-grid {
  grid-template-columns: repeat(2, 1fr);
}

/* =========================================================================
   Generic fix: any plain interventions_grid with exactly 4 cards in the
   default fixed 3-column grid leaves a lone 4th card on its own row with a
   large empty gap. Switch those to a clean 2x2 grid. Excludes the urgency
   (/urg-) and vitrage-photo-row (/gvf-) sections, which already have their
   own dedicated, intentional layouts.
   ========================================================================= */
.ig-grid:not(.ig-cols-4):not(.ig-cols-5):has(
    .ig-card:nth-child(4):last-child
  ):not(:has(img[src*="/urg-"])):not(:has(img[src*="/gvf-"])):not(
    :has(img[src*="lk-sol-"])
  ) {
  grid-template-columns: repeat(2, 1fr);
}

/* Same problem, 5-card variant: 3+2 leaves one empty cell in row 2.
   Switch to a centered flex-wrap so the trailing 2 cards sit centered. */
.ig-grid:not(.ig-cols-4):not(.ig-cols-5):has(
    .ig-card:nth-child(5):last-child
  ):not(:has(img[src*="/urg-"])):not(:has(img[src*="/gvf-"])):not(
    :has(img[src*="lk-sol-"])
  ) {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.ig-grid:not(.ig-cols-4):not(.ig-cols-5):has(
    .ig-card:nth-child(5):last-child
  ):not(:has(img[src*="/urg-"])):not(:has(img[src*="/gvf-"])):not(
    :has(img[src*="lk-sol-"])
  )
  .ig-card {
  flex: 0 0 calc(33.333% - 14px);
}
@media (max-width: 992px) {
  .ig-grid:not(.ig-cols-4):not(.ig-cols-5):has(
      .ig-card:nth-child(5):last-child
    ):not(:has(img[src*="/urg-"])):not(:has(img[src*="/gvf-"])):not(
      :has(img[src*="lk-sol-"])
    )
    .ig-card {
    flex: 0 0 calc(50% - 10px);
  }
}
@media (max-width: 576px) {
  .ig-grid:has(.ig-card:nth-child(5):last-child):not(
      :has(img[src*="/urg-"])
    ):not(:has(img[src*="/gvf-"])):not(:has(img[src*="lk-sol-"]))
    .ig-card {
    flex: 0 0 100%;
  }
}

/* =========================================================================
   Serrurerie "Nos interventions" alternating photo rows (lk-sol-* photos).
   Same zigzag treatment as the /sol- rows, matching Locksmith Service.pdf:
   big photo left / text right, alternating. Scoped by the lk-sol- filename.
   ========================================================================= */
.ig-grid:has(.ig-card-icon img[src*="lk-sol-"]) {
  grid-template-columns: 1fr;
  gap: 55px;
}
.ig-grid:has(img[src*="lk-sol-"]) .ig-intro-box {
  text-align: center;
  max-width: 820px;
  margin: 0 auto 25px;
  padding: 0;
}
.ig-card:has(.ig-card-icon img[src*="lk-sol-"]) {
  display: grid;
  grid-template-columns: minmax(0, 46%) 1fr;
  column-gap: 45px;
  align-items: center;
  background: transparent;
  padding: 0;
  border-radius: 0;
}
.ig-card:has(img[src*="lk-sol-"]) .ig-card-icon {
  grid-column: 1;
  grid-row: 1 / span 2;
  margin: 0;
}
.ig-card:has(img[src*="lk-sol-"]) .ig-card-icon img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  border-radius: 12px;
  display: block;
}
.ig-card:has(img[src*="lk-sol-"]) .ig-card-title {
  grid-column: 2;
  grid-row: 1;
  align-self: end;
  margin-bottom: 10px;
}
.ig-card:has(img[src*="lk-sol-"]) .ig-card-desc {
  grid-column: 2;
  grid-row: 2;
  align-self: start;
}
/* match PDF text sizing for all "Les Pannes" rows */
.ig-card:has(img[src*="lk-sol-"]) .ig-card-title {
  font-size: 26px;
  line-height: 1.25;
  margin-bottom: 14px;
}
.ig-card:has(img[src*="lk-sol-"]) .ig-card-desc div,
.ig-card:has(img[src*="lk-sol-"]) .ig-card-desc {
  font-size: 16px;
  line-height: 1.7;
  color: #555;
}
/* zigzag: odd photo cards (2nd, 4th, 6th) flip image to the right */
.ig-card:has(img[src*="lk-sol-"]):nth-child(odd) .ig-card-icon {
  grid-column: 2;
}
.ig-card:has(img[src*="lk-sol-"]):nth-child(odd) .ig-card-title,
.ig-card:has(img[src*="lk-sol-"]):nth-child(odd) .ig-card-desc {
  grid-column: 1;
}
@media (max-width: 768px) {
  .ig-card:has(img[src*="lk-sol-"]) {
    grid-template-columns: 1fr;
  }
  .ig-card:has(img[src*="lk-sol-"]) .ig-card-icon,
  .ig-card:has(img[src*="lk-sol-"]) .ig-card-icon img,
  .ig-card:has(img[src*="lk-sol-"]) .ig-card-title,
  .ig-card:has(img[src*="lk-sol-"]) .ig-card-desc {
    grid-column: 1 !important;
    grid-row: auto !important;
  }
  .ig-card:has(img[src*="lk-sol-"]) .ig-card-icon img {
    height: 220px;
  }
}

/* =========================================================================
   Serrurerie "Bloqué dehors / intervention d'urgence" section
   (features_cards_cta layout). Dark theme, 2-col checklist box, red CTA,
   matching Locksmith Service.pdf. Scoped to .fcc-section — currently only
   the serrurerie master (+ its location pages) uses this layout.
   ========================================================================= */
.fcc-section {
  background: #101216;
  padding: 95px 0;
  color: #fff;
}
.fcc-section .fcc-header {
  max-width: 1040px;
}
.fcc-section .section-subtitle {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 18px;
}
.fcc-section .section-subtitle .line {
  width: 36px;
  height: 2px;
  background: #f0353c;
  display: inline-block;
}
.fcc-section .fcc-title {
  color: #fff;
  font-size: 42px;
  line-height: 1.15;
  font-weight: 800;
  max-width: 900px;
  margin: 0 0 22px;
}
.fcc-section .fcc-desc p {
  color: #b9bdc6;
  font-size: 16px;
  line-height: 1.7;
  margin: 0 0 14px;
  max-width: 1000px;
}
.fcc-section .fcc-desc p:last-child {
  color: #fff;
  font-weight: 700;
  font-size: 18px;
  margin: 26px 0 0;
}
/* checklist box */
.fcc-section .fcc-grid {
  background: #1a1d23;
  border: 1px solid #2c2f37;
  border-radius: 16px;
  padding: 34px 42px;
  margin-top: 20px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: repeat(3, auto);
  grid-auto-flow: column;
  column-gap: 55px;
  row-gap: 24px;
}
.fcc-section .fcc-card {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  background: transparent;
  padding: 0;
  border: 0;
  box-shadow: none;
}
.fcc-section .fcc-card::before {
  content: "\2713";
  flex: 0 0 24px;
  width: 24px;
  height: 24px;
  border-radius: 6px;
  background: #f0353c;
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 1px;
}
.fcc-section .fcc-icon {
  display: none;
}
.fcc-section .fcc-card-title {
  color: #e7e9ee;
  font-size: 15.5px;
  line-height: 1.5;
  font-weight: 500;
  margin: 0;
}
/* CTA */
.fcc-section .fcc-cta-box {
  text-align: center;
  margin-top: 40px;
}
.fcc-section .fcc-cta-box p {
  margin: 0;
}
.fcc-section .fcc-cta-btn {
  display: inline-block;
  background: #f0353c;
  color: #fff;
  font-weight: 700;
  font-size: 16px;
  padding: 16px 36px;
  border-radius: 10px;
  text-decoration: none;
  transition: background 0.2s;
}
.fcc-section .fcc-cta-btn:hover {
  background: #d11f29;
}
@media (max-width: 768px) {
  .fcc-section {
    padding: 60px 0;
  }
  .fcc-section .fcc-title {
    font-size: 30px;
  }
  .fcc-section .fcc-grid {
    grid-template-columns: 1fr;
    grid-auto-flow: row;
    grid-template-rows: none;
    padding: 26px;
  }
}

/* =========================================
   Logo Grid Section
   ========================================= */
.logo-grid-section {
  padding: 80px 0;
}

.logo-grid-header {
  text-align: left;
  margin-bottom: 45px;
}

.logo-grid-header .section-subtitle {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #fc3030;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 15px;
}

.logo-grid-header .section-subtitle .line {
  display: inline-block;
  width: 25px;
  height: 2px;
  background-color: #fc3030;
}

.logo-grid-title {
  font-size: 38px;
  font-weight: 800;
  color: #111;
  margin: 0;
  line-height: 1.2;
}

.logo-grid-container {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 15px;
}

.logo-grid-item {
  background: #fff;
  border-radius: 8px;
  padding: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  aspect-ratio: 16/9;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;
}

.logo-grid-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

.logo-grid-item a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}

.logo-grid-item img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

/* Responsive adjustments */
@media (max-width: 1200px) {
  .logo-grid-container {
    grid-template-columns: repeat(5, 1fr);
    gap: 15px;
  }
}

@media (max-width: 992px) {
  .logo-grid-container {
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
  }
  .logo-grid-title {
    font-size: 32px;
  }
}

@media (max-width: 768px) {
  .logo-grid-container {
    grid-template-columns: repeat(3, 1fr);
  }
  .logo-grid-section {
    padding: 60px 0;
  }
  .logo-grid-title {
    font-size: 28px;
  }
}

@media (max-width: 480px) {
  .logo-grid-container {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }
  .logo-grid-item {
    padding: 12px;
  }
}

/* =========================================
   Service Cards Grid Section
   ========================================= */
.service-cards-section {
  padding: 80px 0;
  background-color: #ffffff;
}

.service-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.sc-intro-box {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  padding-right: 20px;
  padding-top: 20px;
}

.sc-intro-box .section-subtitle {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #fc3030;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 15px;
}

.sc-intro-box .section-subtitle .line {
  display: inline-block;
  width: 25px;
  height: 2px;
  background-color: #fc3030;
}

.sc-title {
  font-size: 38px;
  font-weight: 800;
  color: #111;
  margin: 0 0 20px 0;
  line-height: 1.2;
}

.sc-card {
  background: #f8f6f5;
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;
  overflow: hidden;
}

a.sc-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.06);
}

.sc-card-img-wrap {
  width: 100%;
  padding: 15px 15px 0 15px;
}

.sc-card-img-wrap img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 8px;
  display: block;
}

.sc-card-content {
  padding: 25px 20px;
  flex-grow: 1;
}

.sc-card-title {
  font-size: 20px;
  font-weight: 800;
  color: #111;
  margin: 0 0 12px 0;
  line-height: 1.3;
  transition: color 0.2s ease;
}

a.sc-card:hover .sc-card-title {
  color: #fc3030;
}

.sc-card-desc {
  font-size: 14.5px;
  color: #444;
  line-height: 1.6;
}

.sc-card-desc p {
  margin-bottom: 0;
}

/* Responsive adjustments */
@media (max-width: 992px) {
  .service-cards-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
  .sc-intro-box {
    grid-column: 1 / -1;
    padding-right: 0;
    margin-bottom: 20px;
  }
  .sc-title {
    font-size: 32px;
  }
}

@media (max-width: 768px) {
  .service-cards-section {
    padding: 60px 0;
  }
  .service-cards-grid {
    grid-template-columns: 1fr;
  }
}

.sc-intro-box.top-header-mode {
  text-align: left;
  align-items: flex-start;
  max-width: 100%;
  margin: 0 0 40px 0;
  padding: 0;
}

.sc-intro-box.top-header-mode .section-subtitle {
  justify-content: flex-start;
}

/* =========================================
   Checklist Cards Grid Section
   ========================================= */
.checklist-cards-section {
  padding: 80px 0;
  background-color: #f8f6f5; /* Fallback */
}

.cc-intro-box {
  margin-bottom: 50px;
}

.cc-intro-box .section-subtitle {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #fc3030;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 15px;
}

.cc-intro-box .section-subtitle .line {
  display: inline-block;
  width: 25px;
  height: 2px;
  background-color: #fc3030;
}

.cc-title {
  font-size: 38px;
  font-weight: 800;
  color: #111;
  margin: 0;
  line-height: 1.2;
}

.checklist-cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 30px;
}

.cc-card {
  background: #ffffff;
  border-radius: 12px;
  padding: 40px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02);
}

.cc-card-icon {
  margin-bottom: 25px;
}

.cc-card-icon img {
  height: 45px;
  width: auto;
  display: block;
}

.cc-card-title {
  font-size: 22px;
  font-weight: 800;
  color: #111;
  margin: 0 0 25px 0;
  line-height: 1.3;
}

.cc-card-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.cc-card-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 15px;
}

.cc-card-list li:last-child {
  margin-bottom: 0;
}

.cc-card-list li svg {
  flex-shrink: 0;
  margin-top: 3px;
}

.cc-card-list li span {
  font-size: 15px;
  color: #555;
  line-height: 1.5;
}

/* Responsive adjustments */
@media (max-width: 992px) {
  .checklist-cards-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .checklist-cards-section {
    padding: 60px 0;
  }
  .cc-title {
    font-size: 32px;
  }
  .cc-card {
    padding: 30px 25px;
  }
}

.dc-list-icon {
  flex-shrink: 0;
  margin-top: 3px;
}

/* =========================================
   Split Text Section
   ========================================= */
.split-text-section {
  padding: 80px 0;
  background-color: #f8f6f5; /* Fallback */
}

.split-text-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.split-text-left {
  flex: 0 0 45%;
}

.split-text-left .section-subtitle {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #fc3030;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 15px;
}

.split-text-left .section-subtitle .line {
  display: inline-block;
  width: 25px;
  height: 2px;
  background-color: #fc3030;
}

.st-title {
  font-size: 38px;
  font-weight: 800;
  color: #111;
  margin: 0;
  line-height: 1.2;
}

.split-text-divider {
  width: 2px;
  height: 120px;
  background-color: #d8d8d8; /* Light grey divider */
  flex-shrink: 0;
}

.split-text-right {
  flex: 1;
}

.st-desc {
  font-size: 16px;
  color: #444;
  line-height: 1.6;
}

.st-desc p {
  margin-bottom: 0;
}

/* Responsive adjustments */
@media (max-width: 992px) {
  .split-text-wrap {
    flex-direction: column;
    align-items: flex-start;
    gap: 30px;
  }
  .split-text-left {
    flex: 1 1 auto;
    width: 100%;
  }
  .split-text-divider {
    width: 80px;
    height: 2px;
    margin-left: 0;
  }
  .split-text-right {
    flex: 1 1 auto;
    width: 100%;
  }
}

@media (max-width: 768px) {
  .split-text-section {
    padding: 60px 0;
  }
  .st-title {
    font-size: 32px;
  }
}

/* =========================================
   Custom Cards Section (.custom-cards-section)
   ========================================= */
.custom-cards-section {
  padding: 80px 0;
}
.ccds-header {
  margin-bottom: 40px;
}
.ccds-subtitle {
  font-size: 13px;
  font-weight: 700;
  color: #fc3030;
  text-transform: uppercase;
  letter-spacing: 1px;
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 15px;
}
.ccds-line {
  display: inline-block;
  width: 25px;
  height: 2px;
  background-color: #fc3030;
}
.ccds-title {
  font-size: 34px;
  font-weight: 800;
  color: #111;
  line-height: 1.2;
  margin-bottom: 15px;
}
.ccds-desc {
  font-size: 16px;
  color: #555;
  line-height: 1.6;
}
.ccds-container-full {
  max-width: 100%;
  padding: 0 40px;
}
@media (max-width: 768px) {
  .ccds-container-full {
    padding: 0 20px;
  }
  .ccds-header {
    margin-bottom: 0px;
  }
}
.ccds-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-bottom: 40px;
}
.ccds-grid.ccds-cols-3 {
  grid-template-columns: repeat(3, 1fr);
}
.ccds-grid.ccds-cols-4 {
  grid-template-columns: repeat(4, 1fr);
}
.ccds-grid.ccds-cols-5 {
  grid-template-columns: repeat(5, 1fr);
}
.ccds-grid-heading {
  display: flex;
  align-items: center;
  padding-right: 20px;
}
.ccds-gh-title {
  font-size: clamp(32px, 4vw, 42px);
  font-weight: 800;
  color: #111;
  line-height: 1.2;
  margin: 0;
}
@media (min-width: 993px) {
  .ccds-grid.ccds-cols-3 .ccds-grid-heading {
    grid-column: span 1;
  }
  .ccds-grid.ccds-cols-4 .ccds-grid-heading {
    grid-column: span 2;
  }
  .ccds-grid.ccds-cols-5 .ccds-grid-heading {
    grid-column: span 2;
  }
}
.ccds-card {
  display: flex;
  flex-direction: column;
  border-radius: 12px;
  overflow: hidden;
  text-decoration: none;
  padding: 12px;
  border: 1px solid #ededed;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}
a.ccds-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}
.ccds-card-img img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
}
.ccds-card-content {
  padding: 20px 0px;
}
.ccds-card-title {
  font-size: 20px;
  font-weight: 700;
  margin: 0px;
  color: inherit;
  text-align: center;
  line-height: 1.3;
}
.ccds-card-text {
  font-size: 15px;
  line-height: 1.5;
  color: inherit;
  opacity: 0.9;
}
.ccds-card-text p {
  margin-bottom: 0;
}
.ccds-bottom-bar {
  background-color: #f6f3ef;
  padding: 20px;
  text-align: center;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 600;
  color: #222;
}

@media (max-width: 992px) {
  .ccds-grid,
  .ccds-grid.ccds-cols-3,
  .ccds-grid.ccds-cols-4,
  .ccds-grid.ccds-cols-5 {
    grid-template-columns: repeat(2, 1fr);
  }
  .ccds-grid-heading {
    grid-column: span 2;
    padding-bottom: 15px;
  }
}

@media (max-width: 768px) {
  .custom-cards-section {
    padding: 60px 0;
  }
  .ccds-title {
    font-size: 28px;
  }
  .ccds-grid,
  .ccds-grid.ccds-cols-3,
  .ccds-grid.ccds-cols-4,
  .ccds-grid.ccds-cols-5 {
    grid-template-columns: 1fr;
  }
  .ccds-grid-heading {
    grid-column: span 1;
  }
}

/* =========================================
   Split Checklist Section (.split-checklist-section)
   ========================================= */
.split-checklist-section {
  padding: 80px 0;
}
.sc-wrap {
  display: flex;
  align-items: center;
  gap: 60px;
}
.sc-left {
  flex: 1;
}
.sc-right {
  flex: 1;
}
.sc-subtitle {
  font-size: 13px;
  font-weight: 700;
  color: #fc3030;
  text-transform: uppercase;
  letter-spacing: 1px;
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 15px;
}
.sc-line {
  display: inline-block;
  width: 25px;
  height: 2px;
  background-color: #fc3030;
}
.sc-title {
  font-size: 34px;
  font-weight: 800;
  color: #111;
  line-height: 1.2;
  margin-bottom: 20px;
}
.sc-desc {
  font-size: 15px;
  font-weight: 600;
  color: #555;
  line-height: 1.6;
}
.sc-desc p {
  margin-bottom: 0;
}
.sc-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.sc-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 15px;
  font-weight: 500;
  color: #222;
  line-height: 1.5;
}
.sc-check-icon {
  flex-shrink: 0;
  margin-top: 2px;
  display: flex;
}

@media (max-width: 992px) {
  .sc-wrap {
    flex-direction: column;
    align-items: flex-start;
    gap: 40px;
  }
  .sc-left,
  .sc-right {
    width: 100%;
  }
}
@media (max-width: 768px) {
  .split-checklist-section {
    padding: 60px 0;
  }
  .sc-title {
    font-size: 28px;
  }
}

/* Pricing List Section */
.pricing-list-section {
  padding: 80px 0;
}
.pl-header {
  margin-bottom: 40px;
}
.pl-line {
  display: inline-block;
  width: 25px;
  height: 2px;
  background-color: #fc3030;
  margin-right: 10px;
  vertical-align: middle;
}
.pl-title {
  font-size: 32px;
  font-weight: 800;
  color: #111;
  margin-bottom: 15px;
  line-height: 1.2;
}
.pl-description {
  font-size: 15px;
  color: #444;
  line-height: 1.6;
}
.pl-table-wrapper {
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
  overflow: hidden;
  border: 1px solid #f0f0f0;
}
.pl-row {
  display: flex;
  align-items: center;
  padding: 25px 30px;
  border-bottom: 1px solid #f0f0f0;
}
.pl-row:last-child {
  border-bottom: none;
}
.pl-col-name {
  flex: 0 0 35%;
  font-size: 15px;
  font-weight: 700;
  color: #1a1a1a;
}
.pl-col-price {
  flex: 0 0 35%;
  font-size: 14px;
  font-weight: 600;
  color: #1a1a1a;
}
.pl-col-actions {
  flex: 1;
  display: flex;
  gap: 10px;
  justify-content: flex-end;
}
.pl-btn {
  display: inline-block;
  padding: 10px 16px;
  background-color: #ff3333;
  color: #fff !important;
  font-size: 13px;
  font-weight: 600;
  border-radius: 4px;
  text-decoration: none;
  transition: all 0.3s ease;
  white-space: nowrap;
}
.pl-btn:hover {
  background-color: #e62020;
}

@media (max-width: 992px) {
  .pl-col-name,
  .pl-col-price {
    flex: 0 0 30%;
  }
}

@media (max-width: 768px) {
  .pricing-list-section {
    padding: 60px 0;
  }
  .pl-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    padding: 20px;
  }
  .pl-col-name,
  .pl-col-price,
  .pl-col-actions {
    flex: 1 1 100%;
    width: 100%;
  }
  .pl-col-actions {
    justify-content: flex-start;
    flex-wrap: wrap;
  }
}

/* =========================================
   Global Mobile Adjustments
   ========================================= */
@media (max-width: 768px) {
  /* Prevent Horizontal Overflow */
  body,
  html {
    overflow-x: hidden;
  }

  /* Global Section Padding */
  section,
  .hero-section,
  .hero-overlay-section,
  .contact-section,
  .about-section,
  .process-section,
  .services-section,
  .testimonial-section,
  .pricing-list-section {
    padding: 40px 20px !important;
    overflow: hidden;
  }

  /* Reset container left/right padding since section handles it now */
  .container,
  .hero-container,
  .features-container,
  .process-container,
  .services-container,
  .testimonial-container,
  .contact-container,
  .about-container {
    padding-left: 0 !important;
    padding-right: 0 !important;
  }

  /* Global Typography for Readability */
  h1,
  .hero-title,
  .ho-title {
    font-size: 32px !important;
    line-height: 1.3 !important;
  }

  h2,
  .section-title {
    font-size: 25px !important;
    line-height: 1.3 !important;
  }

  h3,
  .hero-subtitle,
  .section-subtitle,
  .ps-subtitle {
    font-size: 20px !important;
  }

  p,
  .hero-description,
  .ho-description,
  .about-description,
  .section-description {
    font-size: 16px !important;
    line-height: 1.6 !important;
  }

  /* Button Readability */
  .btn,
  .btn-primary,
  .btn-outline,
  .btn-red-box,
  .btn-white-box {
    font-size: 15px !important;
    padding: 12px 24px !important;
  }
}
