/* Services Page Styles - Visuelle et efficace */

/* Container responsive */
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1rem;
}

@media (min-width: 768px) {
  .container {
    padding: 0 1.5rem;
  }
}

/* Hero Services */
.services-hero {
  position: relative;
  height: 60vh;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0;
}

@media (min-width: 768px) {
  .services-hero {
    height: 70vh;
  }
}

.services-hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.services-hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.6);
}

.services-hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, transparent 0%, rgba(32,32,32,0.3) 50%, rgba(32,32,32,0.6) 100%);
  z-index: 2;
}

.services-hero-content {
  position: relative;
  z-index: 3;
  text-align: center;
  color: #ffffff;
}

.services-hero-marker {
  margin-bottom: 2rem;
}

.services-hero-marker span {
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  color: #202020;
  padding: 0.5rem 1.5rem;
  border-radius: 9999px;
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.1em;
}

.services-hero-title {
  font-size: clamp(3rem, 8vw, 7rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
  margin: 0 0 2rem 0;
}

.services-hero-anchors {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
}

.services-hero-anchor {
  padding: 0.5rem 1rem;
  border-radius: 9999px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  background: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.75rem;
  font-weight: 500;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  transition: all 0.3s ease;
}

.services-hero-anchor:hover {
  border-color: rgba(255, 255, 255, 0.6);
  background: rgba(255, 255, 255, 0.2);
  color: #ffffff;
}

/* Subnav sticky */
.services-subnav {
  position: sticky;
  top: 0;
  z-index: 30;
  background: rgba(32, 32, 32, 0.4);
  backdrop-filter: blur(12px);
  padding: 0.75rem 0;
}

.services-subnav-list {
  display: flex;
  gap: 0.5rem;
  overflow-x: auto;
  scrollbar-width: none;
  justify-content: center;
}

.services-subnav-list::-webkit-scrollbar {
  display: none;
}

.services-subnav-pill {
  padding: 0.5rem 1rem;
  border-radius: 9999px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: transparent;
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.875rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  cursor: pointer;
  transition: all 0.3s ease;
  flex-shrink: 0;
  white-space: nowrap;
}

.services-subnav-pill:hover {
  border-color: rgba(255, 255, 255, 0.4);
  color: #ffffff;
}

.services-subnav-pill.active,
.services-subnav-pill[data-active="true"] {
  background: #ffffff;
  color: #202020;
  border-color: #ffffff;
}

/* Index Grid - Mosaïque des services */
.services-index {
  padding: 3rem 0;
}

.services-index-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 1.5rem;
  grid-auto-rows: 12px;
  grid-auto-flow: dense;
}

.services-index-card {
  text-decoration: none;
  color: inherit;
}

.services-index-item {
  position: relative;
}

/* Tailles index services */
.services-size-paysage-l {
  grid-column: span 12;
  grid-row: span 20;
}

@media (min-width: 1024px) {
  .services-size-paysage-l {
    grid-column: span 8;
    grid-row: span 26;
  }
}

.services-size-portrait {
  grid-column: span 12;
  grid-row: span 30;
}

@media (min-width: 640px) {
  .services-size-portrait {
    grid-column: span 6;
  }
}

@media (min-width: 1024px) {
  .services-size-portrait {
    grid-column: span 4;
    grid-row: span 40;
  }
}

.services-size-paysage-m {
  grid-column: span 12;
  grid-row: span 18;
}

@media (min-width: 1024px) {
  .services-size-paysage-m {
    grid-column: span 6;
    grid-row: span 28;
  }
}

.services-size-carre {
  grid-column: span 12;
  grid-row: span 16;
}

@media (min-width: 640px) {
  .services-size-carre {
    grid-column: span 6;
  }
}

@media (min-width: 1024px) {
  .services-size-carre {
    grid-column: span 4;
    grid-row: span 24;
  }
}

.services-index-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 1.5rem;
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.services-index-card:hover .services-index-image {
  transform: scale(1.02);
}

.services-index-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(32,32,32,0.7));
  padding: 1.5rem;
  color: #ffffff;
  border-radius: 0 0 1.5rem 1.5rem;
}

.services-index-title {
  font-size: 1.5rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.5rem;
}

.services-index-teaser {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.8);
  margin: 0;
}

/* Section Service */
.service-section {
  padding: 4rem 0;
  scroll-margin-top: 100px; /* Compensation pour le header fixe */
}

