/* 
* Styles pour le site comptable
* Palette de couleurs:
* - Fond: #F3F0FF (pâle sirenevey)
* - Accent: #00BFA6 (minta profond)
* - Accent secondaire: #FFB830 (jaune-miel)
* - Texte: #2E2E3A (graphite foncé)
*/

/* ===== RESET ET BASE ===== */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  font-family: 'Manrope', sans-serif;
  line-height: 1.6;
  color: #2E2E3A;
  background-color: #F3F0FF;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: #00BFA6;
  text-decoration: none;
  transition: all 0.3s ease;
}

a:hover {
  color: #FFB830;
}

ul, ol {
  list-style: none;
}

/* ===== CONTENEUR ===== */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ===== TYPOGRAPHIE ===== */
h1, h2, h3, h4, h5 {
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1rem;
}

h1 {
  font-size: 2.5rem;
}

h2 {
  font-size: 2rem;
  position: relative;
  margin-bottom: 2rem;
  text-align: center;
}

h2::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  width: 80px;
  height: 4px;
  background: linear-gradient(to right, #00BFA6, #FFB830);
  transform: translateX(-50%);
  border-radius: 2px;
}

h3 {
  font-size: 1.5rem;
}

p {
  margin-bottom: 1rem;
}

/* ===== BOUTONS ===== */
.btn {
  display: inline-block;
  padding: 12px 24px;
  border-radius: 30px;
  font-weight: 600;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to right, #00BFA6, #FFB830);
  z-index: -1;
  transition: all 0.4s ease;
}

.btn-primary {
  color: white;
}

.btn-primary::before {
  opacity: 1;
}

.btn-primary:hover::before {
  transform: scale(1.05);
}

.btn-secondary {
  color: #00BFA6;
  border: 2px solid #00BFA6;
  background: transparent;
}

.btn-secondary::before {
  opacity: 0;
}

.btn-secondary:hover {
  color: white;
}

.btn-secondary:hover::before {
  opacity: 1;
}

.btn-nav {
  padding: 8px 16px;
  background: linear-gradient(to right, #00BFA6, #FFB830);
  color: white;
}

.btn-cookie {
  padding: 8px 16px;
  background-color: #00BFA6;
  color: white;
  border-radius: 4px;
}

.btn-cookie:hover {
  background-color: #FFB830;
}

/* ===== HEADER ===== */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background-color: rgba(243, 240, 255, 0.95);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.header-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 80px;
}

.logo-svg {
  transition: transform 0.3s ease;
}

.logo a:hover .logo-svg {
  transform: scale(1.05);
}

.nav-toggle {
  display: none;
}

.nav-toggle-label {
  display: none;
  cursor: pointer;
}

.nav-toggle-label span {
  display: block;
  width: 25px;
  height: 3px;
  background-color: #2E2E3A;
  margin: 5px 0;
  transition: all 0.3s ease;
}

