:root {
  --bg: #f5f6fa;
  --white: #ffffff;
  --text: #101828;
  --muted: #4b5563;
  --primary: #0d2447;
  --accent: #0ca778;
  --accent-dark: #098662;
  --line: #dde4ee;
  --soft: #edf2f8;
  --radius-lg: 6px;
  --radius-md: 6px;
  --shadow: 0 10px 30px rgba(13, 36, 71, 0.08);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: "Inter", sans-serif;
  font-weight: 400;
  color: var(--text);
  background: var(--bg);
  line-height: 1.65;
}

h1, h2, h3 {
  margin: 0;
  font-family: "Plus Jakarta Sans", sans-serif;
  letter-spacing: -0.02em;
}

h1 { font-weight: 800; font-size: 46px; line-height: 1.15; }
h2 { font-weight: 600; font-size: clamp(1.6rem, 3.3vw, 2.35rem); line-height: 1.2; }
h3 { font-weight: 500; font-size: 1.32rem; }

.section-space { padding: 84px 0; }
.section-light { background: #eff3f8; }

.site-header {
  background: rgba(255, 255, 255, 0.9);
  border-bottom: 1px solid rgba(16, 24, 40, 0.06);
  backdrop-filter: blur(8px);
}

.brand { text-decoration: none; display: inline-flex; gap: 6px; align-items: baseline; }
.brand-mark { font-family: "Plus Jakarta Sans", sans-serif; font-weight: 800; color: var(--primary); font-size: 1.4rem; }
.brand-text { font-family: "Plus Jakarta Sans", sans-serif; font-weight: 600; color: #162339; }
.brand-logo {
  height: 64px;
  width: auto;
  display: block;
  object-fit: contain;
}

.nav-link {
  color: #172844;
  font-weight: 600;
  padding: 8px 12px;
  border-radius: 999px;
  transition: all 0.25s ease;
}
.nav-link:hover, .nav-link:focus { color: var(--primary); background: #eaf0f9; }
.phone-link i { color: var(--accent); margin-right: 4px; }
.dropdown-divider-dashed {
  border-top-style: dashed;
  border-top-color: rgba(23, 40, 68, 0.26);
}
.dropdown-item-static {
  color: #6b7280;
  cursor: default;
  pointer-events: none;
}

.btn-cta {
  background: linear-gradient(180deg, #0f9a80 0%, #0b7f67 100%);
  color: #eafaf5;
  border: 1px solid rgba(9, 106, 85, 0.35);
  border-radius: 6px;
  font-weight: 600;
  padding: 11px 20px;
  letter-spacing: 0.3px;
  box-shadow: 0 6px 16px rgba(11, 127, 103, 0.16);
  transition: all 0.3s ease;
}
.btn-cta:hover, .btn-cta:focus {
  color: #f3fffb;
  background: linear-gradient(180deg, #0d9078 0%, #0a725b 100%);
  transform: translateY(-1px);
  border-color: rgba(9, 106, 85, 0.45);
  box-shadow: 0 10px 20px rgba(11, 127, 103, 0.22);
}

.btn-phone-light {
  background: var(--white);
  border: 1px solid rgba(14, 143, 108, 0.26);
  color: #0E8F6C;
  font-weight: 600;
  border-radius: 6px;
  padding: 11px 16px;
  letter-spacing: 0.3px;
  box-shadow: 0 6px 14px rgba(14, 143, 108, 0.1);
  transition: all 0.3s ease;
}
.btn-phone-light:hover, .btn-phone-light:focus {
  color: #0A6F53;
  background: #ffffff;
  transform: translateY(-1px);
  box-shadow: 0 9px 18px rgba(14, 143, 108, 0.16);
}

.map-panel,
.estimate-visual,
.floating-form,
.service-card,
.premium-panel,
.testimonial,
.brand-strip,
.zone-chip,
.zones-media,
.cta-panel-light,
.navbar-collapse,
.btn,
.form-control,
.form-select,
.type-chip {
  border-radius: 6px !important;
}

.hero-clone { background: #fbfbfb; }
.clone-copy { padding-right: 8px; }
.lead-copy { margin: 18px 0 16px; color: var(--muted); }

.clone-points li {
  display: flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 7px;
  color: #1f2937;
}
.clone-points i { color: var(--accent); }

.cta-inline {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.map-panel {
  background: transparent;
  border-radius: var(--radius-lg);
  border: 0;
  box-shadow: none;
  overflow: hidden;
  position: relative;
}
.map-panel img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  filter: saturate(0.88) contrast(0.98);
}
.map-overlay {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0) 58%, rgba(255, 255, 255, 0.86) 100%);
}
.map-pin {
  position: absolute;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 5px 14px rgba(12, 125, 100, 0.2);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #0a8a6a;
  font-size: 0.95rem;
  animation: pin-float 2.8s ease-in-out infinite, pin-pulse 2.8s ease-in-out infinite;
}
.map-city {
  position: absolute;
  top: 34%;
  left: 49%;
  transform: translate(-50%, -50%);
  font-family: "Plus Jakarta Sans", sans-serif;
  font-weight: 600;
  font-size: 24px;
  color: #233149;
  text-shadow: 0 1px 1px rgba(255, 255, 255, 0.8);
}
.pin-1 { top: 18%; left: 19%; }
.pin-2 { top: 10%; left: 42%; }
.pin-3 { top: 18%; left: 56%; }
.pin-4 { top: 12%; left: 74%; }
.pin-5 { top: 26%; left: 31%; }
.pin-6 { top: 28%; left: 67%; }
.pin-7 { top: 42%; left: 59%; }
.pin-2 { animation-delay: 0.2s, 0.2s; }
.pin-3 { animation-delay: 0.4s, 0.4s; }
.pin-4 { animation-delay: 0.6s, 0.6s; }
.pin-5 { animation-delay: 0.8s, 0.8s; }
.pin-6 { animation-delay: 1s, 1s; }
.pin-7 { animation-delay: 1.2s, 1.2s; }

@keyframes pin-float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-4px);
  }
}

@keyframes pin-pulse {
  0%,
  100% {
    box-shadow: 0 5px 14px rgba(12, 125, 100, 0.2);
  }
  50% {
    box-shadow: 0 8px 18px rgba(12, 125, 100, 0.3);
  }
}

.map-location-list {
  position: absolute;
  left: 16px;
  bottom: 16px;
  list-style: none;
  margin: 0;
  padding: 12px 14px;
  background: transparent;
  backdrop-filter: none;
  border: 0;
}
.map-location-list li {
  color: #2b3f5f;
  font-size: 0.95rem;
  display: flex;
  gap: 7px;
  align-items: center;
  margin-bottom: 6px;
}
.map-location-list li:last-child { margin-bottom: 0; }
.map-location-list i { color: #0a8a6a; }

.estimate-clone {
  background:
    linear-gradient(90deg, #ffffff 0%, #ffffff 54%, rgba(255, 255, 255, 0.74) 66%, rgba(255, 255, 255, 0) 76%),
    url("assets/images/demenagement-professionnel-lausane.jpg") right center / auto 100% no-repeat,
    #ffffff;
  position: relative;
  overflow: hidden;
}
.estimate-clone .container {
  position: relative;
  z-index: 1;
}
.estimate-copy p { margin: 16px 0; color: var(--muted); }

.estimate-visual {
  position: relative;
  min-height: 440px;
  border-radius: 0;
  overflow: visible;
  box-shadow: none;
}
.floating-form {
  position: absolute;
  left: 10px;
  top: 50%;
  transform: translateY(-50%);
  width: min(360px, calc(100% - 24px));
  background: rgba(255, 255, 255, 0.98);
  border: 1px solid #d6e1ee;
  border-radius: 8px;
  box-shadow: 0 14px 30px rgba(13, 36, 71, 0.2);
  padding: 12px;
}
.floating-form .form-control {
  border: 1px solid #d4deea;
  border-radius: 6px;
  padding: 9px 10px;
}
.floating-form .form-control:focus {
  border-color: #86b5ff;
  box-shadow: 0 0 0 .2rem rgba(43, 118, 240, 0.15);
}
.floating-form small { display: block; margin-top: 10px; color: #607086; }

.type-options {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
}
.type-option {
  appearance: none;
  border: 1px solid #d9e1ec;
  background: #fff;
  color: #344861;
  border-radius: 6px;
  padding: 8px 6px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 3px;
  text-align: center;
  cursor: pointer;
}
.type-option i {
  font-size: 1.15rem;
  line-height: 1;
}
.type-option small {
  font-size: 0.76rem;
  line-height: 1.1;
}
.type-option.active {
  border-color: #bde4d7;
  background: #eefcf7;
  color: #0c7c5f;
}

.section-title {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 32px;
}
.section-title p { margin-top: 10px; color: var(--muted); }

.services-clone .service-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: 0 8px 22px rgba(13, 36, 71, 0.08);
  transition: transform 0.28s ease, box-shadow 0.28s ease;
}
.services-clone .service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 30px rgba(13, 36, 71, 0.14);
}
.service-card img { width: 100%; height: 200px; object-fit: cover; }
.service-card-link-img {
  display: block;
  text-decoration: none;
}
.service-card-body { padding: 16px; }
.service-card-body h3 a {
  color: inherit;
  text-decoration: none;
}
.service-card-body h3 a:hover,
.service-card-body h3 a:focus {
  color: #0b7f67;
}
.service-card-body p { margin: 7px 0 0; color: var(--muted); font-size: 0.95rem; }

.why-clone .premium-panel,
.why-clone .testimonial,
.why-clone .testimonial-slider {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 26px;
  box-shadow: var(--shadow);
}
.testimonial-slider {
  position: relative;
  min-height: 340px;
  display: flex;
  flex-direction: column;
}
.testimonial-viewport {
  overflow: hidden;
  flex: 1;
}
.testimonial-track {
  display: flex;
  width: 100%;
  transition: transform 0.55s ease;
}
.testimonial-slide {
  display: block;
  min-width: 100%;
  margin: 0;
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
  padding: 0 !important;
}
.testimonial-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 14px;
}
.testimonial-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: 0;
  background: #c7d3e3;
  padding: 0;
  transition: transform 0.2s ease, background-color 0.2s ease;
}
.testimonial-dot.is-active {
  background: #0b7f67;
  transform: scale(1.25);
}
.reasons li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 12px;
}
.reasons i { color: var(--accent); margin-top: 2px; }
.stars { color: #f5b301; letter-spacing: 2px; font-size: 1.16rem; }
.testimonial-text { margin: 14px 0; font-size: 1.04rem; }
.testimonial-author { margin-bottom: 10px; font-weight: 600; }
.trust-badge {
  display: inline-flex;
  gap: 8px;
  align-items: center;
  border-radius: 999px;
  border: 1px solid #cdeedf;
  background: #e8fbf3;
  color: #0b6f52;
  padding: 7px 12px;
  font-size: 0.92rem;
}
.trust-badge-link {
  text-decoration: none;
}
.trust-badge-link:hover,
.trust-badge-link:focus {
  color: #0b6f52;
}
.google-badge-icon {
  width: 14px;
  height: 14px;
  display: inline-block;
}

.brand-strip {
  margin-top: 18px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 18px 0;
  overflow: hidden;
}

.logos-marquee {
  width: 100%;
  overflow: hidden;
  position: relative;
}

.logos-track {
  display: flex;
  align-items: center;
  gap: 28px;
  width: max-content;
  will-change: transform;
}

.partner-logo {
  height: 32px;
  width: auto;
  max-width: 190px;
  object-fit: contain;
  opacity: 0.85;
  filter: brightness(0) saturate(100%) invert(14%) sepia(23%) saturate(1048%) hue-rotate(183deg) brightness(94%) contrast(91%);
  transition: opacity 0.3s ease, filter 0.3s ease, transform 0.3s ease;
}

.partner-logo:hover {
  opacity: 1;
  transform: translateY(-1px);
  filter: brightness(0) saturate(100%) invert(43%) sepia(47%) saturate(680%) hue-rotate(124deg) brightness(94%) contrast(97%);
}

.faq-section .section-title {
  max-width: 960px;
}

.faq-accordion {
  max-width: 980px;
  margin: 0 auto;
}

.faq-accordion .accordion-item {
  border: 1px solid rgba(18, 62, 107, 0.12);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(18, 62, 107, 0.07);
  margin-bottom: 12px;
  background: #fff;
}

.faq-accordion .accordion-button {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 1.06rem;
  font-weight: 600;
  color: #123e6b;
  background: #fff;
  padding: 16px 18px;
}

.faq-accordion .accordion-button:focus {
  box-shadow: 0 0 0 0.2rem rgba(22, 176, 134, 0.16);
}

.faq-accordion .accordion-button:not(.collapsed) {
  color: #123e6b;
  background: rgba(22, 176, 134, 0.08);
}

.faq-accordion .accordion-body {
  color: #1c2733;
  padding: 16px 18px 18px;
}

.faq-accordion .accordion-body p {
  margin-bottom: 10px;
}

.faq-accordion .accordion-body ul {
  margin-bottom: 10px;
  padding-left: 20px;
}

.faq-accordion .accordion-body li {
  margin-bottom: 6px;
  color: #5c6b7a;
}

.contact-hero {
  background: #f9fbfe;
}

.contact-hero h1 {
  font-size: clamp(2rem, 3.1vw, 2.8rem);
  line-height: 1.14;
}

.contact-eyebrow {
  display: inline-block;
  border-radius: 999px;
  border: 1px solid rgba(18, 62, 107, 0.16);
  color: #123e6b;
  background: rgba(18, 62, 107, 0.06);
  padding: 6px 12px;
  font-weight: 600;
  margin-bottom: 14px;
}

.contact-quick-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 16px;
}