/* Intro Z-layout */
.service-intro {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
  margin-bottom: 3rem;
}

@media (min-width: 768px) {
  .service-intro {
    grid-template-columns: 5fr 7fr;
  }
  
  .service-intro.reversed {
    grid-template-columns: 7fr 5fr;
  }
  
  .service-intro.reversed .service-intro-text {
    order: 2;
  }
  
  .service-intro.reversed .service-intro-image {
    order: 1;
  }
}

.service-intro-text {
  color: #ffffff;
}

.service-intro-title {
  font-size: 2rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 1rem;
}

@media (min-width: 768px) {
  .service-intro-title {
    font-size: 2.5rem;
  }
}

.service-intro-lead {
  font-size: 1.25rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 1rem;
}

.service-intro-description {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.6;
  margin: 0;
}

.service-intro-image {
  position: relative;
}

.service-intro-img {
  width: 100%;
  height: 360px;
  object-fit: cover;
  border-radius: 1.5rem;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

@media (min-width: 768px) {
  .service-intro-img {
    height: 460px;
  }
}

.service-intro-caption {
  position: absolute;
  left: 1rem;
  bottom: 1rem;
  background: rgba(32, 32, 32, 0.6);
  color: #ffffff;
  padding: 0.5rem 1rem;
  border-radius: 0.5rem;
  font-size: 0.75rem;
  font-weight: 500;
}

/* Packs */
.service-packs {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: 1fr;
  margin-bottom: 3rem;
}

@media (min-width: 768px) {
  .service-packs {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* Centrer les packs quand il y en a 2 (section famille) */
.service-section#famille .service-packs {
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

@media (min-width: 768px) {
  .service-section#famille .service-packs {
    grid-template-columns: repeat(2, 1fr);
    max-width: 900px;
  }
}

.service-pack {
  background: #ffffff;
  padding: 2rem;
  border-radius: 1.5rem;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-pack.featured {
  transform: scale(1.01);
  box-shadow: 0 32px 64px -12px rgba(0, 0, 0, 0.35);
  border: 1px solid rgba(32, 32, 32, 0.1);
}

.service-pack-name {
  font-size: 1.25rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #202020;
  margin: 0;
}

.service-pack-subtitle {
  font-size: 0.95rem;
  color: #6B7280;
  font-style: italic;
  margin: 0;
  margin-top: -0.5rem;
}

.service-pack-price {
  font-size: 1.125rem;
  color: #374151;
  margin: 0;
}

.service-pack-duration {
  font-size: 0.875rem;
  color: #6B7280;
  margin: 0;
}

.service-pack-includes {
  list-style: none;
  padding: 0;
  margin: 0;
}

.service-pack-includes li {
  padding: 0.25rem 0;
  color: #374151;
  font-size: 0.875rem;
  position: relative;
  padding-left: 1.5rem;
}

.service-pack-includes li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #10B981;
  font-weight: bold;
}

.service-pack-includes li.pack-includes-header {
  text-decoration: underline;
  font-weight: 600;
  margin-bottom: 0.5rem;
  list-style: none;
  padding-left: 0;
}

.service-pack-includes li.pack-includes-header::before {
  display: none;
}

.service-pack-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: #202020;
  color: #ffffff;
  padding: 0.75rem 1.5rem;
  border-radius: 9999px;
  text-decoration: none;
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  transition: all 0.3s ease;
  margin-top: auto;
}

.service-pack-btn:hover {
  background: #333333;
  transform: translateY(-0.125rem);
}

.service-pack-btn-dot {
  width: 6px;
  height: 6px;
  background: #ffffff;
  border-radius: 50%;
}

/* Icônes de fleurs pour les forfaits mariages */
.service-pack-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  overflow: hidden;
}

.service-pack-icon-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 8px;
}

/* Forfait vide */
.service-pack.pack-empty {
  min-height: 300px;
  justify-content: flex-end;
  background: linear-gradient(135deg, #fef3f2 0%, #ffe4e6 100%);
}

/* Section Reportage Vidéo */
.service-video-section {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin: 3rem 0;
  padding: 2rem;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 1.5rem;
  backdrop-filter: blur(10px);
}

@media (min-width: 768px) {
  .service-video-section {
    grid-template-columns: 1fr 1fr;
    padding: 3rem;
  }
}

.service-video-left {
  color: #ffffff;
}

.service-video-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  overflow: hidden;
}

