/*
Theme Name: Value Industrie Theme Final
Author: Value Industrie
Description: Thème WordPress moderne, responsive et élégant
Version: 2.0
*/

/* === STYLES GLOBAUX === */
body {
  margin: 0;
  padding: 0;
  font-family: 'Roboto', sans-serif;
  background-color: #ffffff;
  color: #111111;
}

main {
  padding: 2rem 1rem;
}

h1, h2, h3 {
  color: #FFA500;
}

a {
  text-decoration: none;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

/* === HEADER === */

.site-header {
  background-color: #111111;
  color: white;
  padding: 1rem 0;
  position: relative;
  z-index: 999;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: nowrap;
  gap: 1rem;
}

/* Logo image */
.logo {
  flex: 0 0 auto;
}
.logo img {
  height: 70px;
  width: auto;
  max-width: 100%;
  display: block;
  transition: transform 0.3s ease;
}

.logo img:hover {
  transform: scale(1.05);
}

/* Navigation principale */
.main-nav {
  flex: 1 1 auto;
  display: flex;
  justify-content: center;
}

.main-nav ul {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
  margin: 0;
  padding: 0;
}

.main-nav ul li a {
  color: white;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1rem;
  transition: color 0.3s;
}

.main-nav ul li a:hover {
  color: #f9c600;
}

/* Bouton "Demandez un devis" */
.header-cta {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.cta-btn {
  background-color: #f9c600;
  color: #111111;
  padding: 0.5rem 1.2rem;
  border-radius: 4px;
  font-weight: bold;
  transition: background 0.3s;
  display: inline-block;
}

.cta-btn:hover {
  background-color: #f9c600;
  color: #ffffff;
}

/* === BURGER MENU === */
.burger {
  display: none;
  flex-direction: column;
  width: 25px;
  height: 20px;
  justify-content: space-between;
  cursor: pointer;
  background: none;
  border: none;
}

.burger span {
  background: white;
  height: 3px;
  border-radius: 2px;
  width: 100%;
  transition: all 0.3s ease-in-out;
}

.burger.open span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.burger.open span:nth-child(2) {
  opacity: 0;
}

.burger.open span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* === RESPONSIVE HEADER === */
@media screen and (max-width: 768px) {
  .header-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .burger {
    display: flex;
    position: absolute;
    right: 1rem;
    top: 1.2rem;
  }

  .main-nav {
    display: none;
    width: 100%;
    margin-top: 1rem;
  }

  .main-nav.active {
    display: block;
  }

  .main-nav ul {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.75rem;
    padding-left: 0;
  }

  .header-cta {
    width: 100%;
    margin-top: 1rem;
    justify-content: flex-start;
  }

  .header-cta .cta-btn {
    display: inline-block;
    width: auto;
  }
}

/* === FOOTER === */
.site-footer {
  background-color: #111111;
  color: white;
  padding: 3rem 1rem 2rem;
  font-size: 0.95rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}

.site-footer h3,
.site-footer h4 {
  margin-bottom: 1rem;
  color: #f9c600;
  font-weight: 600;
}

.site-footer a {
  color: white;
  text-decoration: none;
}

.site-footer a:hover {
  color: #f9c600;
}

.site-footer ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.site-footer ul li {
  margin-bottom: 0.5rem;
}

.site-footer .copyright {
  text-align: center;
  border-top: 1px solid #333;
  padding-top: 1rem;
  font-size: 0.85rem;
  color: #aaa;
}

/* === Social Icons === */
.social-icons {
  display: flex;
  gap: 15px;
  margin-top: 0.5rem;
}

.social-icons a {
  display: inline-block;
  font-size: 20px;
  color: #FFA500;
  transition: color 0.3s ease;
}

.social-icons a:hover {
  color: #FFA500;
}

/* === Embedded Map === */
.footer-map iframe {
  width: 100%;
  height: 200px;
  border: 0;
  border-radius: 8px;
  margin-top: 1rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

/* === Responsive adjustments === */
@media screen and (max-width: 768px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .social-icons {
    justify-content: start;
  }

  .footer-map iframe {
    height: 180px;
  }
}


/* === RESPONSIVE HEADER === */
@media screen and (max-width: 768px) {
  .burger {
    display: flex;
  }

  .main-nav {
    display: none;
    width: 100%;
    margin-top: 1rem;
  }

  .main-nav.active {
    display: block;
  }

  .main-nav ul {
    flex-direction: column;
    gap: 0.5rem;
  }

  .header-cta {
    width: 100%;
    margin-top: 1rem;
  }
}

/* === PAGE HERO === */
.hero {
  background-size: cover;
  background-position: center;
  position: relative;
  padding: 6rem 1rem;
  color: #fff;
  text-align: center;
}

.overlay {
  background-color: rgba(0, 0, 0, 0.6);
  padding: 4rem 1rem;
}

.hero-content h1 {
  font-size: 2.2rem;
  margin-bottom: 1rem;
}

.hero-content p {
  max-width: 800px;
  margin: 0 auto 2rem;
  line-height: 1.6;
}

.cta-button {
  background-color: #f9c600;
  color: #111;
  padding: 0.75rem 1.5rem;
  font-weight: bold;
  border-radius: 4px;
  transition: background-color 0.3s ease;
  display: inline-block;
}

.cta-button:hover {
  background-color: #ff6f00;
  color: #fff;
}

/* === SERVICES VALUES === */
.services-values {
  background-color: #f9f9f9;
  padding: 4rem 1rem;
  text-align: center;
}

.services-values h2 {
  font-size: 1.8rem;
  margin-bottom: 2rem;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
}

.service-box {
  background-color: #fff;
  padding: 2rem;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
  transition: transform 0.3s ease;
}

.service-box:hover {
  transform: translateY(-5px);
}

.service-box h3 {
  color: #f9c600;
  margin-bottom: 1rem;
  font-size: 1.1rem;
}

.service-box p {
  font-size: 0.95rem;
  line-height: 1.6;
}

/* === ACTIVITIES === */
.activities-section {
  padding: 4rem 1rem;
  background-color: #fafafa; /* léger fond pour démarquer la section */
}

.activities-section h2 {
  text-align: center;
  font-size: 1.8rem;
  margin-bottom: 2.5rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: #FFA500;
}

.activities-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
  align-items: stretch; /* pour que toutes les boxes aient la même hauteur */
}

.activity-box {
  background-color: #fff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 6px 15px rgba(0,0,0,0.08);
  text-align: center;
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.35s ease;
  display: flex;
  flex-direction: column;
  cursor: default;
}

.activity-box:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 24px rgba(0,0,0,0.15);
}

.activity-box img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-bottom: 4px solid #f9c600; /* bandeau jaune orangé sous l'image */
  flex-shrink: 0;
  transition: transform 0.3s ease;
}

