@charset "utf-8";

body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
	background: #bfd2eb;
}


/* Effet de scroll général */
.scroll-animation {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

/* Apparition progressive */
.fade-in {
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

/* Glissement depuis le bas */
.slide-in {
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 1s ease-out, transform 1s ease-out;
}

/* Quand l'élément devient visible */
.scroll-animation.visible, 
.fade-in.visible, 
.slide-in.visible {
    opacity: 1;
    transform: translateY(0);
}





.services-section {
    padding: 40px 20px;
    text-align: center;
    background-color: #7698cf;
}

.section-title {
    font-size: 2rem;
    color: #3f3d56;
    margin-bottom: 10px;
}

.section-description {
    color: #6c757d;
    margin-bottom: 40px;
}

.services-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

.service-card {
    background: #dde7f7;
    border-radius: 12px;
    padding: 20px;
    width: 300px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

/* .service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
} */

.service-icon img {
    width: 60px;
    height: 60px;
    margin-bottom: 15px;
}

.service-card h3 {
    font-size: 1.2rem;
    color: #df081f;
    margin-bottom: 10px;
}

.service-card p {
    color:#143967;
    margin-bottom: 20px;
}

.details-btn {
    background-color: #144080;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 8px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.details-btn:hover {
    background-color: #144080;
}

/* Responsive Design */
@media (max-width: 768px) {
    .services-container {
        flex-direction: column;
    }

    .service-card {
        width: 90%;
    }
}



/* Style de base pour la bannière numero de telephone */


.banner {background: #bfd2eb;
    display: flex;
    flex-wrap: wrap;
    justify-content:center;
    align-items: center;
   /* background-color: #0e273b; */ 
    color: #f7a71a;
    padding: 20px;margin-top: 50px;margin-bottom: 50px;
    text-align: center;
}

.banner p {
    flex: 1;
    font-size: 2rem;
    margin: 0;
}

.icon {
    font-size: 1.5rem;
    color: #3bbcf7;
}
.buttons {
    display: flex;
    gap: 15px;
}

/* Style des boutons */
.btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    text-decoration: none;
    font-size: 1rem;
    font-weight: bold;
    color: #f4b400;
    background-color:#2d2d2d;
    border-radius: 50px;
    padding: 10px 20px;
    transition: all 0.3s ease;
}

/* Animation hover */
.btn:hover {color: #fff;
    background-color:#f7a71a;
    transform: scale(1.05);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

/* Adaptabilité mobile */
@media (max-width: 768px) {
    .banner {
        flex-direction: column;
        text-align: center;
    }

    .buttons {flex-direction: column;
        justify-content: center;
        margin-top: 10px;
    }

    .btn {
        font-size:  1rem;
        padding: 10px 20px;
    }
}

@media (max-width: 480px) {
    .banner p {
        font-size: 1rem;
    }

    .btn {
        font-size:  1rem;
        padding: 10px 20px;
    }
}


/* PROSSESUR  */

.process-section {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
    background-color:#7698cf;
}

.process-left {
    flex: 1;
    max-width: 500px;
    margin-right: 20px;
}

.process-image {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.process-right {
    flex: 2;
    max-width: 700px;
    text-align: left;
}

.section-title {
    font-size: 2rem;
    color: #e0071d;
    margin-bottom: 10px;
}

.section-description {
    color: #3f3d56;
    margin-bottom: 30px;
    font-size: 1.1rem;
}

.steps-container {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.step-card {
    background: #f7ca17;
    border-radius: 12px;
    padding: 20px;
    width: 300px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;margin-bottom: 20px;
}

/*  .step-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
}*/

.step-icon img {
    width: 60px;
    height: 60px;
    margin-bottom: 15px;
}

.step-card h3 {
    font-size: 1.2rem;
    color: #e0071d;
    margin-bottom: 10px;
}

.step-card p {
    color: #2F2E3A;
    font-size: 0.95rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .process-section {
        flex-direction: column;
        padding: 20px;
    }

    .process-left {
        margin-right: 0;
        margin-bottom: 20px;
    }

    .steps-container {
        flex-direction: column;align-items: center;
    }
}

/* hero section */
.hero-section {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    padding: 40px;
    background-color:#bfd2eb;
}

.hero-content {
    flex: 1;
    max-width: 600px;
    margin-right: 20px;
}

.hero-content h1 {
    font-size: 2rem;
    color: #df081f;
    margin-bottom: 15px;
}

.hero-content p {
    color: #143967;
    margin-bottom: 30px;
    font-size: 1.1rem;
}

.features {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.feature-card {
    background: #f7ca17;
    border-radius: 12px;
    padding: 15px;
    width: 260px;
    text-align: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    
}



.icon {
    font-size: 2rem;
    margin-bottom: 10px;
    color: #000;
}

.feature-card h3 {
    font-size: 1.2rem;
    color: #df081f;
    margin-bottom: 10px;
}

.feature-card p {
    color: #143967;
    font-size: 0.95rem;
}

.hero-image {
    flex: 1;
    max-width: 600px;
    text-align: center;
}

.hero-image img {
    width: 100%;
    max-width: 400px;
    border-radius: 12px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease-in-out;
}

/*.hero-image img:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
}*/

/* Responsive Design */
@media (max-width: 768px) {
    .hero-section {
        flex-direction: column;
        text-align: center;
    }

    .hero-content {
        margin-right: 0;
        margin-bottom: 20px;
    }

    .features {
        justify-content: center;
    }

    .hero-image img {
        max-width: 100%;
    }
}




/*avis */
.reviews-section {
  padding: 40px 20px;
  background-color:#143967;
  text-align: center;
}

.reviews-section h2 {
  font-size: 24px;
  margin-bottom: 20px;
  color: #f7ca17;
}

.reviews-slider-container {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
  overflow: hidden;
}

.reviews-slider {
  display: flex;
  transition: transform 0.5s ease-in-out;
}

.review-slide {
  min-width: 100%;
  box-sizing: border-box;
  padding: 20px;
}

.review-card {
  background: white;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  padding: 20px;
  text-align: left;
}

.review-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}


.review-stars {
  height: 50px;
}


.review-name {
  font-weight: bold;
  color: #555;
}

.review-text {
  font-size: 14px;
  color: #666;
  margin: 10px 0;
}

.review-date {
  font-size: 12px;
  color: #aaa;
  text-align: right;
}

.slider-button {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0, 0, 0, 0.5);
  color: white;
  border: none;
  border-radius: 50%;
  padding: 10px;
  cursor: pointer;width: 35px;
}

.slider-button.prev {
  left: 20px;
}

.slider-button.next {
  right: 20px;
}




/* Section Zones Desservies */
.zones-desservies-section {
  padding: 40px 20px;
  background-color: #dde7f7;
  color: #333;
  text-align: center;
}

.zones-desservies-section h2 {
  font-size: 28px;
  color: #f4b400;
  margin-bottom: 20px;
}

.zones-desservies-section p {
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 30px;
}

.zone-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
  text-align: left;
}

.zone {
  background: #fff;
  padding: 20px;
  border: 1px solid #ddd;
  border-radius: 8px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.zone h3 {
  font-size: 20px;
  margin-bottom: 10px;
  color: #f4b400;
}

.zone p {
  font-size: 14px;
  line-height: 1.5;
}

.zone:hover {
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
  transform: translateY(-5px);
  transition: 0.3s ease-in-out;
}

/* Responsive Design */
@media (max-width: 768px) {
  .zones-desservies-section {
    text-align: center;
  }

  .zone-container {
    grid-template-columns: 1fr;
  }
}






/* maps */
.map-section {
    text-align: center;
    margin: 50px 0;
    padding: 20px;
    background-color: #dde7f7;
    border-radius: 8px;
}

.map-section .section-title {
    font-size: 1.8rem;
    margin-bottom: 10px;
}

.map-section .section-description {
    font-size: 1rem;
    color: #555;
    margin-bottom: 20px;
}

.map-container iframe {
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}





/* Footer styles */
.footer {
  background-color: #2d2d2d;
  color: #fff;
  padding: 40px 20px;
  font-size: 14px;
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 20px;
}

.footer-about,
.footer-contact,
.footer-links {
  flex: 1 1 300px;
  margin-bottom: 20px;
}

.footer-about h3,
.footer-contact h3,
.footer-links h3 {
  font-size: 18px;
  margin-bottom: 10px;
  color: #f4b400;
}

.footer-about p,
.footer-contact ul,
.footer-links ul {
  line-height: 1.6;
}

.footer-contact ul,
.footer-links ul {
  padding: 0;
  list-style: none;
}

.footer-contact ul li,
.footer-links ul li {
  margin-bottom: 8px;
}

.footer-contact ul li a,
.footer-links ul li a {
  color: #f4b400;
  text-decoration: none;
  transition: color 0.3s;
}

.footer-contact ul li a:hover,
.footer-links ul li a:hover {
  color: #fff;
}

.footer-bottom {
  text-align: center;
  margin-top: 20px;
  font-size: 12px;
  border-top: 1px solid #444;
  padding-top: 20px;
  color: #bbb;
}

/* Responsive Design */
@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
    align-items: center;
  }

  .footer-about,
  .footer-contact,
  .footer-links {
    text-align: center;
  }
}