.service-video-icon-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 10px;
}

.service-video-title {
  font-size: 1.5rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #ffffff;
  margin: 0 0 0.5rem 0;
}

.service-video-subtitle {
  font-size: 1rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.9);
  margin: 0 0 1rem 0;
}

.service-video-description {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.6;
  margin: 0;
}

.service-video-right {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.service-video-features {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.75rem;
}

.service-video-feature {
  padding: 0.75rem 1rem;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 0.5rem;
  color: #ffffff;
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.service-video-ctas {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

@media (min-width: 640px) {
  .service-video-ctas {
    flex-direction: row;
  }
}

.service-video-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  border-radius: 9999px;
  text-decoration: none;
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  transition: all 0.3s ease;
}

.service-video-btn.primary {
  background: #202020;
  color: #ffffff;
}

.service-video-btn.primary:hover {
  background: #333333;
  transform: translateY(-0.125rem);
}

.service-video-btn.secondary {
  background: rgba(255, 255, 255, 0.1);
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.service-video-btn.secondary:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-0.125rem);
}

/* Centrer les packs pour mariages (3 forfaits) */
.service-section#mariages .service-packs {
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

@media (min-width: 768px) {
  .service-section#mariages .service-packs {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* Process */
.service-process {
  display: grid;
  gap: 1rem;
  grid-template-columns: 1fr;
  margin-bottom: 3rem;
}

@media (min-width: 768px) {
  .service-process {
    grid-template-columns: repeat(4, 1fr);
  }
}

.service-process-step {
  background: #ffffff;
  padding: 1.5rem;
  border-radius: 1rem;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  text-align: center;
}

.service-process-icon {
  margin-bottom: 1rem;
}

.service-process-icon i {
  font-size: 2rem;
  color: #202020;
}

.service-process-title {
  font-size: 1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #202020;
  margin-bottom: 0.5rem;
}

.service-process-text {
  font-size: 0.875rem;
  color: #374151;
  line-height: 1.5;
  margin: 0;
}

/* Photo paysage full-width */
.service-fullwidth-image {
  margin: 3rem -1rem;
  position: relative;
}

@media (min-width: 768px) {
  .service-fullwidth-image {
    margin: 3rem -1.5rem;
  }
}

.service-fullwidth-img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  border-radius: 0;
}

@media (min-width: 768px) {
  .service-fullwidth-img {
    height: 420px;
  }
}

/* Gallery stripe */
.service-gallery {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 1.5rem;
  grid-auto-rows: 12px;
  grid-auto-flow: dense;
  margin-bottom: 3rem;
}

.service-gallery-large {
  grid-column: span 12;
  grid-row: span 20;
}

@media (min-width: 768px) {
  .service-gallery-large {
    grid-column: span 7;
    grid-row: span 24;
  }
}

.service-gallery-small {
  grid-column: span 12;
  grid-row: span 18;
}

@media (min-width: 768px) {
  .service-gallery-small {
    grid-column: span 5;
    grid-row: span 24;
  }
}

.service-gallery-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 1.5rem;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

/* Mini-FAQ */
.service-mini-faq {
  display: grid;
  gap: 1rem;
  grid-template-columns: 1fr;
  margin-bottom: 3rem;
}

@media (min-width: 768px) {
  .service-mini-faq {
    grid-template-columns: repeat(3, 1fr);
  }
}

.service-faq-item {
  background: #ffffff;
  border-radius: 1rem;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  overflow: hidden;
}

.service-faq-question {
  padding: 1.5rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-weight: 600;
  color: #202020;
  list-style: none;
  transition: all 0.3s ease;
}

.service-faq-question:hover {
  background: #F9FAFB;
}

.service-faq-question::-webkit-details-marker {
  display: none;
}

.service-faq-icon {
  transition: transform 0.3s ease;
  color: #6B7280;
}

.service-faq-answer {
  padding: 0 1.5rem 1.5rem;
}

.service-faq-answer p {
  color: #374151;
  line-height: 1.6;
  margin: 0;
  font-size: 0.875rem;
}

/* Mini-CTA local */
.service-mini-cta {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 2rem;
  border-radius: 1.5rem;
  text-align: center;
  margin-bottom: 2rem;
}

.service-mini-cta-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 1.5rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.service-mini-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: #ffffff;
  color: #202020;
  padding: 0.75rem 1.5rem;
  border-radius: 9999px;
  text-decoration: none;
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  transition: all 0.3s ease;
}

