@charset "UTF-8";
/* CSS Document */
/* ROOT VARIABLES */ :root {
  --primary-color: #e31e24; /* Rouge Rooft */
  --secondary-color: #1b1b1b; /* Noir Anthracite */
  --accent-color: #333333; /* Gris Foncé */
  --text-color: #212529;
  --light-bg: #f8f9fa;
}
/* TYPOGRAPHY */
body {
  font-family: 'Roboto', sans-serif;
  color: var(--text-color);
  overflow-x: hidden;
}
h1, h2, h3, h4, .navbar-brand {
  font-family: 'Oswald', sans-serif;
  text-transform: uppercase;
}
/* HEADER & NAVBAR */
.top-bar {
  font-size: 0.85rem;
  letter-spacing: 1px;
}
.navbar-brand {
  font-size: 1.8rem;
  letter-spacing: -1px;
  font-weight: 700;
}
.nav-link {
  font-weight: 700;
  color: var(--secondary-color) !important;
  padding: 0.5rem 1.2rem !important;
  transition: 0.3s;
}
.nav-link:hover {
  color: var(--primary-color) !important;
}
.btn-phone {
  border-radius: 50px;
  font-weight: 700;
  font-family: 'Oswald';
}
/* ANIMATIONS */
@keyframes pulse {
  0% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(227, 30, 36, 0.7);
  }
  70% {
    transform: scale(1.05);
    box-shadow: 0 0 0 15px rgba(227, 30, 36, 0);
  }
  100% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(227, 30, 36, 0);
  }
}
.pulse-animation {
  animation: pulse 2s infinite;
}
/* HERO SECTION */
.hero-section {
  min-height: 80vh;
  position: relative;
}
.hero-section h1 {
  letter-spacing: 2px;
}
/* SERVICE CARDS (80+ Classes used throughout) */
.service-card {
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  border-radius: 0 0 10px 10px;
  border-bottom: 4px solid transparent;
}
.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1) !important;
  border-bottom-color: var(--primary-color);
}
.border-bottom-danger {
  border-bottom: 3px solid var(--primary-color);
}
.border-left-danger {
  border-left: 6px solid var(--primary-color);
}
/* SECTIONS */
.title-line {
  width: 80px;
  height: 3px;
  background: var(--primary-color);
  margin-top: 15px;
}
.icon-box-small {
  border-radius: 8px;
  border: 1px solid #eee;
  min-height: 200px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  transition: 0.3s;
}
.icon-box-small:hover {
  background: var(--secondary-color);
  transform: scale(1.05);
}
/* FOOTER */
.footer {
  border-top: 5px solid var(--primary-color);
}
/* RESPONSIVE */
@media (max-width: 768px) {
  .display-3 {
    font-size: 2.5rem;
  }
  .hero-section {
    min-height: 60vh;
  }
}