.contact-hero-card {
  background: #fff;
  border: 1px solid rgba(18, 62, 107, 0.12);
  box-shadow: 0 14px 30px rgba(18, 62, 107, 0.1);
  border-radius: 12px;
  padding: 20px;
}

.contact-hero-card h2 {
  font-size: 1.45rem;
  margin-bottom: 4px;
}

.contact-hero-card > p {
  color: #5c6b7a;
  margin-bottom: 12px;
}

.contact-form-lead {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 1.04rem;
  font-weight: 700;
  color: #123e6b;
  margin-bottom: 4px;
}

.contact-form-proof {
  color: #0f7d61;
  font-size: 0.94rem;
  font-weight: 600;
  margin-bottom: 12px;
}

.contact-form-proof i {
  margin-right: 6px;
}

.contact-form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.contact-full {
  grid-column: 1 / -1;
}

.contact-form-grid .form-control::placeholder,
.contact-form-grid textarea::placeholder {
  color: rgba(28, 39, 51, 0.45);
}

.contact-reassurance {
  background: #fff;
}

.reassurance-card {
  height: 100%;
  background: #fff;
  border: 1px solid rgba(18, 62, 107, 0.1);
  border-radius: 12px;
  box-shadow: 0 10px 24px rgba(18, 62, 107, 0.08);
  padding: 20px;
}