.activity-box:hover img {
  transform: scale(1.05);
}

.activity-box h3 {
  margin: 1.2rem 1rem 0.6rem;
  color: #f9c600;
  font-size: 1.15rem;
  font-weight: 700;
  flex-grow: 0;
}

.activity-box p {
  padding: 0 1.2rem 1.8rem;
  font-size: 0.95rem;
  color: #444;
  flex-grow: 1; /* permet au texte de prendre l’espace disponible pour aligner les boîtes */
  line-height: 1.5;
}

/* Responsive adjustments */
@media (max-width: 480px) {
  .activities-section h2 {
    font-size: 1.5rem;
  }
  
  .activity-box img {
    height: 150px;
  }
  
  .activity-box h3 {
    font-size: 1rem;
  }
  
  .activity-box p {
    font-size: 0.9rem;
    padding: 0 1rem 1.2rem;
  }
}

/* === ANIMATION SCROLL === */
.scroll-fade {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.scroll-fade.visible {
  opacity: 1;
  transform: translateY(0);
}

/* === EXTRA MEDIA QUERIES === */
@media (max-width: 480px) {
  .hero-content h1 {
    font-size: 1.6rem;
  }
  .hero-content p {
    font-size: 0.9rem;
  }
  .cta-button {
    font-size: 0.95rem;
    padding: 0.6rem 1.2rem;
  }
  .service-box p,
  .activity-box p {
    font-size: 0.85rem;
  }
}

/* === Approche Globale (Version avec images/icônes) === */

.process-approach {
  background-color: #000000;
  padding: 4rem 1rem;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  color: #FFFFFF;
}

.process-approach .container {
  max-width: 1100px;
  margin: 0 auto;
}

.process-title {
  font-size: 2.4rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 3rem;
  color: #FFA500;
  text-transform: uppercase;
  line-height: 1.2;
}

.process-title span {
  color: #FFFFFF;
  font-style: italic;
  display: block;
  margin-top: 0.3rem;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2.5rem;
}

.process-step {
  background: #121212;
  border-radius: 14px;
  padding: 2rem;
  box-shadow: 0 8px 25px rgba(255, 165, 0, 0.3);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  color: #FFFFFF;
}

.process-step:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 35px rgba(255, 165, 0, 0.5);
}

