* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}

body {
  background: #f7f9fc;
  color: #1e293b;
  line-height: 1.6;
}

.container {
  width: 90%;
  max-width: 1100px;
  margin: auto;
}

/* HEADER */
.header {
  background: #ffffff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  position: sticky;
  top: 0;
  z-index: 10;
}

.header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 0;
}

.logo {
  font-size: 1.3rem;
  font-weight: 700;
}

.logo span {
  color: #16a34a;
}

.nav a {
  margin-left: 1.5rem;
  text-decoration: none;
  color: #1e293b;
  font-weight: 500;
}

/* BUTTONS */
.btn {
  padding: 0.6rem 1.2rem;
  border-radius: 6px;
  text-decoration: none;
  font-size: 0.9rem;
}

.primary {
  background: #16a34a;
  color: #fff;
}

.outline {
  border: 1px solid #16a34a;
  color: #16a34a;
}

/* HERO */
.hero {
  background: linear-gradient(135deg, #0f172a, #020617);
  color: #fff;
  padding: 6rem 0;
  text-align: center;
}

.hero h1 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.hero p {
  max-width: 700px;
  margin: auto;
  opacity: 0.9;
}

.hero-actions {
  margin-top: 2rem;
}

.hero-actions .btn {
  margin: 0 0.5rem;
}

/* SECTIONS */
section {
  padding: 4rem 0;
  text-align: center;
}

h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
}

/* SERVICES */
.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
  margin-top: 2.5rem;
}

.service-card {
  background: #fff;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
}

.service-card h3 {
  margin-bottom: 0.8rem;
  color: #16a34a;
}

/* RECRUTEMENT */
.recrutement {
  background: #e5f9ed;
}

.recrutement-actions {
  margin-top: 2rem;
}

.recrutement-actions .btn {
  margin: 0 0.5rem;
}

/* CONTACT */
.contact {
  background: #0f172a;
  color: #fff;
}

.contact p {
  margin-bottom: 1.5rem;
}

/* FOOTER */
.footer {
  background: #020617;
  color: #94a3b8;
  text-align: center;
  padding: 1rem 0;
  font-size: 0.85rem;
}

.modal {
  display: none;
  position: fixed;
  z-index: 100;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
}

.modal-content {
  background: #fff;
  max-width: 450px;
  margin: 15% auto;
  padding: 2rem;
  border-radius: 12px;
  text-align: center;
  position: relative;
}

.modal-content h2 {
  margin-bottom: 1rem;
  color: #16a34a;
}

.modal-content p {
  font-size: 0.95rem;
  margin-bottom: 1.5rem;
}

.close {
  position: absolute;
  top: 15px;
  right: 20px;
  font-size: 1.4rem;
  cursor: pointer;
}

.modal-content .urgent {
  color: red;
  font-weight: 600;
  animation: pulse 1.2s infinite;
}

@keyframes pulse {
  0% {
    color: red;
  }
  50% {
    color: #ffb3b3;
  }
  100% {
    color: red;
  }
}
