/* Styles pour la page Qui sommes-nous */

body.about-page {
  background: white;
  opacity: 0;
  animation: pageFadeIn 1s ease-out 0.2s forwards;
}

@keyframes pageFadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

/* Notre Histoire - Style Moderne et Épuré */
.our-story {
  padding: 15rem 0 4rem;
  background: white;
  opacity: 0;
  animation: pageFadeIn 1s ease-out forwards;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.our-story::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: 
    radial-gradient(circle at 10% 20%, rgba(2, 110, 167, 0.03) 0%, transparent 50%),
    radial-gradient(circle at 90% 80%, rgba(2, 110, 167, 0.02) 0%, transparent 50%);
  pointer-events: none;
}

.our-story::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(2, 110, 167, 0.1), transparent);
}

.story-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.story-text {
  opacity: 0;
  animation: fadeInUp 0.8s ease-out 0.2s forwards;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.story-logo {
  width: 180px;
  height: auto;
  margin-bottom: 1.5rem;
  opacity: 0;
  animation: fadeIn 0.8s ease-out 0.4s forwards;
  display: block;
}

.our-story h2 {
  font-size: 1.5rem;
  color: #1C2A33;
  margin-bottom: 1.5rem;
  font-weight: 700;
  text-align: left;
  letter-spacing: 0;
  text-transform: none;
  position: relative;
  display: block;
  padding: 0;
  font-family: 'Montserrat', sans-serif;
}

.our-story h2::before {
  content: '';
  position: absolute;
  left: 0;
  bottom: -10px;
  width: 100px;
  height: 2px;
  background: #026ea7;
  border-radius: 2px;
}

.story-subtitle {
  font-size: 1.15rem;
  color: #026ea7;
  font-weight: 600;
  font-style: italic;
  margin-bottom: 2rem;
  padding-left: 0;
  border-left: none;
  opacity: 1;
  animation: fadeIn 0.8s ease-out 0.6s backwards;
}

.story-text p {
  font-size: 1.05rem;
  line-height: 1.8;
  color: #4a4a4a;
  margin-bottom: 1.5rem;
  padding-left: 1.5rem;
  border-left: 3px solid #e8f4f8;
  opacity: 0;
  animation: fadeInLeft 0.6s ease-out forwards;
  transition: all 0.3s ease;
}

.story-text p:hover {
  border-left-color: #026ea7;
  transform: translateX(5px);
}

.story-text p:nth-of-type(1) {
  animation-delay: 0.4s;
}

.story-text p:nth-of-type(2) {
  animation-delay: 0.6s;
}

.story-text p:nth-of-type(3) {
  animation-delay: 0.8s;
}

@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-20px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.story-text p strong {
  color: #026ea7;
  font-weight: 700;
}

.story-image {
  width: 350px;
  height: 350px;
  margin: 0 auto;
  position: relative;
  opacity: 0;
  animation: fadeInScale 0.8s ease-out 0.4s forwards;
}

@keyframes fadeInScale {
  from {
    opacity: 0;
    transform: scale(0.95);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

.story-image::before {
  content: '';
  position: absolute;
  top: -20px;
  left: -20px;
  right: -20px;
  bottom: -20px;
  background: linear-gradient(135deg, rgba(2, 110, 167, 0.1) 0%, rgba(3, 115, 171, 0.05) 100%);
  border-radius: 50%;
  z-index: -1;
}

.story-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  display: block;
  border-radius: 50%;
  border: 8px solid #ffffff;
  box-shadow: 
    0 10px 40px rgba(0, 0, 0, 0.08),
    0 2px 8px rgba(0, 0, 0, 0.06);
  transition: all 0.4s ease;
  background: white;
  padding: 10px;
}

.story-image:hover img {
  transform: scale(1.02);
  box-shadow: 
    0 15px 50px rgba(0, 0, 0, 0.12),
    0 5px 15px rgba(2, 110, 167, 0.1);
}

.story-manager-name {
  text-align: center;
  font-size: 1.3rem;
  font-weight: 700;
  color: #1a1a1a;
  margin-top: 2rem;
  letter-spacing: 0.5px;
  position: relative;
  opacity: 0;
  animation: fadeIn 0.6s ease-out 1s forwards;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.story-manager-name::before {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 2px;
  background: #026ea7;
}

/* Nos Valeurs */
.our-values {
  padding: 0;
  background: white;
  margin-top: 0;
  overflow: hidden;
  width: 100vw;
  margin-left: calc(-50vw + 50%);
}

.our-values .container {
  max-width: 100vw;
  margin: 0;
  padding: 0;
  width: 100%;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
  max-width: 100vw;
  margin: 0;
  width: 100vw;
  padding: 0;
  border: 0;
}

.value-card {
  background: #000;
  padding: 0;
  border-radius: 0;
  text-align: left;
  box-shadow: none;
  border: none;
  transition: all 0.3s ease;
  opacity: 0;
  transform: translateY(50px) scale(0.9);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  min-height: 50vh;
  height: 50vh;
  position: relative;
  width: 100%;
  margin: 0;
}

.value-card.animate {
  animation: cardPopIn 0.3s ease-out forwards;
}

.value-card.animate:nth-child(1) {
  animation-delay: 0s;
}

.value-card.animate:nth-child(2) {
  animation-delay: 0.05s;
}

.value-card.animate:nth-child(3) {
  animation-delay: 0.1s;
}

.value-card.animate:nth-child(4) {
  animation-delay: 0.15s;
}

@keyframes cardPopIn {
  from {
    opacity: 0;
    transform: translateY(50px) scale(0.9);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.value-card:hover {
  transform: translateY(-10px) scale(1.05);
  box-shadow: none;
}

.value-icon {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 0;
  overflow: hidden;
  z-index: 1;
}

.value-icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 1;
  display: block;
}

.value-card-content {
  padding: 2rem 2.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  z-index: 2;
}

.value-card h3 {
  display: none;
}

.value-card p {
  display: none;
}

/* Pourquoi nous choisir */
.why-choose-us {
  padding: 5rem 2rem;
  background: white;
  margin-top: -2rem;
}

.why-choose-us h2 {
  font-size: 1.5rem;
  color: #1C2A33;
  text-align: center;
  margin-bottom: 3rem;
  font-weight: 700;
  position: relative;
  padding: 0;
  letter-spacing: 0;
  text-transform: none;
  display: inline-block;
  width: 100%;
  font-family: 'Montserrat', sans-serif;
}

.why-choose-us h2::before {
  content: '';
  position: absolute;
  left: 50%;
  bottom: -10px;
  transform: translateX(-50%);
  width: 100px;
  height: 2px;
  background: #026ea7;
  border-radius: 2px;
}

.reasons-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
  max-width: 1200px;
  margin: 0 auto;
}

.reason-item {
  position: relative;
  padding: 2rem;
  background: linear-gradient(135deg, #f8fbff 0%, #ffffff 100%);
  border-radius: 15px;
  box-shadow: 0 8px 25px rgba(2, 110, 167, 0.1);
  border: 1px solid #e6f4fb;
  transition: all 0.3s ease;
  opacity: 0;
  transform: translateX(-50px);
}

.reason-item.animate {
  animation: reasonSlideIn 0.6s ease-out forwards;
}

.reason-item.animate:nth-child(1) {
  animation-delay: 0.1s;
}

.reason-item.animate:nth-child(2) {
  animation-delay: 0.2s;
}

.reason-item.animate:nth-child(3) {
  animation-delay: 0.3s;
}

.reason-item.animate:nth-child(4) {
  animation-delay: 0.4s;
}

.reason-item.animate:nth-child(5) {
  animation-delay: 0.5s;
}

.reason-item.animate:nth-child(6) {
  animation-delay: 0.6s;
}

@keyframes reasonSlideIn {
  from {
    opacity: 0;
    transform: translateX(-50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.reason-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 35px rgba(2, 110, 167, 0.2);
}

.reason-number {
  font-size: 3rem;
  font-weight: 900;
  color: rgba(2, 110, 167, 0.1);
  position: absolute;
  top: 1rem;
  right: 1.5rem;
  line-height: 1;
}

.reason-item h3 {
  font-size: 1.3rem;
  color: #026ea7;
  margin-bottom: 1rem;
  font-weight: 700;
  position: relative;
  z-index: 1;
}

.reason-item p {
  font-size: 0.95rem;
  line-height: 1.6;
  color: #555;
}

/* Avis Google Business dans Pourquoi nous choisir */
.google-rating-section {
  margin-top: 0.5rem;
  margin-bottom: 1.5rem;
  text-align: center;
}

.google-rating-box {
  display: inline-block;
  background: linear-gradient(135deg, #f8fbff 0%, #ffffff 100%);
  padding: 0.4rem 0.8rem;
  border-radius: 8px;
  border: 2px solid #e6f4fb;
  box-shadow: 0 4px 15px rgba(2, 110, 167, 0.08);
}

.google-rating-box .stars {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.1rem;
  margin-bottom: 0.2rem;
}

.google-rating-box .star {
  font-size: 0.9rem;
  color: #026ea7;
  animation: starPop 0.5s ease-out backwards;
}

.google-rating-box .star:nth-child(1) {
  animation-delay: 0.1s;
}

.google-rating-box .star:nth-child(2) {
  animation-delay: 0.2s;
}

.google-rating-box .star:nth-child(3) {
  animation-delay: 0.3s;
}

.google-rating-box .star:nth-child(4) {
  animation-delay: 0.4s;
}

.google-rating-box .star:nth-child(5) {
  animation-delay: 0.5s;
}

@keyframes starPop {
  0% {
    transform: scale(0) rotate(-180deg);
    opacity: 0;
  }
  50% {
    transform: scale(1.2) rotate(0deg);
  }
  100% {
    transform: scale(1) rotate(0deg);
    opacity: 1;
  }
}

.google-rating-box .rating-text {
  font-size: 0.65rem;
  font-weight: 600;
  color: #026ea7;
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.15rem;
}

.google-rating-box .rating-logo {
  width: 12px;
  height: 12px;
  filter: brightness(0) saturate(100%) invert(35%) sepia(95%) saturate(1000%) hue-rotate(170deg) brightness(95%) contrast(101%);
}

/* Section FAQ */
.faq-section {
  padding: 4rem 2rem;
  background: white;
  margin-top: 0;
}

.faq-section h2 {
  font-size: 1.5rem;
  color: #1C2A33;
  text-align: center;
  margin-bottom: 3rem;
  font-weight: 700;
  opacity: 1;
  padding: 0;
  position: relative;
  letter-spacing: 0;
  text-transform: none;
  display: inline-block;
  width: 100%;
  font-family: 'Montserrat', sans-serif;
}

.faq-section h2::before {
  content: '';
  position: absolute;
  left: 50%;
  bottom: -10px;
  transform: translateX(-50%);
  width: 100px;
  height: 2px;
  background: #026ea7;
  border-radius: 2px;
}

.faq-container {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.faq-item {
  background: linear-gradient(135deg, #f8fbff 0%, #ffffff 100%);
  border-radius: 12px;
  border: 1px solid #e6f4fb;
  overflow: hidden;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(2, 110, 167, 0.08);
}

.faq-item:hover {
  box-shadow: 0 6px 20px rgba(2, 110, 167, 0.12);
}

.faq-question {
  padding: 1.2rem 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  user-select: none;
  transition: all 0.3s ease;
  background: white;
}

.faq-question:hover {
  background: #f8fbff;
}

.faq-question span:first-child {
  font-size: 1.05rem;
  font-weight: 700;
  color: #026ea7;
  flex: 1;
  padding-right: 1rem;
}

.faq-icon {
  font-size: 1.5rem;
  font-weight: 300;
  color: #026ea7;
  transition: transform 0.3s ease;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(2, 110, 167, 0.1);
  border-radius: 50%;
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
  background: #026ea7;
  color: white;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
  background: white;
}

.faq-item.active .faq-answer {
  max-height: 500px;
  padding: 0 1.5rem 1.5rem 1.5rem;
}

.faq-answer p {
  font-size: 0.95rem;
  line-height: 1.7;
  color: #555;
  margin: 0;
  padding-top: 0.5rem;
}

/* Section Processus - Bannière vidéo */
.processus-section-page {
  padding: 0;
  background: white;
  margin: 0;
  width: 100%;
  max-width: 100vw;
}

.processus-section-page .container {
  max-width: 100vw;
  width: 100%;
  margin: 0;
  padding: 0;
}

.processus-video-banner {
  width: 100%;
  max-width: 100vw;
  margin: 0;
  padding: 0;
  overflow: hidden;
  background: #000;
}

.processus-video-banner video {
  width: 100%;
  max-width: 100vw;
  height: 300px;
  display: block;
  object-fit: cover;
  background: #000;
}


.processus-section-page {
  margin-bottom: 5rem;
}

/* Section Notre Expertise */
.notre-expertise-section {
  padding: 5rem 2rem;
  background: white;
}

.expertise-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  max-width: 1200px;
  margin: 0 auto;
  align-items: start;
}

.expertise-text-box {
  background: linear-gradient(135deg, #f8fbff 0%, #ffffff 100%);
  padding: 2.5rem;
  border-radius: 15px;
  border: 2px solid #e6f4fb;
  box-shadow: 0 8px 25px rgba(2, 110, 167, 0.1);
  position: relative;
  opacity: 0;
  transform: translateX(-100px);
  transition: all 0.8s ease-out;
}

.expertise-text-box.animate {
  opacity: 1;
  transform: translateX(0);
}

.expertise-intro {
  font-size: 1rem;
  line-height: 1.8;
  color: #333;
  margin-bottom: 1.5rem;
  text-align: left;
}

.expertise-description {
  font-size: 1rem;
  line-height: 1.8;
  color: #333;
  margin-bottom: 2rem;
  text-align: left;
}

.expertise-intro strong,
.expertise-description strong,
.expertise-highlight strong {
  color: #026ea7;
  font-weight: 700;
}

.expertise-image-left {
  width: 100%;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
  margin-top: 1.5rem;
}

.expertise-image-left img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.expertise-image-left:hover img {
  transform: scale(1.05);
}

.expertise-right {
  opacity: 0;
  transform: translateX(100px);
  transition: all 0.8s ease-out;
}

.expertise-right.animate {
  opacity: 1;
  transform: translateX(0);
}

.expertise-right h2 {
  font-size: 2.2rem;
  color: #1C2A33;
  margin-bottom: 1.5rem;
  font-weight: 800;
  text-align: left;
  line-height: 1.3;
}

.expertise-highlight {
  font-size: 1rem;
  line-height: 1.8;
  color: #333;
  margin-bottom: 2rem;
  text-align: left;
}

.expertise-image-right {
  width: 100%;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
  margin-top: 1.5rem;
}

.expertise-image-right img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.expertise-image-right:hover img {
  transform: scale(1.05);
}

/* Modale des partenaires */
.partners-modal {
  display: none;
  position: fixed;
  z-index: 10000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  animation: fadeIn 0.3s ease-out;
}

.partners-modal.active {
  display: flex;
  align-items: center;
  justify-content: center;
}

.partners-modal-content {
  background: white;
  padding: 2.5rem;
  border-radius: 20px;
  max-width: 900px;
  width: 90%;
  max-height: 80vh;
  overflow-y: auto;
  position: relative;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  animation: slideDown 0.4s ease-out;
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-50px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.partners-modal-close {
  position: absolute;
  top: 15px;
  right: 20px;
  font-size: 32px;
  font-weight: 300;
  color: #026ea7;
  cursor: pointer;
  transition: all 0.3s ease;
  line-height: 1;
}

.partners-modal-close:hover {
  color: #025580;
  transform: rotate(90deg);
}

.partners-modal-content h3 {
  font-size: 2rem;
  color: #026ea7;
  margin-bottom: 2rem;
  text-align: center;
  font-weight: 800;
}

.partners-modal-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.partner-modal-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 1.5rem;
  background: linear-gradient(135deg, #f8fbff 0%, #ffffff 100%);
  border-radius: 15px;
  border: 2px solid #e6f4fb;
  transition: all 0.3s ease;
  text-decoration: none;
  cursor: pointer;
}

.partner-modal-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(2, 110, 167, 0.2);
  border-color: #026ea7;
}

.partner-modal-item img {
  width: 120px;
  height: 80px;
  object-fit: contain;
  margin-bottom: 1rem;
  filter: grayscale(20%);
  transition: filter 0.3s ease;
}

.partner-modal-item:hover img {
  filter: grayscale(0%);
}

.partner-modal-item span {
  font-size: 1rem;
  font-weight: 700;
  color: #026ea7;
  text-align: center;
}

/* Masquer la section partenaires sur desktop */
.why-choose-us + .partners-section {
  display: none;
}

/* Styles pour la page Contact */
.contact-page {
  background: white;
}

.contact-hero {
  padding: 8rem 2rem 4rem;
  background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('path/to/your/contact-hero-image.jpg') no-repeat center center/cover;
  color: white;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.contact-hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(2, 110, 167, 0.7);
  z-index: 0;
}

.contact-hero-content {
  position: relative;
  z-index: 1;
}

.contact-hero h1 {
  font-size: 3rem;
  margin-bottom: 1rem;
  font-weight: 800;
  letter-spacing: 0.5px;
}

.contact-hero p {
  font-size: 1.2rem;
  line-height: 1.8;
  max-width: 800px;
  margin: 0 auto;
}

.contact-form-section {
  padding: 5rem 2rem;
  background: #f8fbff;
}

.contact-form-container {
  max-width: 1000px;
  margin: 0 auto;
  background: white;
  padding: 3rem;
  border-radius: 15px;
  box-shadow: 0 10px 40px rgba(2, 110, 167, 0.1);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.contact-info {
  background: linear-gradient(135deg, #026ea7 0%, #0373ab 100%);
  color: white;
  padding: 3rem;
  border-radius: 10px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.contact-info h2 {
  font-size: 1.8rem;
  margin-bottom: 2rem;
  font-weight: 700;
  position: relative;
  padding-bottom: 1rem;
  font-family: 'Montserrat', sans-serif;
}

.contact-info h2::after {
  content: 'DEMANDER UN DEVIS';
  position: absolute;
  left: 0;
  bottom: 0;
  font-size: 0.8rem;
  font-weight: 500;
  color: white;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.contact-info p {
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.contact-info-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.contact-info-item i {
  font-size: 1.5rem;
  color: white;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
}

.contact-info-item span {
  font-size: 1rem;
  font-weight: 500;
}

.contact-social-links {
  display: flex;
  gap: 1.5rem;
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.contact-social-links a {
  color: white;
  font-size: 1.5rem;
  transition: color 0.3s ease;
}

.contact-social-links a:hover {
  color: #026ea7;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.contact-form input,
.contact-form textarea {
  padding: 1rem;
  border: 1px solid #ddd;
  border-radius: 8px;
  font-size: 1rem;
  font-family: 'Montserrat', sans-serif;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: #026ea7;
  box-shadow: 0 0 0 3px rgba(2, 110, 167, 0.2);
}

.contact-form textarea {
  min-height: 150px;
  resize: vertical;
}

.contact-form button {
  background: #026ea7;
  color: white;
  padding: 1.2rem 2rem;
  border: none;
  border-radius: 8px;
  font-size: 1.1rem;
  font-weight: 700;
  cursor: pointer;
  transition: background-color 0.3s ease, transform 0.3s ease;
  align-self: flex-start;
  margin-top: 1rem;
}

.contact-form button:hover {
  background: #0373ab;
  transform: translateY(-2px);
}

/* Styles pour le Footer */
footer {
  background: #1C2A33;
  color: #a0a0a0;
  padding: 4rem 2rem 6rem;
  font-size: 0.9rem;
  position: relative;
  border-top: 3px solid #026ea7;
}

footer .container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 3rem;
}

footer h3 {
  color: white;
  font-size: 1.2rem;
  margin-bottom: 1.5rem;
  font-weight: 700;
  letter-spacing: 0.5px;
}

footer a {
  color: #a0a0a0;
  transition: color 0.3s ease;
}

footer a:hover {
  color: white;
}

.footer-logo {
  margin-bottom: 1.5rem;
}

.footer-logo img {
  width: 150px;
  height: auto;
}

.footer-contact p {
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.7rem;
}

.footer-contact i {
  color: #026ea7;
  font-size: 1.1rem;
}

.footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 1rem;
}

.footer-social-icons {
  display: flex;
  gap: 1rem;
}

.footer-social-icons a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 35px;
  height: 35px;
  border-radius: 50%;
  transition: background-color 0.3s ease, color 0.3s ease;
  font-size: 1.2rem;
}

.footer-social-icons a.facebook {
  background-color: white;
  color: #026ea7;
}

.footer-social-icons a.instagram {
  background-color: white;
  color: #026ea7;
}

.footer-social-icons a.facebook:hover {
  background-color: #026ea7;
  color: white;
}

.footer-social-icons a.instagram:hover {
  background-color: #026ea7;
  color: white;
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  margin-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.footer-bottom span {
  color: #a0a0a0;
}

.footer-legal-links {
  display: flex;
  gap: 1.5rem;
}

.footer-legal-links a {
  color: #a0a0a0;
}

.footer-legal-links a:hover {
  color: white;
}

/* Styles pour la page d'accueil */
.hero-section {
  position: relative;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
  overflow: hidden;
}

.hero-section video {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  z-index: 0;
  transform: translate(-50%, -50%);
  filter: brightness(60%);
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 900px;
  padding: 0 2rem;
}

.hero-content h1 {
  font-size: 3.5rem;
  font-weight: 800;
  margin-bottom: 1rem;
  line-height: 1.2;
  letter-spacing: 0.5px;
}

.hero-content p {
  font-size: 1.3rem;
  font-weight: 400;
  line-height: 1.7;
  margin-bottom: 2rem;
}

.hero-buttons a {
  display: inline-block;
  background: #026ea7;
  color: white;
  padding: 1rem 2.5rem;
  border-radius: 50px;
  font-size: 1.1rem;
  font-weight: 700;
  margin: 0 0.5rem;
  transition: background-color 0.3s ease, transform 0.3s ease;
  text-decoration: none;
}

.hero-buttons a:hover {
  background: #0373ab;
  transform: translateY(-3px);
}

.hero-buttons a.secondary {
  background: transparent;
  border: 2px solid white;
}

.hero-buttons a.secondary:hover {
  background: white;
  color: #1C2A33;
}

/* Styles for the main content area */
.main-content {
  padding-top: 70px;
}

/* Animation for page transitions */
.page-enter-active,
.page-leave-active {
  transition: opacity 0.5s ease-out;
}

.page-enter-from,
.page-leave-to {
  opacity: 0;
}

/* Styles for scroll animations */
.scroll-reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.scroll-reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Specific styles for the banner */
.info-banner {
  background: linear-gradient(135deg, #026ea7 0%, #0373ab 100%);
  color: white;
  padding: 2rem 1rem;
  text-align: center;
  box-shadow: 0 4px 15px rgba(2, 110, 167, 0.2);
  margin-top: 4rem;
  margin-bottom: 4rem;
}

.info-banner h2 {
  font-size: 1.8rem;
  margin-bottom: 1rem;
  font-weight: 700;
}

.info-banner p {
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.info-banner a {
  display: inline-block;
  background: white;
  color: #026ea7;
  padding: 0.8rem 1.8rem;
  border-radius: 50px;
  font-size: 1rem;
  font-weight: 700;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.info-banner a:hover {
  background: #e6f4fb;
  color: #0373ab;
}

/* Bouton "Accepter" */
.cc-nb-okagree,
.cc-cp-foot-save {
  background-color: #0373ab !important;
  border-color: #0373ab !important;
  color: white !important;
}

.cc-nb-okagree:hover,
.cc-cp-foot-save:hover {
  background-color: #025a8a !important;
  border-color: #025a8a !important;
}

/* Bouton "Refuser" */
.cc-nb-reject,
.cc-cp-foot-bypr {
  background-color: transparent !important;
  border: 2px solid #0373ab !important;
  color: #0373ab !important;
}

.cc-nb-reject:hover,
.cc-cp-foot-bypr:hover {
  background-color: #0373ab !important;
  color: white !important;
}

/* Bouton "Personnaliser" / "Gérer les préférences" */
.cc-nb-changep {
  color: #0373ab !important;
  text-decoration: underline;
}

.cc-nb-changep:hover {
  color: #025a8a !important;
}

/* ========================================
   RESPONSIVE - TABLETTES
======================================== */

@media (max-width: 1024px) {
  .expertise-content {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .expertise-right h2 {
    font-size: 1.8rem;
    text-align: center;
  }

  .expertise-highlight {
    text-align: left;
  }

  .our-values {
    padding: 5rem 0;
  }

  .our-values .container {
    padding: 0 1.5rem;
  }

  .values-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    width: 100%;
    padding: 0;
  }

  .value-card {
    min-height: 280px;
  }

  .value-icon {
    border-radius: 15px;
  }

  .value-card-content {
    padding: 2.5rem 2rem;
  }

  .value-card h3 {
    text-align: center;
  }

  .value-card p {
    text-align: center;
  }

  .reasons-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .story-content {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .story-text h2 {
    font-size: 2.5rem;
  }

  .story-text h2::after {
    width: 60px;
    height: 3px;
  }

  .story-image {
    width: 350px;
    height: 350px;
  }

  .story-image::before {
    top: -15px;
    left: -15px;
    right: -15px;
    bottom: -15px;
  }
}

/* ========================================
   RESPONSIVE - MOBILE (768px et moins)
======================================== */

@media (max-width: 768px) {
  /* Notre Histoire - Mobile */
  .our-story {
    padding: 8rem 1rem 3rem !important;
  }

  .story-content {
    grid-template-columns: 1fr !important;
    gap: 2.5rem !important;
    padding: 0 !important;
  }

  .story-text {
    order: 1;
  }

  .story-logo {
    width: 140px !important;
    margin: 0 auto 1.5rem !important;
    display: block !important;
  }

  .our-story h2 {
    font-size: 1.6rem !important;
    text-align: center !important;
    margin-bottom: 1.5rem !important;
  }

  .our-story h2::before {
    left: 50% !important;
    transform: translateX(-50%) !important;
    width: 80px !important;
  }

  .story-subtitle {
    font-size: 1.05rem !important;
    text-align: center !important;
    margin-bottom: 2rem !important;
    padding: 0 1rem !important;
  }

  .story-text p {
    font-size: 0.95rem !important;
    padding-left: 1rem !important;
    margin-bottom: 1.5rem !important;
    text-align: left !important;
  }

  .story-image {
    width: 260px !important;
    height: 260px !important;
    margin: 2rem auto 1rem !important;
    order: 2;
  }

  .story-image::before {
    top: -12px !important;
    left: -12px !important;
    right: -12px !important;
    bottom: -12px !important;
  }

  .story-image img {
    border: 6px solid #ffffff !important;
  }

  .story-manager-name {
    font-size: 1.15rem !important;
    text-align: center !important;
    margin-top: 1rem !important;
    order: 3;
  }

  .story-quote {
    font-size: 0.9rem !important;
    padding: 0 1.5rem !important;
    text-align: center !important;
    margin-top: 1rem !important;
    order: 4;
  }

  /* Nos Valeurs - Mobile */
  .our-values {
    padding: 0 !important;
    margin-top: 0 !important;
  }

  .our-values .container {
    padding: 0 !important;
    margin: 0 !important;
    max-width: 100% !important;
  }

  .values-grid {
    grid-template-columns: 1fr !important;
    gap: 0.5rem !important;
    width: 100% !important;
    padding: 0 !important;
    margin: 0 !important;
  }

  .value-card {
    min-height: 30vh !important;
    height: 30vh !important;
    margin: 0 !important;
    width: 100% !important;
  }

  .value-card h3 {
    display: none !important;
  }

  .value-card p {
    display: none !important;
  }

  .value-card-content {
    padding: 0 !important;
  }

  /* Pourquoi nous choisir - Mobile */
  .why-choose-us {
    padding: 3rem 1rem !important;
    margin-top: 1.5rem !important;
  }

  .why-choose-us h2 {
    font-size: 1.6rem !important;
    text-align: center !important;
    margin-bottom: 2.5rem !important;
  }

  .why-choose-us h2::before {
    left: 50% !important;
    transform: translateX(-50%) !important;
    width: 80px !important;
  }

  .google-rating-section {
    margin: 0 auto 2rem !important;
    text-align: center !important;
  }

  .google-rating-box {
    padding: 0.6rem 1.2rem !important;
  }

  .google-rating-box .star {
    font-size: 1.1rem !important;
  }

  .google-rating-box .rating-text {
    font-size: 0.75rem !important;
  }

  .google-rating-box .rating-logo {
    width: 15px !important;
    height: 15px !important;
  }

  .reasons-grid {
    grid-template-columns: 1fr !important;
    gap: 1.5rem !important;
    padding: 0 !important;
  }

  .reason-item {
    padding: 1.8rem 1.5rem !important;
    margin: 0 !important;
  }

  .reason-number {
    font-size: 2.8rem !important;
    top: 1rem !important;
    right: 1.2rem !important;
  }

  .reason-item h3 {
    font-size: 1.15rem !important;
    margin-bottom: 0.8rem !important;
    padding-right: 3rem !important;
  }

  .reason-item p {
    font-size: 0.92rem !important;
    line-height: 1.65 !important;
  }

  /* Afficher la section partenaires sur mobile */
  .why-choose-us + .partners-section {
    display: block !important;
    padding: 1rem 0 3rem !important;
    margin-top: 0 !important;
  }

  .why-choose-us + .partners-section .container {
    padding: 0 !important;
  }

  .why-choose-us + .partners-section .section-title-small {
    font-size: 1.4rem !important;
    margin-bottom: 2rem !important;
    text-align: center !important;
  }

  /* FAQ - Mobile */
  .faq-section {
    padding: 3rem 1rem 5rem !important;
  }

  .faq-section h2 {
    font-size: 1.6rem !important;
    margin-bottom: 2.5rem !important;
  }

  .faq-question {
    padding: 1rem 1.2rem !important;
  }

  .faq-question span:first-child {
    font-size: 0.98rem !important;
  }

  .faq-answer p {
    font-size: 0.9rem !important;
  }

  /* Processus - Mobile */
  .processus-section-page {
    padding: 0 !important;
    margin-bottom: 3rem !important;
  }

  .processus-video-banner video {
    min-height: 300px !important;
  }

  /* Expertise - Mobile */
  .notre-expertise-section {
    padding: 3rem 1rem !important;
  }

  .expertise-content {
    grid-template-columns: 1fr !important;
    gap: 2.5rem !important;
  }

  .expertise-text-box {
    padding: 1.8rem 1.3rem !important;
  }

  .expertise-right h2 {
    font-size: 1.6rem !important;
    text-align: center !important;
  }

  .expertise-intro,
  .expertise-description,
  .expertise-highlight {
    font-size: 0.95rem !important;
  }

  .expertise-image-left img,
  .expertise-image-right img {
    height: 250px !important;
  }

  /* Modale partenaires - Mobile */
  .partners-modal-content {
    padding: 2rem 1.3rem !important;
    width: 95% !important;
  }

  .partners-modal-content h3 {
    font-size: 1.5rem !important;
    margin-bottom: 1.5rem !important;
  }

  .partners-modal-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 1rem !important;
  }

  .partner-modal-item {
    padding: 1rem !important;
  }

  .partner-modal-item img {
    width: 80px !important;
    height: 60px !important;
  }

  .partner-modal-item span {
    font-size: 0.9rem !important;
  }

  /* Contact - Mobile */
  .contact-hero {
    padding: 6rem 1rem 3rem !important;
  }

  .contact-hero h1 {
    font-size: 2.2rem !important;
  }

  .contact-hero p {
    font-size: 1.05rem !important;
  }

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

  .contact-form-container {
    grid-template-columns: 1fr !important;
    padding: 2rem 1.5rem !important;
    gap: 2.5rem !important;
  }

  .contact-info {
    padding: 2rem !important;
  }

  .contact-info h2 {
    font-size: 1.5rem !important;
  }

  .contact-form button {
    align-self: stretch !important;
  }

  /* Footer - Mobile */
  footer {
    padding: 3rem 1rem 4rem !important;
  }

  footer .container {
    grid-template-columns: 1fr !important;
    gap: 2.5rem !important;
    text-align: center !important;
  }

  .footer-logo {
    margin-bottom: 1.5rem !important;
  }

  .footer-logo img {
    width: 130px !important;
    margin: 0 auto !important;
  }

  .footer-contact p {
    justify-content: center !important;
  }

  .footer-social-icons {
    justify-content: center !important;
  }

  .footer-bottom {
    flex-direction: column !important;
    gap: 1rem !important;
    padding-bottom: 2rem !important;
  }

  .footer-legal-links {
    flex-direction: column !important;
    gap: 0.8rem !important;
  }

  /* Hero Section - Mobile */
  .hero-section {
    height: 70vh !important;
  }

  .hero-content h1 {
    font-size: 2.5rem !important;
  }

  .hero-content p {
    font-size: 1.1rem !important;
  }

  .hero-buttons a {
    display: block !important;
    margin: 1rem auto !important;
    width: 85% !important;
  }

  /* Info Banner - Mobile */
  .info-banner {
    margin-top: 3rem !important;
    margin-bottom: 3rem !important;
    padding: 1.8rem 1rem !important;
  }

  .info-banner h2 {
    font-size: 1.5rem !important;
  }

  .info-banner p {
    font-size: 0.95rem !important;
  }
}

/* ========================================
   RESPONSIVE - TRÈS PETITS ÉCRANS
======================================== */

@media (max-width: 480px) {
  .partners-modal-grid {
    grid-template-columns: 1fr !important;
  }

  .our-story {
    padding: 7rem 0.8rem 2.5rem !important;
  }

  .story-image {
    width: 220px !important;
    height: 220px !important;
  }

  .why-choose-us {
    padding: 2.5rem 0.8rem !important;
  }

  .reason-item {
    padding: 1.5rem 1.2rem !important;
  }
}