/* -----------------------------------------------------
   RESET
----------------------------------------------------- */
@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&family=Work+Sans:wght@300;400;500;600;700;800&display=swap");

.gradient-background,
.main-header .main-menu ul ul.submenu {
    background-image: linear-gradient(to left, #0BC6FF, #0d80f3, #0BC6FF);
    background-position: right;
    background-size: 200%;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Poppins","Inter", Arial, sans-serif;
}

body {
    background: #ffffff;
    color: #222;
    line-height: 1.6;
}

/* Section spacing */
.section {
    padding: 70px 20px;
}

/* Title */
.section h2 {
    text-align: center;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 25px;
    font-family: "Work Sans", sans-serif;
    color: #555;
}

.section-subtitle {
    text-align: center;
    color: #555;
    margin-bottom: 40px;
}


/* -----------------------------------------------------
   HEADER
----------------------------------------------------- */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    background: white;
    border-bottom: 1px solid #eee;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.logo a {
    display: inline-block;
}
.logo img {
    height: 50px;
    display: block;
}

.mobile-menu-btn {
    font-size: 28px;
    cursor: pointer;
}

nav {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 80px;
    right: 20px;
    background: white;
    padding: 15px;
    border-radius: 12px;
    border: 1px solid #eee;
}

nav.open {
    display: flex;
}

nav a {
    padding: 10px 0;
    text-decoration: none;
    color: #222;
    font-weight: bold;
}

@media (min-width: 800px) {
    nav {
        position: static;
        display: flex !important;
        flex-direction: row;
        gap: 25px;
        background: none;
        border: none;
        padding: 0;
    }

    .mobile-menu-btn {
        display: none;
    }
}


/* -----------------------------------------------------
   HERO
----------------------------------------------------- */
.hero {
    position: relative;
    padding: 130px 20px;
    text-align: center;
    color: white;
    background: url("banniere-autocleanet-nettoyage-voiture.jpg") center/cover no-repeat;
    background-attachment: scroll;
}

.hero::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(24, 187, 216, 0.5);
    z-index: 0;
}

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

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 15px;
    text-transform: uppercase;
    font-family: "Poppins", sans-serif;
    text-shadow: 
        -1px 0 #000,
         1px 0 #000,
         0 -1px #000,
         0  1px #000;
}

.hero h2 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    text-transform: uppercase;
    font-family: "Poppins", sans-serif;
    text-shadow: 
        -1px 0 #000,
         1px 0 #000,
         0 -1px #000,
         0  1px #000;
}

.hero p {
    max-width: 900px;
    margin: 0.5rem auto 0;
    line-height: 1.50;
    font-family: "Poppins", sans-serif;
}

.hero-buttons {
    margin-top: 30px;
}

.cta {
    display: inline-block;
    background: #ffca28;
    padding: 12px 26px;
    border-radius: 30px;
    font-weight: bold;
    color: #222;
    text-decoration: none;
    text-transform: uppercase;
    margin: 6px;
}

.cta.secondary {
    background: rgb(230, 6, 81);
    color: #ffffff;
}



/* -----------------------------------------------------
   PRÉSENTATION (NOUVELLE SECTION)
----------------------------------------------------- */

.presentation {
    padding: 80px 20px;
    background: #ffffff;
}

.presentation-container {
    display: flex;
    align-items: center;
    gap: 40px;
    max-width: 1200px;
    margin: auto;
}

/* Image 1/3 */
.presentation-image {
    flex: 1;
}

.presentation-image img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    object-fit: cover;
}

/* Texte 2/3 */
.presentation-text {
    flex: 2;
}

.presentation-text p {
    font-size: 1.1rem;
    line-height: 1.65;
    margin-bottom: 18px;
    color: #444;
}

/* -----------------------------------------------------
   PRÉSENTATION – TITRE DE SECTION
----------------------------------------------------- */
#presentation h2 {
    text-align: center;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 25px;
    font-family: "Work Sans", sans-serif;
    color: #555;
}

#presentation .section-subtitle {
    text-align: center;
    font-size: 1.1rem;
    margin-bottom: 40px;
    color: #777;
}

.presentation-text strong {
    font-weight: 700;
    color: #000;
}

/* Responsive */
@media (max-width: 900px) {
    .presentation-container {
        flex-direction: column;
        text-align: center;
    }

    .presentation-text {
        text-align: left;
    }
}

@media (max-width: 600px) {
    .presentation-text h2 {
        font-size: 1.6rem;
    }

    .presentation-text p {
        font-size: 1rem;
    }
}



/* -----------------------------------------------------
   FORMULES – CARTES DE PRIX
----------------------------------------------------- */
#formules h2 {
    color: #555;
    text-align: center;
    text-transform: uppercase;
    font-family: "Work Sans", sans-serif;
}