.nav-list {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.nav-list a {
  font-weight: 500;
  color: #2E2E3A;
  position: relative;
}

.nav-list a::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(to right, #00BFA6, #FFB830);
  transition: width 0.3s ease;
}

.nav-list a:hover::after {
  width: 100%;
}

/* ===== COOKIE BANNER ===== */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: rgba(46, 46, 58, 0.95);
  color: white;
  padding: 15px 0;
  z-index: 9999;
  display: none;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.cookie-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.cookie-content p {
  margin: 0;
  font-size: 0.9rem;
}

.cookie-content a {
  color: #FFB830;
  text-decoration: underline;
}

/* ===== MAIN CONTENT ===== */
.main-content {
  padding-top: 80px; /* Hauteur du header */
}

/* ===== HERO SECTION ===== */
.hero {
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.hero .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.hero-content {
  animation: fadeInUp 1s ease;
}

.hero-subtitle {
  font-size: 1.25rem;
  margin-bottom: 2rem;
  color: #00BFA6;
}

.hero-image {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
  transform: perspective(1000px) rotateY(-5deg);
  transition: transform 0.5s ease;
  animation: fadeInRight 1s ease;
}

.hero-image:hover {
  transform: perspective(1000px) rotateY(0);
}

.hero-image img {
  transition: transform 0.5s ease;
}

.hero-image:hover img {
  transform: scale(1.05);
}

/* ===== ABOUT SECTION ===== */
.about {
  padding: 80px 0;
  background-color: #fff;
}

.about-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.about-text {
  animation: fadeInLeft 1s ease;
}

.about-image {
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
  transition: transform 0.5s ease;
  animation: fadeInRight 1s ease;
}

.about-image:hover {
  transform: translateY(-10px);
}

/* ===== WHY US SECTION ===== */
.why-us {
  padding: 80px 0;
  background-color: #F3F0FF;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.feature-card {
  background-color: #fff;
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  text-align: center;
}

.feature-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.feature-icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #F3F0FF, #fff);
  border-radius: 50%;
  color: #00BFA6;
  transition: all 0.3s ease;
}

.feature-card:hover .feature-icon {
  color: #FFB830;
  transform: rotateY(180deg);
}

.feature-icon svg {
  width: 30px;
  height: 30px;
}

/* ===== SERVICES SECTION ===== */
.services {
  padding: 80px 0;
  background-color: #fff;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.service-card {
  background-color: #F3F0FF;
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  position: relative;
  text-align: center;
}

.service-card.featured {
  background-color: #fff;
  border: 2px solid #00BFA6;
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 191, 166, 0.15);
}

.service-card:not(.featured):hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.featured-label {
  position: absolute;
  top: -15px;
  right: 20px;
  background: linear-gradient(to right, #00BFA6, #FFB830);
  color: white;
  padding: 5px 15px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
}

.price {
  font-size: 1.5rem;
  font-weight: 700;
  color: #00BFA6;
  margin: 15px 0;
}

.service-features {
  margin: 20px 0;
  text-align: left;
}

.service-features li {
  margin-bottom: 10px;
  padding-left: 25px;
  position: relative;
}

.service-features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #00BFA6;
  font-weight: bold;
}

/* ===== TESTIMONIALS SECTION ===== */
.testimonials {
  padding: 80px 0;
  background-color: #F3F0FF;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.testimonial-card {
  background-color: #fff;
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  position: relative;
}

.testimonial-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.quote {
  font-style: italic;
  margin-bottom: 20px;
  position: relative;
  padding-left: 30px;
}

.quote::before {
  content: '"';
  position: absolute;
  left: 0;
  top: -15px;
  font-size: 3rem;
  color: #00BFA6;
  opacity: 0.3;
  font-family: serif;
}

.author {
  display: flex;
  flex-direction: column;
}

.author-name {
  font-weight: 600;
}

.author-company {
  font-size: 0.9rem;
  color: #777;
}

