/* ============================================
   STYLES PAGE SERVICES - GNA-BLE
   ============================================ */

.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* ============================================
   SECTION HERO
   ============================================ */
.services-hero {
  background: #000000;
  color: var(--color-white);
  padding: 100px 2rem 60px;
  text-align: center;
}

.hero-title {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.hero-subtitle {
  font-size: 1.3rem;
  opacity: 0.95;
  max-width: 800px;
  margin: 0 auto;
}

/* ============================================
   CONTAINER SERVICES
   ============================================ */
.services-container {
  max-width: 1400px;
  margin: -3rem auto 4rem;
  padding: 0 2rem;
}

/* ============================================
   CARTE SERVICE
   ============================================ */
.service-card {
  background: var(--color-white);
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  margin-bottom: 3rem;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 0;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

/* Image du service */
.service-image {
  width: 100%;
  height: 100%;
  min-height: 400px;
  overflow: hidden;
  position: relative;
}

.service-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.service-card:hover .service-image img {
  transform: scale(1.1);
}

/* Contenu du service */
.service-content {
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.service-header {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  margin-bottom: 2rem;
  padding-bottom: 1.5rem;
  border-bottom: 2px solid var(--color-gray-bg);
}

.service-number {
  background: var(--color-secondary);
  color: var(--color-white);
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: bold;
  flex-shrink: 0;
}

.service-title {
  font-size: 1.8rem;
  color: var(--color-primary);
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.service-subtitle {
  font-size: 1.2rem;
  color: var(--color-gray);
  font-weight: 500;
}

.service-description {
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--color-gray);
}

.service-description p {
  margin-bottom: 1.5rem;
}

/* Liste de fonctionnalités */
.features-list {
  list-style: none;
  margin: 1.5rem 0;
  padding-left: 0;
}

.features-list li {
  padding: 0.75rem 0;
  padding-left: 2rem;
  position: relative;
  color: var(--color-gray);
  font-size: 1.1rem;
}

.features-list li:before {
  content: "✓";
  color: var(--color-secondary);
  font-size: 1.5rem;
  font-weight: bold;
  position: absolute;
  left: 0;
  top: 0.5rem;
}

/* ============================================
   SECTION CONTACT
   ============================================ */
.contact-section {
  background: #000000;
  color: var(--color-white);
  padding: 4rem 2rem;
  text-align: center;
  margin-top: 4rem;
}

.section-title {
  font-size: 2.2rem;
  margin-bottom: 1rem;
  font-weight: 700;
}

.contact-section p {
  font-size: 1.2rem;
  max-width: 700px;
  margin: 0 auto 2rem;
  opacity: 0.95;
  line-height: 1.6;
}

.contact-button {
  display: inline-block;
  background: var(--color-white);
  color: var(--color-primary);
  padding: 1rem 2rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  margin-bottom: 1rem;
}

.contact-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.contact-note {
  font-size: 1rem;
  font-style: italic;
  opacity: 0.9;
  margin-top: 1.5rem;
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 968px) {
  .service-card {
    grid-template-columns: 1fr;
  }

  .service-image {
    min-height: 300px;
    order: -1;
  }

  .hero-title {
    font-size: 2.5rem;
  }

  .section-title {
    font-size: 2rem;
  }
}

@media (max-width: 600px) {
  .services-hero {
    padding: 80px 1rem 40px;
  }

  .hero-title {
    font-size: 2rem;
  }

  .hero-subtitle {
    font-size: 1.1rem;
  }

  .services-container {
    margin-top: -1rem;
    padding: 0 1rem;
  }

  .service-content {
    padding: 2rem 1.5rem;
  }

  .service-header {
    flex-direction: column;
    text-align: center;
    gap: 1rem;
  }

  .service-number {
    margin: 0 auto;
  }

  .service-title {
    font-size: 1.5rem;
  }

  .service-subtitle {
    font-size: 1rem;
  }

  .contact-section {
    padding: 3rem 1rem;
  }

  .section-title {
    font-size: 1.8rem;
  }

  .contact-button {
    padding: 0.875rem 1.5rem;
    font-size: 1rem;
  }
}


