@charset "UTF-8";
/* CSS Document */
/* --- GLOBAL STYLES (1-10) --- */ :root {
  --primary: #f39c12;
  --secondary: #2c3e50;
  --dark: #1a252f;
  --light: #f4f7f6;
  --white: #ffffff;
  --text: #444;
  --transition: all 0.3s ease;
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: 'Roboto', sans-serif;
  line-height: 1.6;
  color: var(--text);
  background: var(--white);
}
a {
  text-decoration: none;
  transition: var(--transition);
}
ul {
  list-style: none;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}
.section-padding {
  padding: 80px 0;
}
.text-center {
  text-align: center;
}
.btn-main {
  background: var(--primary);
  color: white;
  padding: 12px 30px;
  border-radius: 5px;
  font-weight: bold;
  display: inline-block;
  border: none;
  cursor: pointer;
}
/* --- HEADER & NAVIGATION (11-25) --- */
.top-bar {
  background: var(--dark);
  color: white;
  padding: 10px;
  font-size: 14px;
  display: flex;
  justify-content: space-between;
  width: 100%;
  max-width: 100%;
}
.header-main {
  background: var(--white);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  sticky: top;
  z-index: 1000;
  position: sticky;
  top: 0;
}
.nav-flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 0;
}
.logo h1 {
  font-size: 24px;
  color: var(--secondary);
  text-transform: uppercase;
  border-left: 5px solid var(--primary);
  padding-left: 10px;
}
.nav-menu {
  display: flex;
}
.nav-item {
  margin-left: 25px;
}
.nav-link {
  color: var(--secondary);
  font-weight: 600;
  text-transform: uppercase;
  font-size: 14px;
}
.nav-link:hover, .nav-link.active {
  color: var(--primary);
}
.phone-blink {
  color: var(--primary);
  font-weight: bold;
  animation: pulse 1.5s infinite;
}
/* --- HERO SECTION (26-35) --- */
.hero {
  position: relative;
  height: 500px;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  color: white;
}
.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 74, 153, 0.6);
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
}
.hero-title {
  font-size: 48px;
  margin-bottom: 20px;
  line-height: 1.2;
}
.hero-sub {
  font-size: 20px;
  margin-bottom: 30px;
}
/* --- SERVICES GRID (36-50) --- */
.section-title {
  font-size: 36px;
  margin-bottom: 50px;
  position: relative;
  padding-bottom: 15px;
}
.section-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 70px;
  height: 3px;
  background: var(--primary);
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}
.service-card {
  background: var(--light);
  padding: 30px;
  border-radius: 8px;
  border-bottom: 4px solid transparent;
  transition: var(--transition);
}
.service-card:hover {
  transform: translateY(-10px);
  border-color: var(--primary);
  background: white;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}
.service-icon {
  font-size: 40px;
  color: var(--primary);
  margin-bottom: 20px;
}
.service-h3 {
  margin-bottom: 15px;
  color: var(--secondary);
}
/* --- CONTENT BLOCKS (51-60) --- */
.flex-block {
  display: flex;
  align-items: center;
  gap: 50px;
  flex-wrap: wrap;
}
.flex-img {
  flex: 1;
  min-width: 300px;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 20px 20px 0 var(--primary);
  margin-bottom: 20px;
}
.flex-text {
  flex: 1.2;
  min-width: 300px;
}
.highlight-box {
  background: var(--secondary);
  color: white;
  padding: 40px;
  border-radius: 10px;
  margin: 40px 0;
}
/* --- FOOTER & MAP (61-70) --- */
footer {
  background: var(--dark);
  color: #bdc3c7;
  padding: 60px 0 20px;
}
.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 40px;
  margin-bottom: 40px;
}
.footer-h4 {
  color: white;
  margin-bottom: 20px;
  text-transform: uppercase;
}
.map-container {
  border-radius: 10px;
  overflow: hidden;
  margin-top: 40px;
  border: 5px solid white;
}
.copyright {
  border-top: 1px solid #34495e;
  padding-top: 20px;
  font-size: 13px;
  text-align: center;
}
/* --- RESPONSIVE & ANIMATIONS (71-80) --- */
@keyframes pulse {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0.7;
  }
  100% {
    opacity: 1;
  }
}
@media (max-width: 768px) {
  .nav-menu {
    display: none;
  } /* En production, ajouter un menu burger JS */
  .hero-title {
    font-size: 32px;
  }
  .section-padding {
    padding: 40px 0;
  }
  .flex-block {
    flex-direction: column;
  }
  .flex-img {
    box-shadow: 10px 10px 0 var(--primary);
  }
}