.testimonial-image {
  margin-top: 15px;
  border-radius: 8px;
  overflow: hidden;
  max-width: 120px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.testimonial-image img {
  width: 100%;
  height: auto;
  transition: all 0.3s ease;
}

.testimonial-card:hover .testimonial-image {
  transform: scale(1.05);
}

/* ===== FAQ SECTION ===== */
.faq {
  padding: 80px 0;
  background-color: #fff;
}

.accordion {
  margin-top: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.accordion-item {
  margin-bottom: 15px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.accordion-toggle {
  position: absolute;
  opacity: 0;
  z-index: -1;
}

.accordion-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  background-color: #F3F0FF;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.accordion-header:hover {
  background-color: #e7e2ff;
}

.accordion-icon {
  width: 20px;
  height: 20px;
  position: relative;
}

.accordion-icon::before,
.accordion-icon::after {
  content: '';
  position: absolute;
  background-color: #00BFA6;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: all 0.3s ease;
}

.accordion-icon::before {
  width: 2px;
  height: 12px;
}

.accordion-icon::after {
  width: 12px;
  height: 2px;
}

.accordion-toggle:checked ~ .accordion-header .accordion-icon::before {
  transform: translate(-50%, -50%) rotate(90deg);
  opacity: 0;
}

.accordion-content {
  max-height: 0;
  padding: 0 20px;
  background-color: white;
  transition: all 0.3s ease;
  overflow: hidden;
}

.accordion-toggle:checked ~ .accordion-content {
  max-height: 500px;
  padding: 20px;
}

/* ===== CONTACT FORM ===== */
.contact-form {
  padding: 80px 0;
  background-color: #F3F0FF;
}

.vertical-form {
  max-width: 500px;
  margin: 40px auto 0;
  background-color: #fff;
  padding: 40px;
  border-radius: 10px;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

/* ===== FORM AND INPUTS ===== */
.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 500;
}

.form-group input,
.form-group select {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid #ddd;
  border-radius: 6px;
  font-family: 'Manrope', sans-serif;
  transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus {
  border-color: #00BFA6;
  outline: none;
}

/* Custom checkbox styling */
.checkbox-group {
  display: flex;
  align-items: flex-start;
  margin-bottom: 15px;
}

.checkbox-container {
  display: flex;
  align-items: flex-start;
  position: relative;
  cursor: pointer;
}

.checkbox-container input[type="checkbox"] {
  position: absolute;
  opacity: 0;
}

.checkbox-container label {
  position: relative;
  padding-left: 30px;
  cursor: pointer;
}

/* Custom checkbox */
.checkbox-container label::before {
  content: '';
  position: absolute;
  left: 0;
  top: 3px;
  width: 20px;
  height: 20px;
  border: 2px solid #00BFA6;
  border-radius: 4px;
  background-color: white;
  transition: all 0.3s ease;
}

/* Checkmark */
.checkbox-container label::after {
  content: '';
  position: absolute;
  left: 7px;
  top: 7px;
  width: 6px;
  height: 12px;
  border: solid white;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
  opacity: 0;
  transition: all 0.2s ease;
}

/* When the checkbox is checked */
.checkbox-container input[type="checkbox"]:checked ~ label::before {
  background-color: #00BFA6;
  border-color: #00BFA6;
}

.checkbox-container input[type="checkbox"]:checked ~ label::after {
  opacity: 1;
}

/* Hover effect */
.checkbox-container label:hover::before {
  border-color: #FFB830;
}

.checkbox-container input[type="checkbox"]:focus ~ label::before {
  box-shadow: 0 0 0 2px rgba(0, 191, 166, 0.3);
}

/* ===== CONTACT INFO ===== */
.contact-info {
  padding: 80px 0;
  background-color: #fff;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-top: 40px;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 15px;
}

/* Common styles for all contact icons */
.contact-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

.contact-icon svg {
  width: 18px;
  height: 18px;
  min-width: 18px;
  min-height: 18px;
  transition: all 0.3s ease;
}

/* Main contact section specific styles */
.contact-info .contact-icon {
  background-color: #F3F0FF;
  color: #00BFA6;
}

.contact-info .contact-item:hover .contact-icon {
  transform: translateY(-3px);
  background-color: #00BFA6;
  color: white;
  box-shadow: 0 6px 12px rgba(0, 191, 166, 0.3);
}

.contact-info .contact-item:hover .contact-icon svg {
  transform: scale(1.1);
}

/* Footer contact section specific styles */
.contact-list .contact-icon {
  background-color: #F3F0FF;
  color: #00BFA6;
  box-shadow: 0 4px 10px rgba(0, 191, 166, 0.2);
}

.contact-list li:hover .contact-icon {
  background-color: #00BFA6;
  color: white;
  transform: translateY(-3px);
  box-shadow: 0 6px 12px rgba(0, 191, 166, 0.3);
}

.contact-list li:hover .contact-icon svg {
  transform: scale(1.1);
}

.contact-text h3 {
  margin-bottom: 5px;
}

.contact-map {
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

/* ===== FOOTER ===== */
.site-footer {
  background-color: #F3F0FF;
  color: #2E2E3A;
  padding: 40px 0 30px;
}

/* Footer Content */
.footer-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: nowrap;
  padding-bottom: 30px;
  gap: 40px;
}

/* Logo Section */
.footer-logo {
  flex: 0 0 auto;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.footer-logo a {
  font-size: 2.6rem;
  font-weight: 700;
  color: #00BFA6;
  text-decoration: none;
  line-height: 1.2;
}

.footer-tagline {
  font-size: 1rem;
  color: #2E2E3A;
  margin-top: 5px;
}

/* Contact Section */
.footer-contact {
  display: flex;
  align-items: center;
  gap: 40px;
  flex: 1 1 auto;
  justify-content: center;
  flex-wrap: nowrap;
  overflow-x: auto;
  padding: 15px 0;
  white-space: nowrap;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 12px;
  flex: 0 0 auto;
}

.contact-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background-color: #F3F0FF;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #00BFA6;
  box-shadow: 0 4px 10px rgba(0, 191, 166, 0.2);
  transition: all 0.3s ease;
  flex-shrink: 0;
}

.contact-item:hover .contact-icon {
  transform: translateY(-3px);
  background-color: #00BFA6;
  color: white;
  box-shadow: 0 6px 12px rgba(0, 191, 166, 0.3);
}

.contact-icon svg {
  width: 22px;
  height: 22px;
  min-width: 22px;
  min-height: 22px;
  transition: all 0.3s ease;
}

.contact-item:hover .contact-icon svg {
  transform: scale(1.1);
}

.contact-item span {
  font-size: 1rem;
}

/* Policy Links */
.footer-policy {
  display: flex;
  gap: 25px;
  flex: 0 0 auto;
  flex-wrap: wrap;
  justify-content: center;
}

.footer-policy a {
  color: #2E2E3A;
  text-decoration: none;
  font-size: 1rem;
  transition: all 0.3s ease;
  white-space: nowrap;
  padding: 8px 0;
}

.footer-policy a:hover {
  color: #00BFA6;
}

/* Social Icons */
.social-icons {
  display: flex;
  gap: 20px;
  flex: 0 0 auto;
}

.social-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background-color: #F3F0FF;
  border: 1px solid #00BFA6;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #00BFA6;
  transition: all 0.3s ease;
}

.social-icon:hover {
  background-color: #00BFA6;
  color: white;
  transform: translateY(-3px);
  box-shadow: 0 6px 12px rgba(0, 191, 166, 0.2);
}

.social-icon svg {
  width: 24px;
  height: 24px;
}

/* Footer Extended Contact */
.footer-extended-contact {
  display: flex;
  justify-content: space-between;
  gap: 40px;
  padding: 40px 0;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.contact-section {
  flex: 1;
}

.contact-section h3 {
  color: #00BFA6;
  font-size: 1.3rem;
  margin-bottom: 20px;
}

/* Office Locations */
.office-locations {
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
}

.office {
  flex: 1;
  min-width: 200px;
  background-color: #fff;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.office:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.office h4 {
  color: #00BFA6;
  margin-bottom: 10px;
  font-size: 1.1rem;
}

.office p {
  margin-bottom: 8px;
  font-size: 0.95rem;
  color: #2E2E3A;
}

/* Opening Hours */
.opening-hours {
  background-color: #fff;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  margin-bottom: 20px;
}

.opening-hours p {
  margin-bottom: 10px;
  font-size: 0.95rem;
  display: flex;
  justify-content: space-between;
  color: #2E2E3A;
}

.opening-hours span {
  font-weight: 600;
  color: #00BFA6;
}

/* Contact CTA */
.contact-cta {
  background-color: #fff;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  text-align: center;
}

.contact-cta p {
  margin-bottom: 15px;
  font-size: 1rem;
  color: #2E2E3A;
}

.contact-cta .btn {
  display: inline-block;
  padding: 10px 20px;
}

/* Footer Services */
.footer-services {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  padding: 30px 0;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  margin-bottom: 20px;
}

.service-item {
  flex: 1;
  padding: 20px;
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.service-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.service-item h4 {
  color: #00BFA6;
  margin-bottom: 10px;
  font-size: 1.2rem;
}

.service-item p {
  color: #2E2E3A;
  font-size: 0.95rem;
  line-height: 1.5;
}

/* Footer Bottom */
.footer-bottom {
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  padding-top: 25px;
  text-align: center;
  color: #2E2E3A;
  font-size: 1rem;
}

/* Responsive Footer */
@media screen and (max-width: 1200px) {
  .footer-content {
    flex-wrap: wrap;
  }
  
  .footer-logo {
    width: 100%;
    text-align: center;
    margin-bottom: 20px;
    align-items: center;
  }
  
  .footer-contact {
    justify-content: center;
    margin: 0 auto;
  }
  
  .footer-policy {
    justify-content: center;
    margin: 20px auto 0;
  }
  
  .footer-services {
    flex-direction: column;
    gap: 20px;
  }
  
  .footer-extended-contact {
    flex-direction: column;
    gap: 30px;
  }
  
  .office-locations {
    justify-content: center;
  }
  
  .office {
    flex: 0 0 calc(50% - 15px);
  }
}

@media screen and (max-width: 768px) {
  .footer-content {
    flex-direction: column;
    gap: 30px;
  }
  
  .footer-contact {
    flex-wrap: wrap;
    justify-content: center;
    gap: 25px;
  }
  
  .footer-policy {
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
  }
  
  .social-icons {
    margin-top: 10px;
  }
  
  .footer-services {
    padding: 25px 0;
  }
  
  .footer-extended-contact {
    padding: 30px 0;
  }
  
  .office {
    flex: 0 0 100%;
  }
}

/* ===== ANIMATIONS ===== */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* ===== RESPONSIVE ===== */
@media screen and (max-width: 1024px) {
  h1 {
    font-size: 2.2rem;
  }
  
  h2 {
    font-size: 1.8rem;
  }
  
  .hero .container,
  .about-content,
  .contact-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }
  
  .hero-content,
  .about-text {
    order: 1;
  }
  
  .hero-image,
  .about-image {
    order: 0;
    max-width: 80%;
    margin: 0 auto;
  }
  
  .service-features {
    text-align: left;
  }
  
  .footer-about {
    grid-column: span 1;
  }
}

@media screen and (max-width: 768px) {
  .header-wrapper {
    height: 70px;
  }
  
  .nav-toggle-label {
    display: block;
    z-index: 1001;
  }
  
  .main-nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    height: 100vh;
    background-color: #F3F0FF;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: right 0.3s ease;
    box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
  }
  
  .nav-toggle:checked ~ .main-nav {
    right: 0;
  }
  
  .nav-toggle:checked ~ .nav-toggle-label span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }
  
  .nav-toggle:checked ~ .nav-toggle-label span:nth-child(2) {
    opacity: 0;
  }
  
  .nav-toggle:checked ~ .nav-toggle-label span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
  }
  
  .nav-list {
    flex-direction: column;
    gap: 2rem;
  }
  
  .feature-card,
  .service-card,
  .testimonial-card {
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
  }
  
  .vertical-form {
    padding: 30px;
  }
  
  .cookie-content {
    flex-direction: column;
    gap: 15px;
    text-align: center;
  }
}