.step-icon,
.step-icon-multiple {
  display: flex;
  gap: 1rem;
  align-items: center;
  justify-content: flex-start;
  margin-bottom: 1.5rem;
}

.step-icon img,
.step-icon-multiple img {
  width: 60px;
  height: 60px;
  object-fit: contain;
  filter: brightness(1.3);
  transition: transform 0.3s ease;
}

.process-step:hover .step-icon img,
.process-step:hover .step-icon-multiple img {
  transform: scale(1.1);
  filter: brightness(1.6);
}

.step-title {
  font-size: 1.5rem;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 1rem;
  color: #FFFFFF;
}

.step-desc {
  font-size: 1rem;
  line-height: 1.6;
  color: #CCCCCC;
}

/* === Responsive === */
@media (max-width: 600px) {
  .process-title {
    font-size: 1.8rem;
  }

  .step-icon img,
  .step-icon-multiple img {
    width: 50px;
    height: 50px;
  }

  .process-grid {
    grid-template-columns: 1fr;
  }

  .step-title {
    font-size: 1.2rem;
  }

  .step-desc {
    font-size: 0.95rem;
  }
}



/* CSS PAGE CONTACT */

.contact-page {
  padding: 4rem 1rem;
  max-width: 800px;
  margin: auto;
  text-align: center;
}

.contact-page h1 {
  font-size: 2rem;
  margin-bottom: 0.5rem;
}

.contact-page p {
  font-size: 1rem;
  color: #555;
}

.contact-form {
  margin-top: 2rem;
  text-align: left;
}

.contact-form label {
  display: block;
  margin-bottom: 0.3rem;
  font-weight: bold;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 0.8rem;
  margin-bottom: 1.5rem;
  border: 1px solid #ccc;
  border-radius: 4px;
  font-family: inherit;
}

.contact-form textarea {
  resize: vertical;
}

.cta-btn {
  background-color: #f9c600;
  color: #111;
  padding: 0.75rem 1.5rem;
  border: none;
  border-radius: 4px;
  font-weight: bold;
  cursor: pointer;
  transition: background 0.3s ease;
}

.cta-btn:hover {
  background-color: #ff6f00;
  color: #fff;
}

.success-msg {
  background-color: #e6ffed;
  color: #2e7d32;
  padding: 1rem;
  margin-top: 2rem;
  border-radius: 5px;
  font-weight: 600;
}

.contact-infos {
  margin-top: 3rem;
  text-align: center;
}

.contact-infos a {
  color: #f9c600;
  font-weight: bold;
}

.social-links {
  margin-top: 1rem;
}

.social-links a {
  margin: 0 0.6rem;
  color: #111;
  font-size: 1.6rem;
  transition: color 0.3s ease;
}

.social-links a:hover {
  color: #f9c600;
}

@media (max-width: 600px) {
  .cta-btn {
    width: 100%;
  }
}

/* === NOS RÉFÉRENCES === */

.about-references {
  background-color: #000000;
  color: #FFFFFF;
  padding: 4rem 1rem;
  max-width: 1100px;
  margin: 0 auto;
  font-family: 'Segoe UI', sans-serif;
  text-align: center;
}