.service-mini-cta-btn:hover {
  background: #F3F4F6;
  transform: translateY(-0.125rem);
}

.service-mini-cta-dot {
  width: 6px;
  height: 6px;
  background: #202020;
  border-radius: 50%;
}

/* Why Us */
.services-why-us {
  padding: 4rem 0;
}

.services-why-us-card {
  background: #ffffff;
  padding: 3rem;
  border-radius: 1.5rem;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

@media (min-width: 768px) {
  .services-why-us-card {
    padding: 4rem;
  }
}

.services-why-us-title {
  font-size: 2rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #202020;
  text-align: center;
  margin-bottom: 3rem;
}

@media (min-width: 768px) {
  .services-why-us-title {
    font-size: 2.5rem;
  }
}

.services-why-us-grid {
  display: grid;
  gap: 2rem;
  grid-template-columns: 1fr;
  margin-bottom: 3rem;
}

@media (min-width: 640px) {
  .services-why-us-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .services-why-us-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.services-why-us-item {
  text-align: center;
}

.services-why-us-icon {
  margin-bottom: 1rem;
}

.services-why-us-icon i {
  font-size: 2.5rem;
  color: #202020;
}

.services-why-us-item-title {
  font-size: 1.125rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #202020;
  margin-bottom: 0.5rem;
}

.services-why-us-item-text {
  font-size: 0.875rem;
  color: #374151;
  margin: 0;
}

.services-why-us-stats {
  display: grid;
  gap: 2rem;
  grid-template-columns: repeat(3, 1fr);
  padding-top: 2rem;
  border-top: 1px solid #E5E7EB;
}

.services-why-us-stat {
  text-align: center;
}

.services-why-us-stat-number {
  display: block;
  font-size: 2rem;
  font-weight: 800;
  color: #202020;
}

.services-why-us-stat-label {
  font-size: 0.75rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #6B7280;
}

/* FAQ globale */
.services-faq {
  padding: 4rem 0;
}

.services-faq-title {
  font-size: 2rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #ffffff;
  text-align: center;
  margin-bottom: 3rem;
}

.services-faq-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: 1fr;
}

@media (min-width: 768px) {
  .services-faq-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.services-faq-item {
  background: #ffffff;
  border-radius: 1rem;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  overflow: hidden;
}

.services-faq-question {
  padding: 1.5rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-weight: 600;
  color: #202020;
  list-style: none;
  transition: all 0.3s ease;
}

.services-faq-question:hover {
  background: #F9FAFB;
}

.services-faq-question::-webkit-details-marker {
  display: none;
}

.services-faq-icon {
  transition: transform 0.3s ease;
  color: #6B7280;
}

.services-faq-answer {
  padding: 0 1.5rem 1.5rem;
}

.services-faq-answer p {
  color: #374151;
  line-height: 1.6;
  margin: 0;
}

/* Focus visible pour accessibilité */
.services-hero-anchor:focus-visible,
.services-subnav-pill:focus-visible,
.services-index-card:focus-visible,
.service-pack-btn:focus-visible,
.service-mini-cta-btn:focus-visible {
  outline: 2px solid rgba(255, 255, 255, 0.6);
  outline-offset: 2px;
}

/* Puces carrousel services - cachées par défaut (desktop) */
.service-packs-dots,
.service-process-dots {
  display: none;
}

/* Responsive Design */
@media (max-width: 768px) {
  /* Masquer le filtre "Tous" sur mobile */
  .services-subnav-pill.mobile-hide {
    display: none;
  }

  /* Ajuster les filtres pour qu'ils tiennent sur une ligne */
  .services-subnav-list {
    justify-content: space-between;
    gap: 0.25rem;
    padding: 0 0.5rem;
  }

  .services-subnav-pill {
    font-size: 0.75rem;
    padding: 0.4rem 0.75rem;
    flex: 1;
    max-width: calc(33.333% - 0.2rem);
    text-align: center;
  }

  .services-hero {
    height: 50vh;
  }

  .services-hero-marker {
    margin-bottom: 1rem;
  }

  .services-hero-title {
    font-size: clamp(2rem, 6vw, 4rem);
    margin: 0 0 1rem 0;
  }

  .services-hero-anchors {
    gap: 0.5rem;
  }

  .services-hero-anchor {
    font-size: 0.625rem;
    padding: 0.375rem 0.75rem;
  }

  /* Réduction des espacements entre sections */
  .service-section {
    padding: 2rem 0;
    scroll-margin-top: 80px;
  }

  .service-intro {
    margin-bottom: 2rem;
  }

  .service-intro-title {
    margin-bottom: 1rem;
  }

  .service-intro-lead {
    margin-bottom: 0.75rem;
  }

  .service-intro-description {
    margin-bottom: 1rem;
  }

  .service-video-section {
    margin: 2rem 0;
    padding: 1.5rem;
  }

  .service-process {
    margin-bottom: 1.5rem;
  }

  .service-mini-cta {
    margin-bottom: 1.5rem;
    padding: 1.5rem;
  }

  .service-mini-cta-title {
    margin-bottom: 1rem;
  }

  .services-faq-title,
  .services-why-us-title {
    font-size: 1.5rem;
    margin-bottom: 2rem;
  }

  .services-why-us {
    padding: 2rem 0;
  }

  .services-why-us-card {
    padding: 2rem 1.5rem;
  }

  .services-why-us-grid {
    margin-bottom: 2rem;
    gap: 1.5rem;
  }

  .services-why-us-icon {
    margin-bottom: 0.75rem;
  }

  .services-why-us-item-title {
    margin-bottom: 0.375rem;
  }

  .services-why-us-stats {
    padding-top: 1.5rem;
    gap: 1.5rem;
  }

  .services-index {
    padding: 2rem 0;
  }

  .services-faq {
    padding: 2rem 0;
  }

  .services-faq-title {
    margin-bottom: 1.5rem;
  }

  .services-faq-grid {
    gap: 0.75rem;
  }

  .services-faq-question {
    padding: 1rem 1.25rem;
  }

  .services-faq-answer {
    padding: 0 1.25rem 1rem;
  }

  /* CTA final - réduction des espacements */
  .about-cta {
    padding: 2rem 0 1rem 0;
    margin: 0;
  }

  .about-cta-card {
    padding: 2rem 1.5rem;
  }

  .about-cta-title {
    font-size: 1.75rem;
    margin-bottom: 1rem;
  }

  /* Packs - Carrousel horizontal mobile */
  .service-packs {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    gap: 0;
    padding: 0 1rem;
    scrollbar-width: none;
    margin-bottom: 1rem;
  }

  .service-packs::-webkit-scrollbar {
    display: none;
  }

  .service-pack {
    flex: 0 0 85%;
    scroll-snap-align: center;
    margin: 0 8px;
  }

  .service-pack:first-child {
    margin-left: 0;
  }

  .service-pack:last-child {
    margin-right: 0;
  }

  /* Centrage famille - reset max-width pour le carrousel */
  .service-section#famille .service-packs {
    max-width: none;
  }

  /* Puces indicatrices packs */
  .service-packs-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-bottom: 2rem;
  }

  .service-packs-dots .dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    border: none;
    padding: 0;
    cursor: pointer;
    transition: all 0.3s ease;
  }

  .service-packs-dots .dot.active {
    background: #ffffff;
    transform: scale(1.3);
  }

  /* Process steps - Carrousel horizontal mobile */
  .service-process {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    gap: 0;
    padding: 0 1rem;
    scrollbar-width: none;
    margin-bottom: 1rem;
  }

  .service-process::-webkit-scrollbar {
    display: none;
  }

  .service-process-step {
    flex: 0 0 80%;
    scroll-snap-align: center;
    margin: 0 8px;
  }

  .service-process-step:first-child {
    margin-left: 0;
  }

  .service-process-step:last-child {
    margin-right: 0;
  }

  /* Puces indicatrices process */
  .service-process-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-bottom: 2rem;
  }

  .service-process-dots .dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    border: none;
    padding: 0;
    cursor: pointer;
    transition: all 0.3s ease;
  }

  .service-process-dots .dot.active {
    background: #ffffff;
    transform: scale(1.3);
  }
}

/* Animations réduites */
@media (prefers-reduced-motion: reduce) {
  .services-index-image,
  .service-pack,
  .service-pack-btn,
  .service-mini-cta-btn,
  .services-subnav-pill,
  .services-hero-anchor {
    transition: none;
    transform: none;
    animation: none;
  }
}