.pricing-card-area {
    padding-top: 50px;
    padding-bottom: 50px;
    background: #ffffff;
}

.pricing-grid {
    display: grid;
    gap: 30px;
    max-width: 1400px;
    margin: 0 auto;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    padding: 0 16px;
}

.single-card {
    background: #ffffff;
    padding: 36px 24px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.06);
    transition: transform .28s ease, box-shadow .28s ease;
    display: flex;
    flex-direction: column;
    min-height: 320px;
}

.single-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 40px rgba(0,0,0,0.12);
}

.card-top {
    text-align: center;
    margin-bottom: 6px;
}

.card-top img {
    width: 60px;
    margin: 0 auto 14px;
    display: block;
}

.card-top h4 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.card-top p {
    color: #888;
    font-size: 0.95rem;
    margin-top: 6px;
}

.card-mid {
    text-align: center;
    margin: 16px 0;
}

.card-mid h4 {
    font-size: 2rem;
    font-weight: 700;
    margin: 0;
}

.card-bottom {
    margin-top: auto;
}

.card-bottom ul {
    list-style: none;
    margin-bottom: 18px;
    padding-left: 0;
}

.card-bottom ul li {
    margin-bottom: 10px;
    font-size: 0.97rem;
    color: #444;
}

.borders-btn {
    display: inline-block;
    border: 2px solid #1e88e5;
    color: #1e88e5;
    padding: 10px 22px;
    border-radius: 30px;
    font-weight: 700;
    text-decoration: none;
    transition: background .18s ease, color .18s ease, transform .18s ease;
}

.borders-btn:hover {
    background: #1e88e5;
    color: #fff;
    transform: translateY(-2px);
}



/* -----------------------------------------------------
   RATING ÉTOILES
----------------------------------------------------- */
.rate-result {
    display: flex;
    justify-content: center;
    gap: 6px;
    margin: 10px 0 12px;
    padding: 0;
    list-style: none;
}

.rate-result i {
    font-size: 1rem;
    color: #ffcc00;
}

.rate-result i.inactive {
    color: #dcdcdc;
}

@media (max-width: 480px) {
    .hero {
        padding: 80px 16px;
    }
    .hero h1 {
        font-size: 1.6rem;
    }
    .card-mid h4 {
        font-size: 1.6rem;
    }
    .single-card {
        padding: 22px;
    }
}



/* -----------------------------------------------------
   ATOUTS
----------------------------------------------------- */
#atouts {
    background: #f6f7f9;
}

.advantages {
    display: grid;
    gap: 25px;
    max-width: 100%;
    margin: auto;
    padding: 0 16px;
}

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

.advantage {
    padding: 10px;
}

.advantage h3 {
    margin-bottom: 6px;
}


/* -----------------------------------------------------
   AVIS
----------------------------------------------------- */
.reviews {
    display: grid;
    gap: 35px;
    max-width: 1400px;
    margin: auto;
    padding: 0 16px;
}

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

.review {
    text-align: left;
    padding: 10px;
}

.stars {
    color: #ffa726;
    font-size: 1.4rem;
    margin-bottom: 8px;
}



/* -----------------------------------------------------
   FOOTER
----------------------------------------------------- */
.footer {
  background-color: #222;
  color: #fff;
  padding: 30px 20px;
  font-family: "Poppins", sans-serif;
}

.footer-container {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.footer-column {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: left;
}

.footer-column h3,
.footer-column h4 {
  margin-bottom: 15px;
  font-family: "Poppins", sans-serif;
}

.footer-column p {
  font-size: 15px;
  line-height: 1.6;
}

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

.footer-column ul li {
  margin-bottom: 8px;
}

.footer-column a {
  color: #fff;
  text-decoration: none;
}

.footer-column a:hover {
  text-decoration: underline;
}

.footer-social a {
  display: inline-block;
  margin-right: 10px;
  font-size: 20px;
  color: #fff;
  transition: color 0.3s;
}

.footer-social a:hover {
  color: #00aced;
}

.footer-bottom {
  margin-top: 30px;
  text-align: center;
  font-size: 13px;
  border-top: 1px solid #444;
  padding-top: 15px;
}

@media (min-width: 768px) {
  .footer-container {
    flex-direction: row;
    justify-content: space-between;
  }

  .footer-column {
    flex: 0 1 calc(33.333% - 20px);
  }
}



/* -----------------------------------------------------
   FLOATING BUTTON
----------------------------------------------------- */
.floating-estimation {
    position: fixed;
    bottom: 22px;
    right: 22px;
    background: #ffca28;
    padding: 14px 20px;
    border-radius: 34px;
    color: #222;
    font-weight: bold;
    text-decoration: none;
    box-shadow: 0 4px 18px rgba(0,0,0,0.2);
    z-index: 2000;
}
