
/* Style global pour Service Iplus */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
  color: #1f2933;
  background-color: #f5f7fa;
}

a {
  text-decoration: none;
  color: inherit;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Layout */

header {
  background: linear-gradient(135deg, #0b7285, #15aabf);
  color: #fff;
  padding: 1rem 0;
  position: sticky;
  top: 0;
  z-index: 10;
}

.nav-container {
  width: 92%;
  max-width: 1120px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  font-weight: 700;
  font-size: 1.3rem;
  letter-spacing: 0.05em;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.logo-mark {
  width: 26px;
  height: 26px;
  border-radius: 999px;
  border: 2px solid #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 1.5rem;
}

nav a {
  font-size: 0.95rem;
  opacity: 0.9;
}

nav a:hover {
  opacity: 1;
  border-bottom: 2px solid #ffe066;
}

.btn-primary {
  background: #ffe066;
  color: #1f2933;
  padding: 0.55rem 1.2rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
  box-shadow: 0 8px 18px rgba(0,0,0,0.12);
}

.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 12px 24px rgba(0,0,0,0.16);
}

main {
  width: 92%;
  max-width: 1120px;
  margin: 1.5rem auto 3rem;
}

/* Hero accueil */

.hero {
  display: grid;
  grid-template-columns: minmax(0, 3fr) minmax(0, 2.5fr);
  gap: 2.5rem;
  align-items: center;
  margin-top: 1rem;
}

.hero-kicker {
  text-transform: uppercase;
  font-size: 0.8rem;
  letter-spacing: 0.16em;
  color: #e3fafc;
  opacity: 0.9;
  margin-bottom: 0.75rem;
}

.hero h1 {
  font-size: 2.4rem;
  line-height: 1.15;
  margin-bottom: 0.75rem;
}

.hero h1 span {
  color: #ffe066;
}

.hero-lead {
  font-size: 1.02rem;
  color: #e3fafc;
  opacity: 0.95;
  margin-bottom: 1.2rem;
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-bottom: 1.4rem;
}

.badge {
  font-size: 0.8rem;
  padding: 0.3rem 0.65rem;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.35);
  color: #f8f9fa;
}

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  font-size: 0.85rem;
  color: #d0ebff;
}

.hero-meta strong {
  display: block;
  font-size: 1.05rem;
  color: #fff;
}

.hero-visual {
  background: #e3fafc;
  border-radius: 1.4rem;
  padding: 1.3rem;
  box-shadow: 0 18px 35px rgba(15, 23, 42, 0.25);
  position: relative;
}

.hero-visual-main {
  background: #fff;
  border-radius: 1rem;
  padding: 1.1rem;
  border: 1px solid #dee2e6;
}

.hero-visual h2 {
  font-size: 1rem;
  margin-bottom: 0.3rem;
}

.hero-service-list {
  list-style: none;
  font-size: 0.88rem;
  margin-top: 0.5rem;
}

.hero-service-list li {
  display: flex;
  justify-content: space-between;
  padding: 0.3rem 0;
  border-bottom: 1px dashed #edf2ff;
}

.hero-tag {
  position: absolute;
  right: 1.4rem;
  bottom: -0.8rem;
  background: #0b7285;
  color: #e3fafc;
  padding: 0.55rem 0.85rem;
  border-radius: 0.9rem;
  font-size: 0.8rem;
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.4);
}

/* Sections génériques */

section {
  margin-top: 3rem;
}

.section-title {
  font-size: 1.6rem;
  margin-bottom: 0.5rem;
}

.section-kicker {
  text-transform: uppercase;
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  color: #5c7cfa;
  margin-bottom: 0.3rem;
}

.section-lead {
  color: #52606d;
  font-size: 0.98rem;
  max-width: 620px;
}

/* Grille services */

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.6rem;
  margin-top: 1.5rem;
}

.service-card {
  background: #fff;
  border-radius: 1.1rem;
  padding: 1.2rem 1.3rem;
  box-shadow: 0 14px 28px rgba(15, 23, 42, 0.08);
  border: 1px solid #edf2ff;
}

.service-icon {
  width: 38px;
  height: 38px;
  border-radius: 999px;
  background: #e3fafc;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.6rem;
  font-size: 1.1rem;
}

.service-card h3 {
  font-size: 1.05rem;
  margin-bottom: 0.35rem;
}

.service-card p {
  font-size: 0.9rem;
  color: #52606d;
  margin-bottom: 0.7rem;
}

.service-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.3rem;
}

.service-tags span {
  font-size: 0.78rem;
  padding: 0.15rem 0.5rem;
  border-radius: 999px;
  background: #f1f3f5;
  color: #495057;
}

/* Blocs A propos */

