/* --- Hero réduit pour la page Nos Services --- */
.nos-services-page .hero { 
    position: relative; 
    height: 100vh; 
    display: flex; 
    flex-direction: column; 
    align-items: center; 
    justify-content: center; 
    color: #F6EDE7; 
    text-align: center; 
    overflow: visible; 
    padding: 0; 
    margin: 0;
    margin-bottom: -250px; 
    margin-top: -70.5px; 
    background: linear-gradient(rgba(0,0,0,0.35), rgba(0,0,0,0.35)), url(https://macom-digitale.com/wp-content/uploads/2025/09/bram-naus-n8Qb1ZAkK88-unsplash-scaled.jpg) center/cover no-repeat; 
}

/* H1 */
.nos-services-page .hero h1 { 
    font-family: 'Anton', sans-serif; 
    font-size: 6rem; 
    font-weight: 400; 
    text-transform: uppercase; 
    margin: 0; 
    line-height: 1; 
    color: #F6EDE7; 
}

/* Sous-titre / description */
.nos-services-page .hero p, 
.nos-services-page .hero .hero-subtitle { 
    color: #F6EDE7; 
    font-size: 1.5rem; 
    margin-top: 15px; 
    line-height: 1.3; 
}

/* Bouton */
.nos-services-page .hero .btn-custom { 
    background-color: #F6EDE7; 
    color: #393837; 
    border: 2px solid #F6EDE7; 
    border-radius: 25px; 
    padding: 0.8rem 2rem; 
    font-size: 1.1rem; 
    cursor: pointer; 
    transition: 0.3s; 
    display: inline-block; 
    text-decoration: none; 
    margin-top: 30px; 
}
.nos-services-page .hero .btn-custom:hover { 
    background-color: transparent; 
    color: #F6EDE7; 
    border-color: #F6EDE7; 
} 

/* Mouse Scroll */
.nos-services-page .mouse-scroll { 
    width: 30px; 
    height: 50px; 
    border: 2px solid #F6EDE7; 
    border-radius: 20px; 
    position: relative; 
    margin: 80px auto 300px; 
}
.nos-services-page .mouse-scroll::before { 
    content: ''; 
    position: absolute; 
    top: 3px; 
    left: 50%; 
    transform: translateX(-50%); 
    width: 6px; 
    height: 6px; 
    background-color: #F6EDE7; 
    border-radius: 50%; 
    animation: scrollAnim 2s infinite; 
}
@keyframes scrollAnim { 
    0% { transform: translate(-50%, 0); opacity: 1; } 
    50% { transform: translate(-50%, 10px); opacity: 0.5; } 
    100% { transform: translate(-50%, 0); opacity: 1; } 
}

/* ===========================
   Cartes Services
=========================== */

/* Grille des cartes centrée et rapprochée */
.services-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center; /* centre les cartes */
    gap: 20px; /* réduit l’espace entre les cartes */
    margin-top: -50px;
    margin-bottom: 50px;
}

/* Carte individuelle */
.service-card {
    background: #fff;
    border-radius: 15px;
    box-shadow: 0 6px 20px rgba(0,0,0,0.08);
    overflow: hidden;
    text-align: center;
    width: 280px; /* largeur fixe pour un rendu uniforme */
    padding: 20px;
}

.service-card a {
    color: inherit;
    text-decoration: none;
    display: block;
}

/* Image de la carte */
.service-thumb {
    width: 100%;
    overflow: hidden;
    margin-bottom: 15px;
}

.service-thumb img {
    display: block;
    width: 100%;
    height: auto;
    border-radius: 10px;
}

/* Contenu */
.service-card h2 {
    font-size: 1.4rem;
    margin: 15px 0 10px;
}

.service-card p {
    font-style: italic;
    color: #666;
    font-size: 0.95rem;
    margin: 0 0 15px;
    line-height: 1.5;
}

/* Page title */
.services-page h1 {
    text-align: center;
    margin-bottom: 40px;
    font-size: 2rem;
    color: #222;
}

/* Responsive */
@media (max-width: 768px) {
    .services-grid {
        gap: 15px;
    }
    .service-card {
        width: 220px;
    }
}
/* Fade-in pour les cartes */
/* Fade-in pour les cartes */
.service-card {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s ease-in-out;
}

.service-card.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Hover lift et zoom */
.service-card:hover {
    transform: translateY(-10px) scale(1.03);
    box-shadow: 0 20px 35px rgba(0,0,0,0.15);
}

.service-thumb img {
    transition: transform 0.3s ease;
}

.service-card:hover .service-thumb img {
    transform: scale(1.05);
}

/* ===== Responsive Mobile - Nos Services Page ===== */
@media screen and (max-width: 768px) {

  /* Hero réduit */
  .nos-services-page .hero {
    height: 60vh;                  /* réduit la hauteur du hero */
    margin-top: 0;                  /* supprime le décalage négatif */
    margin-bottom: -150px;          /* réduit l’espace négatif */
    padding: 0 10px;                /* padding latéral pour mobile */
    background-size: cover;         /* garde l’image centrée et adaptée */
  }

  /* Titre H1 */
  .nos-services-page .hero h1 {
    font-size: 2.5rem;              /* texte plus petit */
    line-height: 1.1;
  }

  /* Sous-titre / description */
  .nos-services-page .hero p,
  .nos-services-page .hero .hero-subtitle {
    font-size: 1rem;                /* texte plus lisible sur mobile */
    margin-top: 10px;
  }

  /* Bouton hero */
  .nos-services-page .hero .btn-custom {
    font-size: 1rem;
    padding: 0.6rem 1.5rem;
    margin-top: 20px;
  }

  /* Mouse scroll */
  .nos-services-page .mouse-scroll {
    width: 25px;
    height: 40px;
    margin: 50px auto 150px;        /* moins d’espace sur mobile */
    border-width: 2px;
  }

  .nos-services-page .mouse-scroll::before {
    width: 5px;
    height: 5px;
    top: 3px;
  }

  /* ===========================
     Cartes Services
  =========================== */
  
  /* Grille des cartes */
  .services-grid {
    flex-direction: column;          /* empile les cartes */
    gap: 15px;
    margin-top: 0;
    margin-bottom: 40px;
    align-items: center;             /* centre les cartes */
  }

  /* Carte individuelle */
  .service-card {
    width: 90%;                      /* quasi pleine largeur sur mobile */
    max-width: 300px;                /* limite la largeur pour confort visuel */
    padding: 15px;
  }

  /* Titre carte */
  .service-card h2 {
    font-size: 1.2rem;
  }

  /* Description carte */
  .service-card p {
    font-size: 0.85rem;
    margin-bottom: 10px;
  }

  /* Images */
  .service-thumb img {
    border-radius: 8px;
  }

  /* Hover lift et zoom désactivé sur mobile */
  .service-card:hover {
    transform: none;
    box-shadow: 0 6px 20px rgba(0,0,0,0.08);
  }

  .service-card:hover .service-thumb img {
    transform: none;
  }

  /* Page title */
  .services-page h1 {
    font-size: 1.8rem;
    margin-bottom: 30px;
  }
}