.about-references h2 {
  font-size: 2.4rem;
  color: #FFA500;
  text-transform: uppercase;
  margin-bottom: 1rem;
  letter-spacing: 2px;
}

.about-references p {
  font-size: 1.1rem;
  color: #CCCCCC;
  margin-bottom: 2.5rem;
}

.tab-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 2.5rem;
}

.tab-btn {
  background: none;
  border: 2px solid #FFA500;
  color: #FFA500;
  padding: 0.6rem 1.2rem;
  border-radius: 30px;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.3s ease;
}

.tab-btn:hover,
.tab-btn.active {
  background-color: #FFA500;
  color: #000000;
}

.tab-content {
  display: none;
  text-align: center;
  padding: 1.5rem;
  background-color: #121212;
  border-radius: 16px;
  box-shadow: 0 8px 25px rgba(255, 165, 0, 0.25);
  max-width: 700px;
  margin: 0 auto 2rem;
  transition: opacity 0.3s ease;
}

.tab-content.active {
  display: block;
}

.tab-content img {
  max-width: 120px;
  margin-bottom: 1.2rem;
  filter: brightness(1.3);
}

.tab-content h3 {
  font-size: 1.4rem;
  color: #FFA500;
  margin-bottom: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.tab-content p {
  font-size: 1rem;
  color: #CCCCCC;
  margin-bottom: 1rem;
}

.tab-content blockquote {
  font-style: italic;
  font-weight: 300;
  color: #FFFFFF;
  background: rgba(255, 165, 0, 0.08);
  padding: 1rem 1.5rem;
  border-left: 4px solid #FFA500;
  margin-top: 1rem;
  border-radius: 6px;
}

/* CTA closing */
.about-closing {
  background-color: #000000;
  text-align: center;
  padding: 3rem 1rem;
}

.about-closing h2 {
  font-size: 2rem;
  color: #FFA500;
  margin-bottom: 1rem;
  text-transform: uppercase;
}

.about-closing p {
  font-size: 1.1rem;
  color: #CCCCCC;
  margin-bottom: 2rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.cta-button {
  background-color: #FFA500;
  color: #000000;
  padding: 0.75rem 1.8rem;
  border-radius: 30px;
  font-weight: bold;
  font-size: 1rem;
  text-decoration: none;
  transition: background 0.3s ease;
}

.cta-button:hover {
  background-color: #ffb733;
}

/* Responsive */
@media (max-width: 600px) {
  .tab-buttons {
    flex-direction: column;
    align-items: center;
  }

  .tab-btn {
    width: 100%;
    max-width: 280px;
  }

  .tab-content {
    padding: 1rem;
  }
}

/* === PAGE NOS ACTIVITÉS === */

.interventions-section {
  padding: 4rem 1rem;
  font-family: 'Segoe UI', sans-serif;
  background-color: #fff;
}

.interventions-section .container {
  max-width: 1100px;
  margin: 0 auto;
}

.interventions-section .section-title {
  text-align: center;
  color: #FFA500;
  font-size: 2.5rem;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.interventions-section .section-subtitle {
  text-align: center;
  color: #555;
  font-size: 1.1rem;
  max-width: 700px;
  margin: 0 auto 3rem;
}

/* === Bloc cliquable === */
.intervention-block-link {
  text-decoration: none;
  color: inherit;
  display: block;
  transition: transform 0.3s;
}

.intervention-block-link:hover .intervention-block {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
}

/* === Bloc Intervention === */
.intervention-block {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  margin-bottom: 3rem;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.05);
  background-color: #ffffff;
  transition: all 0.3s ease;
}

.intervention-block.yellow-bg {
  background-color: #fff8e5;
}

.intervention-text {
  flex: 1 1 50%;
  padding: 1rem;
}

.intervention-image {
  flex: 1 1 50%;
  padding: 1rem;
  text-align: center;
}

.intervention-image img {
  max-width: 100%;
  border-radius: 12px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.1);
}

.intervention-number {
  width: 40px;
  height: 40px;
  background-color: #000;
  color: #FFA500;
  font-weight: bold;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  margin-bottom: 1rem;
}

.intervention-text h3 {
  font-size: 1.4rem;
  color: #000;
  margin-bottom: 1rem;
  text-transform: uppercase;
}

.intervention-text p {
  font-size: 1rem;
  color: #333;
  line-height: 1.6;
  margin-bottom: 1rem;
}

.keywords {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  padding-left: 0;
}

.keywords li {
  background-color: #000;
  color: #FFA500;
  padding: 0.4rem 1rem;
  font-size: 0.9rem;
  font-weight: bold;
  border-radius: 20px;
}

/* Bouton "Voir plus" */
.voir-plus-btn {
  display: inline-block;
  margin-top: 1rem;
  background-color: #FFA500;
  color: #000;
  padding: 0.5rem 1rem;
  border-radius: 25px;
  font-weight: bold;
  font-size: 0.9rem;
  transition: all 0.3s ease;
}

.voir-plus-btn:hover {
  background-color: #000;
  color: #FFA500;
}

/* === CTA final === */
.intervention-cta {
  text-align: center;
  margin-top: 4rem;
  padding-top: 2rem;
  border-top: 2px solid #FFA500;
}

.intervention-cta h3 {
  font-size: 1.4rem;
  margin-bottom: 1.5rem;
  color: #000;
  font-weight: 600;
}

.cta-button {
  display: inline-block;
  background-color: #FFA500;
  color: #000;
  padding: 0.8rem 2rem;
  border-radius: 25px;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s ease;
}

.cta-button:hover {
  background-color: #000;
  color: #FFA500;
}

/* === Responsive === */
@media (max-width: 768px) {
  .intervention-block {
    flex-direction: column;
  }

  .intervention-text,
  .intervention-image {
    flex: 1 1 100%;
    text-align: center;
  }

  .intervention-number {
    margin: 0 auto 1rem;
  }
}

/* === Section Choisir Value === */
.choisir-value-section {
  padding: 4rem 1rem;
  background: repeating-linear-gradient(
    45deg,
    #f7f7f7,
    #f7f7f7 20px,
    #ffffff 20px,
    #ffffff 40px
  );
  font-family: 'Segoe UI', sans-serif;
}

.choisir-value-section .container {
  max-width: 1100px;
  margin: 0 auto;
}

.choisir-value-section .section-title {
  text-align: center;
  font-size: 2rem;
  color: #FFA500;
  text-transform: uppercase;
  margin-bottom: 3rem;
  font-weight: bold;
}

.value-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2.5rem;
}