@media screen and (max-width: 480px) {
  h1 {
    font-size: 1.8rem;
  }
  
  h2 {
    font-size: 1.5rem;
  }
  
  h3 {
    font-size: 1.3rem;
  }
  
  .hero,
  .about,
  .why-us,
  .services,
  .testimonials,
  .faq,
  .contact-form,
  .contact-info {
    padding: 60px 0;
  }
  
  .vertical-form {
    padding: 20px;
  }
  
  .hero-image,
  .about-image {
    max-width: 100%;
  }
} 

/* Ajout du style pour le texte du logo */
.logo-text {
    font-size: 28px;
    font-weight: 700;
    color: #00BFA6;
    letter-spacing: 1px;
    text-transform: lowercase;
} 

/* Style pour l'image dans la section "Pourquoi nous choisir" */
.why-us-image {
    margin-top: 40px;
    text-align: center;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.why-us-image img {
    width: 100%;
    max-width: 800px;
    height: auto;
    display: block;
    margin: 0 auto;
} 

/* Style pour les images de témoignage */
.testimonial-image {
    margin-top: 15px;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid #00BFA6;
}

.testimonial-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
} 

/* ===== NEW FOOTER ===== */
.new-footer {
  background-color: #F8F9FD;
  color: #2E2E3A;
  font-size: 1rem;
}

