@charset "UTF-8";
/* CSS Document */ :root {
  --primary-color: #1e272e;
  --secondary-color: #ff9f43;
  --accent-color: #ff6f61;
  --text-dark: #2c3e50;
  --text-light: #f8f9fa;
  --bg-light: #f9fbfd;
  --shadow-light: 0 4px 15px rgba(0, 0, 0, 0.05);
  --shadow-medium: 0 8px 25px rgba(0, 0, 0, 0.1);
  --shadow-heavy: 0 15px 35px rgba(0, 0, 0, 0.15);
  --transition-smooth: all 0.35s cubic-bezier(0.25, 0.8, 0.25, 1);
}
* {
  box-sizing: border-box;
}
body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  margin: 0;
  padding: 0;
  background-color: var(--bg-light);
  color: var(--text-dark);
  line-height: 1.6;
}
/* Topbar */
.topbar {
  background-color: var(--primary-color);
  color: var(--text-light);
  font-size: 0.9rem;
  padding: 12px 0;
  border-bottom: 3px solid var(--secondary-color);
}
.topbar-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 20px;
  flex-wrap: wrap;
}
.topbar-info span {
  margin-right: 25px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.topbar-info a, .topbar-phone a {
  color: var(--secondary-color);
  text-decoration: none;
  font-weight: 700;
  transition: var(--transition-smooth);
}
.topbar-info a:hover, .topbar-phone a:hover {
  color: white;
}
/* Header principal */
header {
  background: linear-gradient(135deg, #2c3e50, #1a252f);
  color: white;
  padding: 50px 0;
  text-align: center;
  position: relative;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
header h1 {
  font-size: 3.4rem;
  margin: 0;
  font-weight: 800;
  letter-spacing: -1px;
  text-transform: uppercase;
}
header h1 span {
  color: var(--secondary-color);
}
header p {
  font-size: 1.25rem;
  color: #bdc3c7;
  max-width: 800px;
  margin: 15px auto 0;
}
/* Menu de navigation collé */
nav {
  background-color: white;
  box-shadow: var(--shadow-light);
  position: sticky;
  top: 0;
  z-index: 1000;
  display: flex;
  justify-content: center;
  border-bottom: 1px solid #e2e8f0;
}
.nav-container {
  max-width: 1200px;
  width: 100%;
  display: flex;
  justify-content: space-around;
  align-items: center;
  padding: 5px 20px;
}
nav a {
  color: var(--primary-color);
  font-weight: 700;
  text-decoration: none;
  font-size: 1.05rem;
  padding: 15px 20px;
  transition: var(--transition-smooth);
  position: relative;
}
nav a::after {
  content: '';
  position: absolute;
  width: 0;
  height: 3px;
  bottom: 0;
  left: 50%;
  background-color: var(--secondary-color);
  transition: var(--transition-smooth);
  transform: translateX(-50%);
}
nav a:hover::after, nav a.active::after {
  width: 100%;
}
nav a:hover, nav a.active {
  color: var(--secondary-color);
}
/* Section Hero */
.hero {
  background: linear-gradient(rgba(30, 39, 46, 0.75), rgba(30, 39, 46, 0.85)), url('hero-chrono-questembert.jpg') no-repeat center center/cover;
  height: 480px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: white;
  text-align: center;
  padding: 0 20px;
}
.hero h2 {
  font-size: 3rem;
  margin-bottom: 20px;
  font-weight: 800;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}
.hero p {
  font-size: 1.4rem;
  max-width: 850px;
  color: #f1f2f6;
  margin-bottom: 35px;
}
/* Structure de mise en page globale */
.main-container {
  max-width: 1200px;
  margin: 60px auto;
  padding: 0 20px;
}
.section-title {
  text-align: center;
  font-size: 2.6rem;
  color: var(--primary-color);
  margin-bottom: 15px;
  position: relative;
  font-weight: 800;
}
.section-title::after {
  content: '';
  display: block;
  width: 80px;
  height: 4px;
  background-color: var(--secondary-color);
  margin: 15px auto 0;
  border-radius: 2px;
}
.section-subtitle {
  text-align: center;
  color: #7f8c8d;
  max-width: 750px;
  margin: 0 auto 50px;
  font-size: 1.15rem;
}
/* Grilles et Cartes de fonctionnalités */
.grid-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}
.feature-card {
  background: white;
  padding: 45px 35px;
  border-radius: 8px;
  box-shadow: var(--shadow-light);
  border-top: 5px solid var(--primary-color);
  transition: var(--transition-smooth);
  text-align: center;
}
.feature-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-heavy);
  border-top-color: var(--secondary-color);
}
.feature-icon {
  font-size: 3.2rem;
  color: var(--secondary-color);
  margin-bottom: 25px;
  display: inline-block;
}
.feature-card h3 {
  font-size: 1.5rem;
  margin-bottom: 15px;
  color: var(--primary-color);
  font-weight: 700;
}
/* Section Ravalement bi-colonne */
.facade-section {
  background-color: white;
  border-radius: 8px;
  box-shadow: var(--shadow-light);
  margin: 70px 0;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  overflow: hidden;
  border-right: 5px solid var(--secondary-color);
}
.facade-content {
  padding: 50px;
}
.facade-content h3 {
  font-size: 2.2rem;
  color: var(--primary-color);
  margin-top: 0;
  font-weight: 700;
}
.facade-content p {
  color: #57606f;
  font-size: 1.05rem;
  margin-bottom: 20px;
}
.facade-list {
  list-style: none;
  padding: 0;
}
.facade-list li {
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  font-weight: 600;
  color: #333;
}
.facade-list i {
  color: #2ed573;
  margin-right: 15px;
  font-size: 1.3rem;
}
.facade-img-container {
  position: relative;
  overflow: hidden;
}
.facade-img-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-smooth);
}
.facade-section:hover .facade-img-container img {
  transform: scale(1.04);
}
/* Blocs de la page Services */
.service-block {
  display: flex;
  background: white;
  border-radius: 8px;
  box-shadow: var(--shadow-light);
  margin-bottom: 45px;
  overflow: hidden;
  transition: var(--transition-smooth);
  border-left: 5px solid var(--secondary-color);
}
.service-block:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-medium);
}
.service-img-container {
  width: 38%;
  position: relative;
  overflow: hidden;
}
.service-img-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-smooth);
}
.service-block:hover .service-img-container img {
  transform: scale(1.06);
}
.service-text {
  width: 62%;
  padding: 45px;
}
.service-text h3 {
  font-size: 1.9rem;
  margin-top: 0;
  color: var(--primary-color);
}
.benefit-tags-wrapper {
  margin-top: 20px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.benefit-tag {
  background-color: #f1f2f6;
  color: var(--primary-color);
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 0.88rem;
  font-weight: 700;
  border: 1px solid #ced6e0;
}
/* Page Réalisations */
.project-card {
  background: white;
  border-radius: 8px;
  box-shadow: var(--shadow-light);
  padding: 35px;
  margin-bottom: 50px;
}
.project-card h3 {
  font-size: 1.7rem;
  color: var(--primary-color);
  margin-top: 0;
  display: flex;
  align-items: center;
  gap: 12px;
}
.project-card h3 i {
  color: var(--secondary-color);
}
.project-grid-comparison {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 25px;
  margin-top: 25px;
}
.img-wrapper {
  position: relative;
  border-radius: 6px;
  overflow: hidden;
  box-shadow: var(--shadow-light);
  aspect-ratio: 4 / 3;
}
.img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: var(--transition-smooth);
}
.img-wrapper:hover img {
  transform: scale(1.04);
}
.badge-status {
  position: absolute;
  top: 15px;
  left: 15px;
  background-color: rgba(30, 39, 46, 0.9);
  color: white;
  padding: 6px 14px;
  font-weight: 700;
  font-size: 0.85rem;
  border-radius: 4px;
  text-transform: uppercase;
  z-index: 2;
}
.badge-status.after {
  background-color: #2ed573;
}
/* Page Contact */
.contact-layout-box {
  background: white;
  border-radius: 8px;
  box-shadow: var(--shadow-medium);
  padding: 50px;
  text-align: center;
}
.contact-methods {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 30px;
  margin: 40px 0;
}
.method-box {
  background-color: #f8fafd;
  padding: 40px 25px;
  border-radius: 6px;
  border: 1px solid #e2e8f0;
  transition: var(--transition-smooth);
}
.method-box:hover {
  border-color: var(--secondary-color);
  transform: translateY(-5px);
  background-color: white;
  box-shadow: var(--shadow-light);
}
.method-box i {
  font-size: 2.8rem;
  color: var(--secondary-color);
  margin-bottom: 20px;
}
.method-box h4 {
  margin: 0 0 12px 0;
  font-size: 1.3rem;
  color: var(--primary-color);
}
.method-box p, .method-box a {
  color: #2c3e50;
  font-size: 1.1rem;
  text-decoration: none;
  font-weight: 700;
}
.method-box a:hover {
  color: var(--accent-color);
}
.info-availability {
  background-color: #fff2e6;
  border-left: 5px solid var(--secondary-color);
  padding: 25px;
  border-radius: 4px;
  text-align: left;
  display: flex;
  align-items: center;
  gap: 20px;
}
.info-availability i {
  font-size: 2.2rem;
  color: var(--secondary-color);
}
/* Call To Action & Boutons */
.cta-box {
  background: linear-gradient(135deg, var(--secondary-color), var(--accent-color));
  border-radius: 8px;
  padding: 55px;
  text-align: center;
  color: white;
  box-shadow: var(--shadow-medium);
  margin: 70px 0;
}
.cta-box h3 {
  font-size: 2.4rem;
  margin-top: 0;
  font-weight: 800;
}
.cta-box p {
  font-size: 1.25rem;
  margin-bottom: 35px;
  opacity: 0.95;
}
.btn-premium {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background-color: var(--primary-color);
  color: white;
  padding: 16px 42px;
  font-size: 1.1rem;
  font-weight: 700;
  text-decoration: none;
  border-radius: 4px;
  transition: var(--transition-smooth);
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.25);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.btn-premium:hover {
  background-color: white;
  color: var(--primary-color);
  transform: scale(1.04);
}
/* Footer structuré en 4 colonnes flexbox */
.main-footer {
  background-color: var(--primary-color);
  color: #a4b0be;
  padding: 70px 0 0 0;
  margin-top: 100px;
  border-top: 5px solid var(--secondary-color);
  font-size: 0.95rem;
}
.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px 45px 20px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 40px;
}
.footer-column {
  flex: 1;
  min-width: 250px;
}
.footer-logo {
  font-size: 1.7rem;
  font-weight: 800;
  color: white;
  display: block;
  margin-bottom: 15px;
}
.footer-logo span {
  color: var(--secondary-color);
}
.footer-text {
  line-height: 1.6;
  margin-bottom: 25px;
}
.footer-badges {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.badge-item {
  display: inline-flex;
  align-items: center;
  font-size: 0.88rem;
  color: white;
  font-weight: 600;
  gap: 10px;
}
.badge-item i {
  color: #2ed573;
}
.footer-title {
  color: white;
  font-size: 1.25rem;
  font-weight: 700;
  margin-top: 0;
  margin-bottom: 25px;
  position: relative;
  padding-bottom: 12px;
}
.footer-title::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 45px;
  height: 3px;
  background-color: var(--secondary-color);
}
.footer-column ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer-column ul li {
  margin-bottom: 14px;
}
.footer-column ul a {
  color: #a4b0be;
  text-decoration: none;
  transition: var(--transition-smooth);
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.footer-column ul a:hover {
  color: white;
  padding-left: 6px;
}
.footer-column ul a i {
  color: var(--secondary-color);
  font-size: 0.85rem;
}
.contact-info-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 22px;
  gap: 15px;
}
.contact-info-item i {
  color: var(--secondary-color);
  font-size: 1.25rem;
  margin-top: 4px;
  width: 20px;
  text-align: center;
}
.contact-info-item div span {
  display: block;
  font-size: 0.8rem;
  text-transform: uppercase;
  color: #747d8c;
}
.contact-info-item div a, .contact-info-item div p {
  margin: 2px 0 0 0;
  color: white;
  font-weight: 700;
  text-decoration: none;
}
.contact-info-item div a:hover {
  color: var(--secondary-color);
}
.footer-bottom {
  background-color: #11171a;
  padding: 25px 0;
  border-top: 1px solid #2f3542;
  font-size: 0.88rem;
}
.footer-bottom-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 15px;
}
.footer-bottom p {
  margin: 0;
}
.footer-legal {
  color: #747d8c;
}
/* Responsive Media Queries */
@media (max-width: 992px) {
  header h1 {
    font-size: 2.8rem;
  }
  .facade-section {
    grid-template-columns: 1fr;
    border-right: none;
    border-bottom: 5px solid var(--secondary-color);
  }
  .facade-img-container {
    height: 350px;
  }
}
@media (max-width: 768px) {
  .topbar-container {
    flex-direction: column;
    text-align: center;
    gap: 10px;
  }
  .nav-container {
    flex-direction: column;
    padding: 10px 0;
  }
  nav a {
    padding: 10px 0;
    width: 100%;
    text-align: center;
  }
  .hero h2 {
    font-size: 2.2rem;
  }
  .hero p {
    font-size: 1.15rem;
  }
  .service-block {
    flex-direction: column;
  }
  .service-img-container {
    width: 100%;
    height: 240px;
  }
  .service-text {
    width: 100%;
    padding: 30px 20px;
  }
  .project-grid-comparison {
    grid-template-columns: 1fr;
  }
  .footer-container {
    flex-direction: column;
    gap: 40px;
  }
  .footer-bottom-container {
    flex-direction: column;
    text-align: center;
    gap: 12px;
  }
}
iframe {
	display: block
}
.no-link {
    color: inherit !important;
    text-decoration: none !important;
    pointer-events: none;
}