.value-card {
  display: flex;
  align-items: flex-start;
  background: #ffffff;
  padding: 1.5rem;
  border-radius: 14px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  opacity: 0;
  transform: translateY(20px);
}

.value-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

.value-icon {
  flex-shrink: 0;
  width: 60px;
  margin-right: 1.2rem;
}

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

.value-content h3 {
  font-size: 1rem;
  background-color: #FFA500;
  color: #000;
  display: inline-block;
  padding: 0.3rem 0.8rem;
  border-radius: 25px;
  margin-bottom: 0.8rem;
  text-transform: uppercase;
  font-weight: bold;
}

.value-content p {
  font-size: 0.95rem;
  color: #333;
  line-height: 1.6;
}

.value-content p strong {
  color: #000;
  font-weight: 600;
}

/* Animation fade-in */
.fade-in-section .fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.fade-in-section .fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 600px) {
  .value-card {
    flex-direction: column;
    text-align: center;
  }

  .value-icon {
    margin: 0 auto 1rem;
  }
}


/* === FABRICATION MÉCANIQUE === */
.fabrication-section {
  background-color: #000000;
  color: #ffffff;
  padding: 4rem 1rem;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.section-title {
  font-size: 2.8rem;
  font-weight: 700;
  color: #FFA500;
  text-transform: uppercase;
  text-align: center;
  margin-bottom: 1rem;
}

.section-intro {
  max-width: 800px;
  margin: 0 auto 3rem;
  font-size: 1.15rem;
  color: #cccccc;
  text-align: center;
  line-height: 1.6;
}

.fabrication-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2.5rem;
  margin-bottom: 4rem;
}