.about-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.8fr) minmax(0, 2.2fr);
  gap: 2rem;
  margin-top: 1.5rem;
  align-items: start;
}

.about-card {
  background: #fff;
  border-radius: 1.1rem;
  padding: 1.2rem 1.3rem;
  box-shadow: 0 12px 24px rgba(15,23,42,0.06);
  border: 1px solid #edf2ff;
  font-size: 0.92rem;
  color: #52606d;
}

.about-highlight {
  background: #0b7285;
  color: #e3fafc;
  border-radius: 1.1rem;
  padding: 1.2rem 1.3rem;
  box-shadow: 0 16px 30px rgba(15,23,42,0.2);
}

/* Contact / prise de rendez-vous */

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 2.2fr) minmax(0, 1.8fr);
  gap: 2rem;
  margin-top: 1.5rem;
}

.contact-card, .contact-info-card {
  background: #fff;
  border-radius: 1.1rem;
  padding: 1.2rem 1.3rem;
  box-shadow: 0 12px 24px rgba(15,23,42,0.06);
  border: 1px solid #edf2ff;
}

form {
  display: grid;
  gap: 0.9rem;
}

label {
  font-size: 0.85rem;
  font-weight: 600;
  color: #364152;
  display: block;
  margin-bottom: 0.2rem;
}

input, select, textarea {
  width: 100%;
  border-radius: 0.7rem;
  border: 1px solid #cbd2d9;
  padding: 0.55rem 0.7rem;
  font-size: 0.9rem;
  font-family: inherit;
}

textarea {
  min-height: 90px;
  resize: vertical;
}

input:focus, select:focus, textarea:focus {
  outline: 2px solid #82cfff;
  border-color: transparent;
}

.form-row-2 {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.8rem;
}

.helper-text {
  font-size: 0.8rem;
  color: #8290a0;
  margin-top: 0.15rem;
}

/* Galerie */

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: 1rem;
  margin-top: 1.5rem;
}

.gallery-item {
  background: #fff;
  border-radius: 1rem;
  padding: 0.6rem;
  box-shadow: 0 12px 24px rgba(15,23,42,0.06);
  border: 1px solid #edf2ff;
}

.gallery-caption {
  font-size: 0.8rem;
  color: #52606d;
  margin-top: 0.4rem;
}

/* Footer */

footer {
  border-top: 1px solid #d8e2ec;
  padding: 1.2rem 0 2rem;
  font-size: 0.8rem;
  color: #8290a0;
}

.footer-inner {
  width: 92%;
  max-width: 1120px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.6rem;
}

/* Utilitaires */

.chip {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  font-size: 0.8rem;
  padding: 0.25rem 0.6rem;
  border-radius: 999px;
  background: #f1f5f9;
  color: #475569;
  margin-right: 0.35rem;
}

.chip-dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: #51cf66;
}

/* Responsif */

@media (max-width: 880px) {
  .hero, .about-layout, .contact-layout {
    grid-template-columns: minmax(0, 1fr);
  }

  header {
    position: static;
  }

  nav ul {
    display: none;
  }

  main {
    margin-top: 1rem;
  }
}

@media (max-width: 640px) {
  .hero h1 {
    font-size: 2rem;
  }

  .form-row-2 {
    grid-template-columns: minmax(0, 1fr);
  }

  .hero-visual {
    margin-top: 0.8rem;
  }
}
/* ----- Formulaire de rendez-vous ----- */

.contact-section {
  max-width: 700px;
  margin: 3rem auto;
  padding: 2rem;
  background: #ffffff;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.06);
}

.contact-section h2 {
  margin-bottom: 0.5rem;
}

.contact-section p {
  margin-bottom: 1.5rem;
  color: #555;
}

.booking-form .form-row {
  margin-bottom: 1rem;
  display: flex;
  flex-direction: column;
}

.booking-form label {
  font-weight: 600;
  margin-bottom: 0.35rem;
}

.booking-form input,
.booking-form select,
.booking-form textarea {
  border: 1px solid #ddd;
  border-radius: 8px;
  padding: 0.6rem 0.8rem;
  font-size: 0.95rem;
}

.booking-form input:focus,
.booking-form select:focus,
.booking-form textarea:focus {
  outline: none;
  border-color: #3b82f6;
  box-shadow: 0 0 0 2px rgba(59,130,246,0.15);
}

.booking-form .form-row-inline {
  flex-direction: row;
  gap: 1rem;
}

.booking-form .form-row-inline > div {
  flex: 1;
}

.booking-form .btn-primary,
.rdv-confirmation .btn-primary {
  margin-top: 0.5rem;
}

/* Page de confirmation */
.rdv-confirmation {
  max-width: 700px;
  margin: 4rem auto;
  padding: 2rem;
  background: #ffffff;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.06);
  text-align: center;
}