.footer-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 40px;
}

.footer-column {
  flex: 1;
  min-width: 200px;
}

/* Footer Top Section */
.footer-top {
  padding: 60px 0 40px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

/* Footer About */
.footer-about {
  flex: 1.5;
}

.footer-logo {
  font-size: 2.5rem;
  font-weight: 700;
  color: #00BFA6;
  margin-bottom: 20px;
}

.footer-description {
  color: #2E2E3A;
  line-height: 1.6;
  margin-bottom: 25px;
  max-width: 400px;
}

.footer-social {
  display: flex;
  gap: 15px;
}

.footer-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: #fff;
  color: #00BFA6;
  border: 1px solid rgba(0, 191, 166, 0.3);
  transition: all 0.3s ease;
}

.footer-social a:hover {
  background-color: #00BFA6;
  color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 6px 12px rgba(0, 191, 166, 0.2);
}

/* Footer Links */
.footer-column h3 {
  color: #00BFA6;
  font-size: 1.2rem;
  margin-bottom: 25px;
  position: relative;
  font-weight: 600;
}

.footer-column h3::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 40px;
  height: 3px;
  background-color: #00BFA6;
  border-radius: 2px;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a {
  color: #2E2E3A;
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-block;
  position: relative;
}

.footer-links a::before {
  content: '';
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 0;
  height: 2px;
  background-color: #00BFA6;
  transition: width 0.3s ease;
}