.fab-card {
  background-color: #121212;
  border-radius: 12px;
  box-shadow: 0 6px 25px rgba(255, 165, 0, 0.2);
  padding: 2rem;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.fab-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 35px rgba(255, 165, 0, 0.4);
}

.fab-card img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  margin-bottom: 1.5rem;
}

.fab-card h3 {
  font-size: 1.4rem;
  color: #FFA500;
  font-weight: 700;
  margin-bottom: 1rem;
  text-transform: uppercase;
}

.fab-card p {
  font-size: 1rem;
  color: #CCCCCC;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.cta-button {
  display: inline-block;
  padding: 0.6rem 1.2rem;
  background-color: #FFA500;
  color: #000;
  font-weight: bold;
  border-radius: 5px;
  text-decoration: none;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.cta-button:hover {
  background-color: #ff8400;
  color: #fff;
}

/* === RÉALISATIONS === */
.realisation-section {
  text-align: center;
}

.section-subtitle {
  font-size: 2rem;
  font-weight: bold;
  color: #FFA500;
  margin-bottom: 2rem;
  text-transform: uppercase;
}

.realisation-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 1.5rem;
  justify-content: center;
}

.realisation-gallery img {
  width: 100%;
  height: auto;
  border-radius: 10px;
  transition: transform 0.3s ease;
}

.realisation-gallery img:hover {
  transform: scale(1.05);
}

/* === RESPONSIVE === */
@media (max-width: 600px) {
  .section-title {
    font-size: 2rem;
  }

  .section-intro {
    font-size: 1rem;
  }

  .fab-card h3 {
    font-size: 1.2rem;
  }

  .cta-button {
    padding: 0.5rem 1rem;
    font-size: 0.95rem;
  }

  .section-subtitle {
    font-size: 1.5rem;
  }
}

/* === Maintenance Industrielle === */
.maintenance-section {
  background-color: #000;
  color: #fff;
  padding: 4rem 1rem;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.maintenance-section .container {
  max-width: 1100px;
  margin: 0 auto;
}

.maintenance-section .section-title {
  font-size: 2.8rem;
  color: #FFA500;
  text-transform: uppercase;
  text-align: center;
  margin-bottom: 2rem;
}

.maintenance-section .section-intro {
  text-align: center;
  color: #ccc;
  font-size: 1.1rem;
  max-width: 900px;
  margin: 0 auto 3rem;
  line-height: 1.6;
}

.maintenance-section .fabrication-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
}

.maintenance-section .fab-card {
  background: #121212;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 8px 25px rgba(255, 165, 0, 0.2);
  transition: transform 0.3s;
  text-align: center;
}

.maintenance-section .fab-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 35px rgba(255, 165, 0, 0.4);
}

.maintenance-section .fab-card img {
  width: 100%;
  height: auto;
  border-radius: 10px;
  margin-bottom: 1rem;
}

.maintenance-section .fab-card h3 {
  color: #FFA500;
  margin-bottom: 0.5rem;
  text-transform: uppercase;
}

.maintenance-section .fab-card p {
  color: #ccc;
  font-size: 0.95rem;
  line-height: 1.5;
  margin-bottom: 1rem;
}

.maintenance-section .cta-button {
  display: inline-block;
  background: #FFA500;
  color: #111;
  padding: 0.6rem 1.2rem;
  border-radius: 6px;
  font-weight: bold;
  text-decoration: none;
  transition: background 0.3s;
}

.maintenance-section .cta-button:hover {
  background: #ff6f00;
  color: #fff;
}

.maintenance-section .realisation-section {
  margin-top: 4rem;
}

.maintenance-section .section-subtitle {
  font-size: 2rem;
  color: #FFA500;
  text-align: center;
  margin-bottom: 1rem;
}