.reassurance-card i {
  color: #16b086;
  font-size: 1.4rem;
}

.reassurance-card h3 {
  font-size: 1.12rem;
  margin: 10px 0 8px;
}

.reassurance-card p {
  margin: 0;
  color: #5c6b7a;
}

.cta-panel-light {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  text-align: left;
  padding: 32px;
}
.cta-panel-light p { margin: 10px 0 18px; color: var(--muted); }
.cta-actions { display: flex; flex-wrap: wrap; gap: 10px; }

.site-footer {
  background: linear-gradient(180deg, #07152e, #061227);
  color: #adbbcf;
  margin-top: 20px;
}

.footer-main {
  padding-top: 48px;
  padding-bottom: 28px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.35fr 1fr 1fr 1fr;
  gap: 28px;
}

.footer-col h3 {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: #f3f7ff;
  margin: 0 0 14px;
}

.footer-brand-col .footer-logo {
  width: 170px;
  height: auto;
  object-fit: contain;
  margin-bottom: 12px;
}

.footer-text {
  color: #a9b8cd;
  margin-bottom: 14px;
  max-width: 320px;
}

.footer-contact-stack {
  display: grid;
  gap: 8px;
}

.footer-contact-stack a,
.footer-contact-stack span {
  color: #cdd9ea;
  text-decoration: none;
  font-size: 0.95rem;
}

.footer-contact-stack a i,
.footer-contact-stack span i {
  color: #16b086;
  margin-right: 8px;
}

.footer-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 8px;
}

