* {
  margin: 0;
  padding: 0;
  font-family: Arial, sans-serif;
  box-sizing: border-box;
}

body {
  background: #fff;
  color: #1f2937;
  line-height: 1.6;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

.container {
  max-width: 1500px;
  margin: auto;
  padding: 0 20px;
}

.header {
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  background: rgba(255,255,255,0.95);
  border-bottom: 1px solid #eee;
  z-index: 1000;
}

.main {
  padding-top: 120px;
}

.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 0;
}

.logo {
  font-weight: bold;
}

.btn-tarif{
background:#2563eb;
color:white;
padding:5px 10px;
border-radius:8px;
text-decoration:none;
font-weight:bold;
display:inline-block;
}

.btn-tarif:hover{
background:#1e40af;
}

.nav-btn {
  background: white;
  border: 10px solid transparent;
  font-weight: bold;
  cursor: pointer;
  font-size: 18px;
}

.link {
  background: rgb(0, 0, 0);
  color: white;
  border: 10px solid transparent;
  border-radius: 10px;
  cursor: pointer;
  font-size: 18px;
}

.hero {
  padding: 120px 0 60px;
  text-align: center;
}

.title {
  font-size: 40px;
  margin-bottom: 20px;
}

.hero-img {
  width: 100%;
  max-width: 700px;
  border-radius: 12px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.15);
  margin: 20px auto;
}

.subtitle {
  font-size: 22px;
  color: #555;
  font-style: italic;
}

.cta {
  margin-top: 30px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 15px;
}

.btn {
  padding: 12px 24px;
  border-radius: 8px;
  font-weight: bold;
  text-decoration: none;
  cursor: pointer;
  border: none;
  display: inline-block;
  text-align: center;
}

.btn.primary {
  background: #2563eb;
  color: white;
}

.btn.primary:hover {
  background: #1e40af;
}

.btn.dark {
  background: #111827;
  color: white;
}

.btn.outline {
  border: 2px solid #2563eb;
  color: #2563eb;
  background: white;
}

.menu {
  position: sticky;
  top: 105px;
  background: rgba(255,255,255,0.95);
  border-top: 1px solid #eee;
  border-bottom: 1px solid #eee;
  z-index: 900;
}

.menu-list {
  display: flex;
  gap: 30px;
  padding: 15px 0;
  list-style: none;
}

.menu button {
  background: none;
  border: none;
  font-weight: bold;
  cursor: pointer;
  font-size: 18px;
}

.section {
  padding: 80px 0;
}

.section.gray {
  background: #f5f5f5;
}

.section-title {
  font-size: 32px;
  margin-bottom: 40px;
}

.center {
  text-align: center;
}

.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  align-items: start;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
  align-items: start;
}

.card {
  background: white;
  padding: 1rem;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.08);
}

.card img {
  width: 250px;
  max-width: 100%;
  border-radius: 8px;
  margin: 0 auto 15px;
}

/* Bloc Les services + */
.services-plus {
  background: #e9f1ff;
  border: 2px solid #a6deff;
  border-radius: 12px;
  padding: 4rem;
  margin: 60px auto;
  max-width: 1380px;
}

.services-plus-inner {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 30px;
  text-align: left;
}

.services-plus-img {
  width: 150px;
  height: auto;
  object-fit: contain;
}

.services-plus-text h3 {
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 12px;
}

.services-plus-text h3 span {
  color: #2563eb;
}

.services-plus-text p {
  font-size: 17px;
  color: #374151;
}

/* RDV */
#prenez-rdv .card {
  background: #f9fafb;
}

#prenez-rdv .card h3,
#prenez-rdv .card-title {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 25px;
}

#prenez-rdv .flex {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 18px;
}

.rdv-row {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 20px;
}

.rdv-icon {
  width: 32px;
  height: 32px;
  object-fit: contain;
  flex-shrink: 0;
  margin-top: 3px;
}

.rdv-address {
  font-weight: 600;
  font-style: italic;
}

.rdv-phone {
  font-weight: 600;
}

.rdv-hours-label {
  color: #6b7280;
  font-style: italic;
  margin-bottom: 5px;
}

.rdv-hours {
  font-weight: 600;
  font-style: italic;
  line-height: 1.5;
}

.rdv-mail {
  color: #2563eb;
  text-decoration: none;
  font-weight: 500;
}

/* Réduction spécifique des icônes RDV desktop */
#prenez-rdv .rdv-icon {
  width: 36px;
  height: 36px;
  object-fit: contain;
  margin-top: 3px;
}

/* Bloc Question */
.info-question {
  background: #f5f5f5;
}

.info-card {
  background: #f9fafb;
  border-radius: 12px;
  padding: 50px 20px;
  text-align: center;
  box-shadow: 0 8px 20px rgba(0,0,0,0.05);
}

.info-icon {
  width: 5vw;
  max-width: 60px;
  min-width: 35px;
  height: auto;
  margin: 0 auto 15px;
}

.info-text {
  font-size: 18px;
  font-style: italic;
  font-weight: 500;
  color: #1f2937;
}

/* Bloc Notre Parc */
.notre-parc {
  background: #f5f5f5;
}

.parc-box {
  border: 2px dashed #cbd5e1;
  border-radius: 12px;
  padding: 60px 20px;
  text-align: center;
  background: #f9fafb;
}

.parc-box h3 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 15px;
}

.parc-box p {
  font-style: italic;
  color: #6b7280;
  font-size: 16px;
}