.maintenance-section .competence-columns {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.maintenance-section .competence-block h3 {
  color: #FFA500;
  margin-bottom: 0.75rem;
  font-size: 1.2rem;
  text-transform: uppercase;
}

.maintenance-section .competence-block ul {
  padding-left: 1.2rem;
  color: #ccc;
  font-size: 0.95rem;
  line-height: 1.6;
}

.maintenance-section .cta-center {
  text-align: center;
  margin-top: 3rem;
}

.maintenance-section .cta-center .cta-button {
  margin: 0.5rem;
}

/* Responsive */
@media screen and (max-width: 600px) {
  .maintenance-section .section-title {
    font-size: 2rem;
  }

  .maintenance-section .section-subtitle {
    font-size: 1.5rem;
  }
}

/* === Fourniture Industrielle === */
.fourniture-section {
  background-color: #000;
  color: #fff;
  padding: 4rem 1rem;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.fourniture-section .container {
  max-width: 1100px;
  margin: auto;
}

.fourniture-section .section-title {
  font-size: 2.5rem;
  text-transform: uppercase;
  text-align: center;
  color: #FFA500;
  margin-bottom: 1.5rem;
}

.fourniture-section .section-intro {
  text-align: center;
  font-size: 1.1rem;
  color: #ccc;
  margin-bottom: 3rem;
}

.fourniture-section .section-subtitle {
  font-size: 1.8rem;
  color: #FFA500;
  margin-top: 3rem;
  margin-bottom: 1rem;
  text-transform: uppercase;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.product-card {
  background: #121212;
  border-radius: 10px;
  padding: 1.5rem;
  text-align: center;
  box-shadow: 0 8px 25px rgba(255, 165, 0, 0.2);
  transition: 0.3s;
}

.product-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 35px rgba(255, 165, 0, 0.4);
}

.product-card img {
  width: 100%;
  max-height: 160px;
  object-fit: contain;
  margin-bottom: 1rem;
  background-color: #fff;
  padding: 0.5rem;
  border-radius: 6px;
}

.product-card h4 {
  font-size: 1.1rem;
  margin-bottom: 0.8rem;
  color: #fff;
  text-transform: uppercase;
}

.cta-button {
  background-color: #FFA500;
  color: #111;
  padding: 0.6rem 1.2rem;
  font-weight: bold;
  border-radius: 6px;
  text-decoration: none;
  display: inline-block;
  transition: background 0.3s;
}

.cta-button:hover {
  background-color: #ff6f00;
  color: #fff;
}

/* Responsive */
@media screen and (max-width: 600px) {
  .fourniture-section .section-title {
    font-size: 2rem;
  }

  .fourniture-section .section-subtitle {
    font-size: 1.5rem;
  }
}

/* === Métallisation à froid === */
.metal-section {
  background: #000;
  color: #fff;
  padding: 4rem 1rem;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.metal-section .container {
  max-width: 1100px;
  margin: auto;
}

.section-title {
  font-size: 2.4rem;
  color: #FFA500;
  text-transform: uppercase;
  text-align: center;
  margin-bottom: 2rem;
}

.section-intro {
  color: #ccc;
  font-size: 1.1rem;
  line-height: 1.6;
  text-align: center;
  margin-bottom: 2rem;
}

.highlight-box {
  background: #121212;
  border-left: 6px solid #FFA500;
  padding: 1rem 1.5rem;
  margin-bottom: 3rem;
  font-size: 1.05rem;
  color: #fff;
}

.section-subtitle {
  font-size: 1.8rem;
  color: #FFA500;
  margin: 2.5rem 0 1.5rem;
  text-transform: uppercase;
  text-align: center;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.step-box {
  background: #121212;
  border-radius: 10px;
  padding: 1.5rem;
  box-shadow: 0 8px 25px rgba(255, 165, 0, 0.2);
  transition: 0.3s ease;
}

.step-box h4 {
  color: #FFA500;
  margin-bottom: 0.8rem;
  font-size: 1.3rem;
}

.step-box p {
  color: #ccc;
  font-size: 1rem;
  line-height: 1.5;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.gallery-grid img {
  width: 100%;
  border-radius: 8px;
  object-fit: cover;
  height: 200px;
  background: #fff;
}

.video-container {
  margin-top: 3rem;
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
}

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

/* Responsive */
@media screen and (max-width: 600px) {
  .section-title {
    font-size: 2rem;
  }

  .section-subtitle {
    font-size: 1.5rem;
  }

  .gallery-grid img {
    height: 160px;
  }
}

