/* ======= Reset et Base ======= */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Poppins", sans-serif;
  color: #333;
  background-color: #fff;
  line-height: 1.6;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

/* ======= Header ======= */
header {
  background-color: #ffffff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  position: sticky;
  top: 0;
  width: 100%;
  z-index: 1000;
}

.header-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px 40px;
}

.logo-container {
  display: flex;
  align-items: center;
}

.logo-img {
  width: 50px;
  height: 50px;
  margin-right: 10px;
}

.logo-text {
  font-size: 1.5rem;
  font-weight: 700;
  color: #0b6e4f;
}

.logo-text span {
  color: #f4b41a;
}

/* ======= Navigation ======= */
.nav-links {
  display: flex;
  gap: 25px;
}

.nav-links li a {
  font-weight: 500;
  color: #333;
  transition: color 0.3s ease;
}

.nav-links li a:hover {
  color: #f4b41a;
}

/* ======= Hamburger Menu (Mobile) ======= */
.hamburger {
  display: none;
  background: none;
  border: none;
  font-size: 1.8rem;
  cursor: pointer;
  color: #333;
}

/* ======= Hero Section ======= */
.hero {
  background: url(../Img/SL7.jpg) center/cover no-repeat;
  color: #fff;
  text-align: center;
  padding: 120px 20px;
  position: relative;
}

.hero::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0, 0, 0, 0.4);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin: 0 auto;
}

.hero h1 {
  font-size: 2.8rem;
  margin-bottom: 20px;
  font-weight: 700;
}

.hero p {
  font-size: 1.1rem;
  margin-bottom: 25px;
}

.btn {
  display: inline-block;
  background-color: #f4b41a;
  color: #fff;
  padding: 12px 25px;
  border-radius: 30px;
  transition: background 0.3s ease;
  font-weight: 600;
}

.btn:hover {
  background-color: #e09e00;
}

/* ======= Services Section ======= */
.services {
  text-align: center;
  padding: 80px 20px;
  background-color: #f9f9f9;
}

.services h2 {
  font-size: 2rem;
  margin-bottom: 40px;
  color: #0b6e4f;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  max-width: 1000px;
  margin: 0 auto;
}

.service-card {
  background: #fff;
  border-radius: 15px;
  padding: 30px 20px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.service-card i {
  font-size: 2.5rem;
  color: #f4b41a;
  margin-bottom: 15px;
}

.service-card h3 {
  font-size: 1.3rem;
  margin-bottom: 10px;
  color: #0b6e4f;
}

/* ======= Footer ======= */
footer {
  background-color: #0b6e4f;
  color: #fff;
  padding-top: 50px;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 30px;
}

.footer-section h3 {
  margin-bottom: 15px;
  color: #f4b41a;
}

.footer-section p {
  margin-bottom: 10px;
  font-size: 0.95rem;
}

.map-container iframe {
  width: 100%;
  height: 180px;
  border: 0;
  border-radius: 10px;
}

.social-icons a {
  margin-right: 15px;
  color: #fff;
  font-size: 1.2rem;
  transition: color 0.3s ease;
}

.social-icons a:hover {
  color: #f4b41a;
}

.footer-bottom {
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  padding: 15px 0;
  margin-top: 30px;
  font-size: 0.9rem;
}

/* ======= Responsive ======= */
@media (max-width: 768px) {
  .nav-links {
    position: absolute;
    top: 70px;
    right: 0;
    background-color: #fff;
    flex-direction: column;
    width: 200px;
    text-align: right;
    padding: 20px;
    display: none;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  }

  .nav-links.active {
    display: flex;
  }

  .hamburger {
    display: block;
  }
}