.footer-links a:hover {
  color: #00BFA6;
  transform: translateX(5px);
}

.footer-links a:hover::before {
  width: 100%;
}

/* Footer Contact */
.footer-contact-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-contact-list li {
  display: flex;
  align-items: flex-start;
  margin-bottom: 20px;
  gap: 15px;
}

.footer-contact-list .contact-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #00BFA6;
  box-shadow: 0 4px 10px rgba(0, 191, 166, 0.15);
  flex-shrink: 0;
}

.footer-contact-list p {
  margin: 0 0 5px;
  color: #2E2E3A;
}

.footer-contact-list p strong {
  color: #00BFA6;
  font-weight: 600;
}

/* Footer Bottom Section */
.footer-bottom {
  padding: 25px 0;
  background-color: #F8F9FD;
}

.footer-legal {
  flex: 1;
}

.footer-legal p {
  margin: 0;
  font-size: 0.9rem;
}

.footer-legal-links {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.footer-legal-links a {
  color: #2E2E3A;
  text-decoration: none;
  font-size: 0.9rem;
  transition: all 0.3s ease;
}

.footer-legal-links a:hover {
  color: #00BFA6;
}

/* Responsive Footer */
@media screen and (max-width: 992px) {
  .footer-about {
    flex: 100%;
  }
  
  .footer-column {
    flex: 1 1 calc(50% - 20px);
  }
  
  .footer-description {
    max-width: 100%;
  }
}

@media screen and (max-width: 768px) {
  .footer-top {
    padding: 40px 0 30px;
  }
  
  .footer-row {
    flex-direction: column;
    gap: 30px;
  }
  
  .footer-column {
    flex: 100%;
    min-width: 100%;
  }
  
  .footer-bottom .footer-row {
    flex-direction: column;
    text-align: center;
    gap: 15px;
  }
  
  .footer-legal-links {
    justify-content: center;
  }
} 