.footer-list li {
  color: #c2d0e4;
  font-size: 0.95rem;
}

.footer-list a {
  color: #c2d0e4;
  text-decoration: none;
}

.footer-list a:hover {
  color: #ffffff;
}
.footer-divider-dashed {
  margin: 6px 0 4px;
  border: 0;
  border-top: 1px dashed rgba(194, 208, 228, 0.45);
}
.footer-item-static {
  color: #90a3bd;
  display: inline-block;
}

.footer-cta-wrap {
  margin-top: 14px;
}

.footer-bottom {
  border-top: 1px solid rgba(173, 187, 207, 0.18);
}

.footer-bottom-inner {
  min-height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.footer-bottom-inner p {
  color: #9db1cb;
  font-size: 0.92rem;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-links a {
  color: #d8e1ee;
  text-decoration: none;
  font-size: 0.92rem;
}

.footer-links a:hover {
  color: #ffffff;
}

.footer-credit {
  color: #d8e1ee;
  font-size: 0.92rem;
  text-align: right;
}

.footer-credit a {
  color: inherit;
  text-decoration: none;
}

.footer-credit a:hover {
  color: #ffffff;
}

.whatsapp-float {
  position: fixed;
  right: 18px;
  bottom: 18px;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  background: #25d366; /* vert WhatsApp plein */
  color: #fff;
  font-size: 1.5rem;
  box-shadow: 0 12px 24px rgba(37, 211, 102, 0.45);
  z-index: 50;
  animation: whatsapp-pulse 2.2s ease-in-out infinite;
}

.whatsapp-float:hover {
  background: #1ebe5c;
  transform: scale(1.08);
}

@keyframes whatsapp-pulse {
  0% {
    transform: scale(1);
    box-shadow: 0 12px 24px rgba(37, 211, 102, 0.45);
  }
  50% {
    transform: scale(1.09);
    box-shadow: 0 16px 30px rgba(37, 211, 102, 0.55);
  }
  100% {
    transform: scale(1);
    box-shadow: 0 12px 24px rgba(37, 211, 102, 0.45);
  }
}

.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.reveal.in-view { opacity: 1; transform: translateY(0); }

@media (max-width: 991.98px) {
  .navbar-collapse {
    margin-top: 12px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 12px;
    padding: 12px;
    box-shadow: var(--shadow);
  }
  .section-space { padding: 68px 0; }
  .estimate-clone {
    background:
      linear-gradient(180deg, #ffffff 0%, #ffffff 42%, rgba(255, 255, 255, 0.72) 58%, rgba(255, 255, 255, 0) 72%),
      url("assets/images/demenagement-professionnel-lausane.jpg") center bottom / cover no-repeat,
      #ffffff;
  }
  .estimate-visual { min-height: 420px; }
  .floating-form {
    left: 14px;
    top: auto;
    bottom: 14px;
    transform: none;
    width: min(360px, calc(100% - 28px));
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 24px;
  }

}

@media (max-width: 767.98px) {
  .map-panel img { height: 360px; }
  .map-city { font-size: 1.65rem; top: 43%; }
  .map-location-list { left: 10px; right: 10px; bottom: 10px; }
  .cta-panel-light { text-align: center; }
  .cta-actions { justify-content: center; }
  .contact-form-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 575.98px) {
  .section-space { padding: 54px 0; }
  .premium-panel, .testimonial, .cta-panel-light { padding: 20px; }
  .map-panel img { height: 300px; }
  .map-pin { width: 24px; height: 24px; font-size: 0.82rem; }
  .map-city { font-size: 1.45rem; }
  .map-location-list li { font-size: 0.88rem; }
  .estimate-visual { min-height: 360px; }
  .floating-form {
    left: 10px;
    bottom: 10px;
    width: calc(100% - 20px);
    padding: 10px;
  }
  .type-option small { font-size: 0.7rem; }
  .service-card img { height: 170px; }
  .btn-lg { width: 100%; }
  .brand-logo { height: 38px; }
  .logos-track { gap: 20px; }
  .partner-logo { height: 24px; max-width: 145px; }
  .footer-main {
    padding-top: 36px;
    padding-bottom: 18px;
  }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .footer-brand-col .footer-logo {
    width: 150px;
  }
  .footer-bottom-inner {
    min-height: auto;
    padding: 12px 0;
    flex-direction: column;
    align-items: flex-start;
  }
  h1 { font-size: 36px; }
}