.footer {
  border-top: 1px solid #ddd;
  padding: 40px 0;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}

.footer-right {
  text-align: right;
}

/* ================= MOBILE ================= */
@media screen and (max-width: 768px) {
  .container {
    padding: 0 14px;
    text-align: center;
  }

  .main {
    padding-top: 95px;
  }

  .header-inner {
    padding: 10px 0;
  }

  .nav-btn {
    font-size: 14px;
    border-width: 6px;
  }

  .menu {
    top: 82px;
  }

  .menu-list {
    gap: 16px;
    padding: 12px 0;
    overflow-x: auto;
    white-space: nowrap;
    scrollbar-width: none;
  }

  .menu-list::-webkit-scrollbar {
    display: none;
  }

  .menu button {
    font-size: 14px;
  }

  .hero {
    padding: 90px 0 40px;
  }

  .title {
    font-size: 28px;
    line-height: 1.2;
  }

  .subtitle {
    font-size: 15px;
    text-align: center;
  }

  .section {
    padding: 45px 0;
  }

  .section-title {
    font-size: 24px;
    margin-bottom: 20px;
    text-align: center;
  }

  .grid-2,
  .grid-3 {
    grid-template-columns: 1fr;
    justify-items: center;
    gap: 16px;
  }

  .card {
    width: 100%;
    max-width: 290px;
    margin: 0 auto;
    padding: 12px;
    text-align: center;
  }

  .card img {
    width: 110px;
    max-width: 100%;
    margin: 0 auto 12px;
  }

  .link {
    font-size: 12px;
    border-width: 6px;
  }

  .cta {
    flex-direction: column;
    align-items: center;
    gap: 10px;
  }

  .btn {
    width: auto;
    max-width: 260px;
    font-size: 13px;
    padding: 10px 14px;
  }

  .services-plus {
    width: 100%;
    max-width: 290px;
    padding: 18px 14px;
    margin: 30px auto 0;
  }

  .services-plus-inner {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 14px;
  }

  .services-plus-img {
    width: 90px;
  }

  .services-plus-text h3 {
    font-size: 20px;
  }

  .services-plus-text p {
    font-size: 14px;
    line-height: 1.5;
  }

  #prenez-rdv .grid-2 {
    grid-template-columns: 1fr;
    justify-items: center;
    gap: 14px;
  }

  #prenez-rdv .card {
    width: 100%;
    max-width: 290px;
    padding: 12px;
    text-align: left;
  }

  #prenez-rdv .card h3,
  #prenez-rdv .card-title {
    font-size: 18px;
    margin-bottom: 14px;
    text-align: left;
  }

  .rdv-row {
    gap: 10px;
    margin-bottom: 12px;
  }

  #prenez-rdv .rdv-icon,
  .rdv-icon {
    width: 20px !important;
    height: 20px !important;
    margin-top: 2px;
  }

  .rdv-address,
  .rdv-phone,
  .rdv-hours,
  .rdv-mail,
  .rdv-mail-label,
  .rdv-hours-label {
    font-size: 12px;
    line-height: 1.4;
  }

  .rdv-btn {
    display: inline-block;
    font-size: 12px;
    padding: 9px 12px;
    width: auto;
  }

  .info-card {
    width: 100%;
    max-width: 290px;
    margin: 0 auto;
    padding: 18px 14px;
  }

  .info-icon {
    width: 28px;
    min-width: 28px;
    max-width: 28px;
    margin-bottom: 10px;
  }

  .info-text {
    font-size: 13px;
    line-height: 1.5;
  }

  .footer-inner {
    flex-direction: column;
    text-align: center;
    gap: 10px;
  }

  .footer-right {
    text-align: center;
  }
}

/* ===== Correction affichage PC ===== */
@media screen and (min-width: 769px) {

  .grid-3 {
    align-items: stretch;
  }

  .grid-3 .card {
    text-align: left;
    min-height: 300px;
  }

  .grid-3 .card img {
    width: 250px;
    height: auto;
    object-fit: contain;
    margin-bottom: 15px;
  }

  #prenez-rdv .card {
    text-align: left;
    padding: 1.5rem;
  }

  #prenez-rdv .card h3,
  #prenez-rdv .card-title {
    text-align: left;
    margin-bottom: 20px;
  }

  .rdv-row {
    display: flex;
    align-items: center;
    gap: 15px;
  }

  #prenez-rdv .rdv-icon,
  .rdv-icon {
    width: 32px !important;
    height: 32px !important;
  }

}

/* ===== Correction bloc RDV PC ===== */
@media screen and (min-width: 769px) {

  #prenez-rdv .grid-2 {
    align-items: stretch;
  }

  #prenez-rdv .card {
    min-height: 230px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
  }

  .rdv-row {
    display: flex;
    align-items: flex-start;
    gap: 12px;
  }

  .rdv-address {
    margin-left: 0;
  }

}/* RDV : garde uniquement adresse et téléphone à gauche */
#prenez-rdv img.rdv-icon {
  width: 32px !important;
  height: 32px !important;
  max-width: 32px !important;
  min-width: 32px !important;
  margin: 0 !important;
  flex: 0 0 32px !important;
}

#prenez-rdv .rdv-row {
  display: flex !important;
  align-items: flex-start !important;
  justify-content: flex-start !important;
  gap: 12px !important;
}

#prenez-rdv .rdv-address,
#prenez-rdv .rdv-phone {
  text-align: left !important;
  margin: 0 !important;
}