/* =========================================================
   Bloc 1 - Hero 
   ========================================================= */
<style>
html {
    scroll-behavior: smooth;
}

.westimmo-home-hero {
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 600px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #0d1f25;
}

.wh-vimeo-cover {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 177.78vh;
    min-width: 100%;
    height: 56.25vw;
    min-height: 100%;
    transform: translate(-50%, -50%);
    z-index: 0;
    pointer-events: none;
}

.wh-vimeo-cover iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
    pointer-events: none;
}

.wh-poster {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
    transition: opacity 0.8s ease;
}

.wh-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(
            to bottom,
            rgba(10, 20, 25, 0.25) 0%,
            rgba(10, 20, 25, 0.55) 50%,
            rgba(10, 20, 25, 0.72) 100%
        );
    z-index: 2;
}

.wh-content {
    position: relative;
    z-index: 3;
    text-align: center;
    max-width: 1200px;
    padding: 0 30px;
    margin-top: -40px;
}

.wh-content h1 {
    font-family: 'Inter', sans-serif;
    font-size: clamp(20px, 2.5vw, 30px);
    font-weight: 400;
    color: #ffffff;
    margin: 0;
    line-height: 1;
    letter-spacing: -2px;
    text-shadow: 0 4px 32px rgba(0,0,0,0.5);
}

.wh-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin: 28px auto;
}

.wh-divider-line {
    display: block;
    width: 48px;
    height: 1px;
    background: #c9a96e;
    opacity: 0.9;
}

.wh-divider-dot {
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: #c9a96e;
    opacity: 0.9;
    display: block;
}

.wh-brand {
    font-family: 'Playfair Display', serif;
    font-size: clamp(65px, 14vw, 100px);
    font-weight: 400;
    font-style: normal;
    color: rgba(255, 255, 255, 0.88);
    margin: 0 0 32px 0;
    letter-spacing: 0.5px;
    line-height: 1.4;
    text-shadow: 0 2px 12px rgba(0,0,0,0.4);
    max-width: 100%;
}

.wh-content p {
    font-family: 'Inter', sans-serif;
    font-size: clamp(13px, 1.4vw, 15px);
    font-weight: 300;
    color: rgba(255, 255, 255, 0.60);
    line-height: 1.9;
    letter-spacing: 0.3px;
    max-width: 720px;
    margin: 0 auto;
}

.wh-buttons {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    margin-top: 34px;
    flex-wrap: wrap;
}

.wh-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 210px;
    padding: 14px 26px;
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    font-weight: 400;
    letter-spacing: 0.4px;
    text-decoration: none;
    border-radius: 999px;
    transition: all 0.3s ease;
}

.wh-btn-primary {
    background: #c9a96e;
    color: #0d1f25;
    border: 1px solid #c9a96e;
}

.wh-btn-primary:hover {
    background: #d8b983;
    border-color: #d8b983;
    color: #0d1f25;
}

.wh-btn-secondary {
    background: rgba(255,255,255,0.08);
    color: #ffffff;
    border: 1px solid rgba(255,255,255,0.22);
    backdrop-filter: blur(4px);
}

.wh-btn-secondary:hover {
    background: rgba(255,255,255,0.14);
    border-color: rgba(255,255,255,0.35);
    color: #ffffff;
}

@media (max-width: 768px) {
    .westimmo-home-hero {
        min-height: 450px;
    }

    .wh-content {
        padding: 0 24px;
        margin-top: -20px;
    }

    .wh-content h1 {
        letter-spacing: -1px;
    }

    .wh-buttons {
        gap: 10px;
        margin-top: 28px;
    }

    .wh-btn {
        min-width: 190px;
        padding: 13px 22px;
    }
}

@media (max-width: 480px) {
    .westimmo-home-hero {
        min-height: 400px;
    }

    .wh-content p {
        display: none;
    }

    .wh-buttons {
        flex-direction: column;
    }

    .wh-btn {
        width: 100%;
        max-width: 280px;
    }
}
</style>


/* =========================================================
   Bloc 3 - Services Westimmo
   ========================================================= */

.bloc2,
.bloc2 *,
.bloc2 *::before,
.bloc2 *::after {
  box-sizing: border-box;
}

.bloc2 {
  background: #f8f6f2;
  padding: 96px 64px;
  font-family: Inter, Arial, sans-serif;
}

.bloc2-inner {
  max-width: 1280px;
  margin: 0 auto;
}

.bloc2-header {
  margin-bottom: 56px;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.07);
}

.bloc2-header-inner {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
}

.bloc2-eyebrow {
  display: block;
  margin-bottom: 10px;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #156e83;
}

.bloc2-header h2 {
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(1.6rem, 2.4vw, 2rem);
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: -0.01em;
  color: #1d1d1d;
}

.bloc2-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  align-items: start;
  gap: 0;
}

.bloc2-card {
  padding: 0 10px;
  cursor: pointer;
}

.bloc2-card:nth-child(even) {
  margin-top: 56px;
}

.bloc2-img {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4 / 5;
  margin-bottom: 20px;
}

.bloc2-img img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.bloc2-card:hover .bloc2-img img {
  transform: scale(1.06);
}

.bloc2-img-overlay {
  position: absolute;
  inset: 0;
  background: rgba(29, 29, 29, 0.08);
  transition: opacity 0.5s;
}

.bloc2-card:hover .bloc2-img-overlay {
  opacity: 0;
}

.bloc2-card h3 {
  margin-bottom: 8px;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.2;
  color: #1d1d1d;
}

.bloc2-card p {
  margin-bottom: 18px;
  font-size: 13px;
  line-height: 1.65;
  color: #6b7280;
}

.bloc2-card-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
  color: #1d1d1d;
  transition: gap 0.3s ease, color 0.3s ease;
}

.bloc2-card-link svg {
  width: 14px;
  height: 14px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  transition: transform 0.3s ease;
}

.bloc2-card:hover .bloc2-card-link {
  gap: 10px;
  color: #156e83;
}

.bloc2-card:hover .bloc2-card-link svg {
  transform: translateX(3px);
}

@media (max-width: 1100px) {
  .bloc2-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 40px 0;
  }

  .bloc2-card:nth-child(even) {
    margin-top: 0;
  }
}

@media (max-width: 700px) {
  .bloc2 {
    padding: 64px 24px;
  }

  .bloc2-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 32px 0;
  }

  .bloc2-card {
    padding: 0 8px;
  }
}

@media (max-width: 480px) {
  .bloc2-grid {
    grid-template-columns: 1fr;
    gap: 40px 0;
  }

  .bloc2-card {
    padding: 0;
  }
}


/* =========================================================
   Bloc 4 - Locations Westimmo
   ========================================================= */

.bloc5-wrap {
  background: #f5f3ef;
  padding: 32px 24px 0;
  font-family: 'Inter', sans-serif;
}

.bloc5-inner {
  max-width: 1500px;
  margin: 0 auto;
}

.bloc5-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(0,0,0,0.07);
}

.bloc5-eyebrow {
  display: block;
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 600;
  color: #156e83;
  margin-bottom: 10px;
}

.bloc5-header h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 2.8vw, 2.2rem);
  font-weight: 500;
  color: #1d1d1d;
  line-height: 1.2;
  letter-spacing: -0.01em;
  margin: 0;
}

.bloc5-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 600;
  color: #156e83;
  text-decoration: none;
  white-space: nowrap;
  border-bottom: 1px solid transparent;
  padding-bottom: 2px;
  transition: color 0.2s, border-color 0.2s;
}

.bloc5-link:hover {
  color: #c9a96e;
  border-bottom-color: #c9a96e;
}

.bloc5-link svg {
  width: 12px;
  height: 12px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: transform 0.2s;
}

.bloc5-link:hover svg {
  transform: translateX(3px);
}

@media (max-width: 767px) {
  .bloc5-wrap {
    padding: 24px 16px 0;
  }

  .bloc5-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }
}


/* =========================================================
   Bloc 5 - Bandeau CTA Westimmo
   ========================================================= */

.ws-band-cta {
  position: relative;
  width: 100%;
  height: 220px;
  overflow: hidden;
  font-family: 'Inter', sans-serif;
}

.ws-band-cta__img {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 130%;
  object-fit: cover;
  object-position: center;
  display: block;
  will-change: transform;
  transform: translate3d(-50%, -50%, 0);
}

.ws-band-cta__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(13,28,38,0.78) 0%,
    rgba(13,28,38,0.55) 55%,
    rgba(13,28,38,0.30) 100%
  );
  z-index: 1;
}

.ws-band-cta__content {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0 24px;
  z-index: 2;
  gap: 20px;
}

.ws-band-cta__title {
  font-size: 15px;
  font-weight: 400;
  color: rgba(255,255,255,0.75);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin: 0;
  line-height: 1.4;
}

.ws-band-cta__headline {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 32px;
  font-weight: 400;
  color: #ffffff;
  line-height: 1.25;
  margin: 0;
}

.ws-band-cta__headline em {
  font-style: italic;
  color: #e4bf6a;
}

.ws-band-cta__btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #c9a96e;
  color: #1d1d1d;
  text-decoration: none;
  padding: 12px 28px;
  border-radius: 9999px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  transition: background 0.25s, transform 0.2s;
  white-space: nowrap;
}

.ws-band-cta__btn:hover {
  background: #e4bf6a;
  transform: translateY(-2px);
}

.ws-band-cta__btn svg {
  width: 15px;
  height: 15px;
  fill: currentColor;
  flex-shrink: 0;
}

@media (max-width: 767px) {
  .ws-band-cta {
    height: 200px;
  }

  .ws-band-cta__title {
    font-size: 20px;
  }

  .ws-band-cta__img {
    height: 120%;
  }
}

/* =========================================================
   Bloc 6 - Ventes Westimmo
   ========================================================= */

.bloc5-wrap {
  background: #f5f3ef !important;
  padding: 32px 24px 0;
  font-family: 'Inter', sans-serif;
}

.bloc5-inner {
  max-width: 1500px;
  margin: 0 auto;
}

.bloc5-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(0,0,0,0.07);
}

.bloc5-eyebrow {
  display: block;
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 600;
  color: #156e83;
  margin-bottom: 10px;
}

.bloc5-header h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 2.8vw, 2.2rem);
  font-weight: 500;
  color: #1d1d1d;
  line-height: 1.2;
  letter-spacing: -0.01em;
  margin: 0;
}

.bloc5-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 600;
  color: #156e83;
  text-decoration: none;
  white-space: nowrap;
  border-bottom: 1px solid transparent;
  padding-bottom: 2px;
  transition: color 0.2s, border-color 0.2s;
}

.bloc5-link:hover {
  color: #c9a96e;
  border-bottom-color: #c9a96e;
}

.bloc5-link svg {
  width: 12px;
  height: 12px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: transform 0.2s;
}

.bloc5-link:hover svg {
  transform: translateX(3px);
}

@media (max-width: 767px) {
  .bloc5-wrap {
    padding: 24px 16px 0;
  }

  .bloc5-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }
}

/* =========================================================
   Bloc 7 - Aide à l'expatriation Westimmo
   ========================================================= */

section.relative.min-h-\[819px\].flex.items-center.px-12.py-24.overflow-hidden.bg-surface.font-body.text-on-surface {
  position: relative;
  min-height: 819px;
  display: flex;
  align-items: center;
  padding: 96px 48px;
  overflow: hidden;
  background: #ffffff;
  font-family: 'Inter', sans-serif;
  color: #1b1b1b;
}

section.relative.min-h-\[819px\] .grid {
  display: grid;
}

section.relative.min-h-\[819px\] .grid-cols-1 {
  grid-template-columns: 1fr;
}

section.relative.min-h-\[819px\] .gap-12 {
  gap: 48px;
}

section.relative.min-h-\[819px\] .items-center {
  align-items: center;
}

section.relative.min-h-\[819px\] .max-w-\[1720px\] {
  max-width: 1720px;
}

section.relative.min-h-\[819px\] .mx-auto {
  margin-left: auto;
  margin-right: auto;
}

section.relative.min-h-\[819px\] .w-full {
  width: 100%;
}

section.relative.min-h-\[819px\] .z-10 {
  position: relative;
  z-index: 10;
}

section.relative.min-h-\[819px\] .uppercase {
  text-transform: uppercase;
}

section.relative.min-h-\[819px\] .tracking-\[0\.18em\] {
  letter-spacing: 0.18em;
}

section.relative.min-h-\[819px\] .tracking-\[0\.16em\] {
  letter-spacing: 0.16em;
}

section.relative.min-h-\[819px\] .text-secondary {
  color: #745a27;
}

section.relative.min-h-\[819px\] .font-semibold {
  font-weight: 600;
}

section.relative.min-h-\[819px\] .mb-5 {
  margin-bottom: 20px;
}

section.relative.min-h-\[819px\] .block {
  display: block;
}

section.relative.min-h-\[819px\] .text-\[11px\] {
  font-size: 11px;
}

section.relative.min-h-\[819px\] .font-headline {
  font-family: 'Noto Serif', 'Playfair Display', serif;
}

section.relative.min-h-\[819px\] .text-\[34px\] {
  font-size: 34px;
}

section.relative.min-h-\[819px\] .text-primary {
  color: #005566;
}

section.relative.min-h-\[819px\] .leading-\[1\.08\] {
  line-height: 1.08;
}

section.relative.min-h-\[819px\] .mb-6 {
  margin-bottom: 24px;
}

section.relative.min-h-\[819px\] .text-\[15px\] {
  font-size: 15px;
}

section.relative.min-h-\[819px\] .text-on-surface-variant {
  color: #3f484c;
}

section.relative.min-h-\[819px\] .max-w-md {
  max-width: 448px;
}

section.relative.min-h-\[819px\] .mb-8 {
  margin-bottom: 32px;
}

section.relative.min-h-\[819px\] .leading-\[1\.8\] {
  line-height: 1.8;
}

section.relative.min-h-\[819px\] .font-light {
  font-weight: 300;
}

section.relative.min-h-\[819px\] .flex {
  display: flex;
}

section.relative.min-h-\[819px\] .flex-wrap {
  flex-wrap: wrap;
}

section.relative.min-h-\[819px\] .gap-6 {
  gap: 24px;
}

section.relative.min-h-\[819px\] .mt-4 {
  margin-top: 16px;
}

section.relative.min-h-\[819px\] .inline-flex {
  display: inline-flex;
}

section.relative.min-h-\[819px\] .gap-2 {
  gap: 8px;
}

section.relative.min-h-\[819px\] .text-\[\#25D366\] {
  color: #25D366;
}

section.relative.min-h-\[819px\] .border-b {
  border-bottom-width: 1px;
  border-bottom-style: solid;
}

section.relative.min-h-\[819px\] .border-transparent {
  border-color: transparent;
}

section.relative.min-h-\[819px\] .pb-0\.5 {
  padding-bottom: 2px;
}

section.relative.min-h-\[819px\] .transition-all {
  transition: all 0.25s ease;
}

section.relative.min-h-\[819px\] .w-fit {
  width: fit-content;
}

section.relative.min-h-\[819px\] a {
  text-decoration: none;
}

section.relative.min-h-\[819px\] .hover\:border-\[\#25D366\]:hover {
  border-color: #25D366;
}

section.relative.min-h-\[819px\] .hover\:text-primary:hover {
  color: #005566;
}

section.relative.min-h-\[819px\] .hover\:border-primary:hover {
  border-color: #005566;
}

section.relative.min-h-\[819px\] .w-3\.5 {
  width: 14px;
}

section.relative.min-h-\[819px\] .h-3\.5 {
  height: 14px;
}

section.relative.min-h-\[819px\] .flex-shrink-0 {
  flex-shrink: 0;
}

section.relative.min-h-\[819px\] .relative {
  position: relative;
}

section.relative.min-h-\[819px\] .aspect-\[4\/5\] {
  aspect-ratio: 4 / 5;
}

section.relative.min-h-\[819px\] .overflow-hidden {
  overflow: hidden;
}

section.relative.min-h-\[819px\] .rounded-xl {
  border-radius: 12px;
}

section.relative.min-h-\[819px\] .shadow-2xl {
  box-shadow: 0 25px 50px rgba(0,0,0,0.25);
}

section.relative.min-h-\[819px\] .h-full {
  height: 100%;
}

section.relative.min-h-\[819px\] .object-cover {
  object-fit: cover;
}

section.relative.min-h-\[819px\] .absolute {
  position: absolute;
}

section.relative.min-h-\[819px\] .inset-0 {
  inset: 0;
}

section.relative.min-h-\[819px\] .bg-gradient-to-t {
  background-image: linear-gradient(to top, rgba(0,85,102,0.20), transparent);
}

section.relative.min-h-\[819px\] .hidden {
  display: none;
}

section.relative.min-h-\[819px\] .-bottom-12 {
  bottom: -48px;
}

section.relative.min-h-\[819px\] .-left-12 {
  left: -48px;
}

section.relative.min-h-\[819px\] .p-10 {
  padding: 40px;
}

section.relative.min-h-\[819px\] .max-w-xs {
  max-width: 320px;
}

section.relative.min-h-\[819px\] .glass-panel {
  background: #ffffff;
  box-shadow: 0 24px 48px rgba(27,27,27,0.06);
}

section.relative.min-h-\[819px\] .mb-3 {
  margin-bottom: 12px;
}

section.relative.min-h-\[819px\] .italic {
  font-style: italic;
}

section.relative.min-h-\[819px\] .text-\[18px\] {
  font-size: 18px;
}

section.relative.min-h-\[819px\] .leading-\[1\.5\] {
  line-height: 1.5;
}

section.relative.min-h-\[819px\] p,
section.relative.min-h-\[819px\] h1 {
  margin-top: 0;
}

@media (min-width: 768px) {
  section.relative.min-h-\[819px\] .md\:grid-cols-12 {
    grid-template-columns: repeat(12, minmax(0, 1fr));
  }

  section.relative.min-h-\[819px\] .md\:col-span-5 {
    grid-column: span 5 / span 5;
  }

  section.relative.min-h-\[819px\] .md\:col-span-7 {
    grid-column: span 7 / span 7;
  }

  section.relative.min-h-\[819px\] .md\:text-xs {
    font-size: 12px;
  }

  section.relative.min-h-\[819px\] .md\:text-\[54px\] {
    font-size: 54px;
  }

  section.relative.min-h-\[819px\] .md\:text-\[16px\] {
    font-size: 16px;
  }

  section.relative.min-h-\[819px\] .md\:aspect-\[16\/10\] {
    aspect-ratio: 16 / 10;
  }
}

@media (min-width: 1024px) {
  section.relative.min-h-\[819px\] .lg\:block {
    display: block;
  }
}

@media (max-width: 767px) {
  section.relative.min-h-\[819px\].flex.items-center.px-12.py-24 {
    min-height: auto;
    padding: 64px 20px;
  }
}


/* =========================================================
   Bloc 8 - Parcours Client Westimmo
   ========================================================= */

.ws-steps {
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem;
  font-family: 'Inter', sans-serif;
}

.ws-steps-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 80px 48px;
}

@media (min-width: 768px) {
  .ws-steps-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1200px) {
  .ws-steps-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.ws-step {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.ws-step-img {
  position: relative;
  height: 260px;
  overflow: hidden;
  border-radius: 12px;
}

.ws-step-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s;
}

.ws-step:hover .ws-step-img img {
  transform: scale(1.05);
}

.ws-step-number {
  position: absolute;
  top: 16px;
  left: 16px;
  background: rgba(255,255,255,0.9);
  backdrop-filter: blur(6px);
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  color: #005566;
}

.ws-step-title {
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  color: #005566;
}

.ws-step-text {
  font-size: 14px;
  line-height: 1.7;
  color: #3f484c;
}


/* =========================================================
   Bloc 9 - Bandeau Westimmo
   ========================================================= */

.ws-band {
  position: relative;
  width: 100%;
  height: 420px;
  overflow: hidden;
  font-family: 'Inter', sans-serif;
}

.ws-band__img {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 125%;
  object-fit: cover;
  object-position: center;
  display: block;
  will-change: transform;
  transform: translate3d(-50%, -50%, 0);
}

.ws-band__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(13,28,38,0.72) 0%,
    rgba(13,28,38,0.38) 55%,
    rgba(13,28,38,0.12) 100%
  );
  z-index: 1;
}

.ws-band__content {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0 32px;
  z-index: 2;
}

.ws-band__eyebrow {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 4px;
  color: #d9b25f;
  text-transform: uppercase;
  margin: 0 0 22px;
  text-shadow: 0 1px 8px rgba(0,0,0,0.18);
}

.ws-band__title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 42px;
  font-weight: 400;
  color: #ffffff;
  line-height: 1.25;
  margin: 0 0 28px;
  max-width: 680px;
}

.ws-band__title em {
  font-style: italic;
  color: #e4bf6a;
  text-shadow: 0 1px 10px rgba(0,0,0,0.22);
}

.ws-band__rule {
  width: 48px;
  height: 1px;
  background: #d9b25f;
  margin: 0 auto;
  opacity: 1;
}

@media (max-width: 768px) {
  .ws-band {
    height: 320px;
  }

  .ws-band__title {
    font-size: 30px;
  }

  .ws-band__img {
    height: 118%;
  }
}


/* =========================================================
   Bloc 10 - Carrousel programmes Westimmo
   ========================================================= */

.rem-carousel *,
.rem-carousel *::before,
.rem-carousel *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

.rem-carousel {
  --rem-dark: #1d1d1d;
  --rem-dark2: #333333;
  --rem-grey: #6d6d6d;
  --rem-light: #f2f2f2;
  --rem-blue: #156e83;
  --rem-wa: #25d366;
  --rem-red: #b80d2d;
  --rem-white: #ffffff;
  font-family: 'Inter', sans-serif;
  width: 100%;
  max-width: 95%;
  margin: 0 auto;
  background: var(--rem-light);
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 8px 48px rgba(0,0,0,0.13);
}

.rem-carousel__header {
  padding: 40px 48px 32px;
  background: var(--rem-white);
  border-bottom: 1px solid #e8e8e8;
  text-align: center;
}

.rem-carousel__eyebrow {
  display: inline-block;
  font-size: 10px;
  letter-spacing: 3.5px;
  text-transform: uppercase;
  color: var(--rem-blue);
  font-weight: 500;
  margin-bottom: 10px;
  font-family: 'Inter', sans-serif;
}

.rem-carousel__title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(24px, 3.5vw, 38px);
  color: var(--rem-dark);
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 8px;
}

.rem-carousel__title em {
  font-style: italic;
  color: var(--rem-blue);
  font-weight: 400;
}

.rem-carousel__subtitle {
  font-size: 14px;
  color: var(--rem-grey);
  font-weight: 300;
  letter-spacing: 0.3px;
}

.rem-carousel__stage {
  position: relative;
  overflow: hidden;
}

.rem-carousel__progress {
  position: absolute;
  top: 0;
  left: 0;
  height: 3px;
  background: var(--rem-blue);
  width: 0%;
  z-index: 20;
}

.rem-carousel__track {
  display: flex;
  transition: transform 0.75s cubic-bezier(0.77, 0, 0.175, 1);
  will-change: transform;
}

.rem-slide {
  min-width: 100%;
  display: grid;
  grid-template-columns: 55% 45%;
  min-height: 560px;
}

.rem-slide__img-panel {
  position: relative;
  overflow: hidden;
}

.rem-slide__img-panel img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  display: block;
  transition: transform 1.1s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  transform: scale(1.06);
}

.rem-slide.is-active .rem-slide__img-panel img {
  transform: scale(1);
}

.rem-slide__img-panel::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to right, rgba(29,29,29,0.20) 0%, transparent 55%),
    linear-gradient(to top, rgba(29,29,29,0.45) 0%, transparent 45%);
  z-index: 1;
  pointer-events: none;
}

.rem-slide__badge {
  position: absolute;
  top: 24px;
  left: 24px;
  z-index: 5;
  background: var(--rem-blue);
  color: var(--rem-white);
  font-size: 9px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  padding: 6px 14px;
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  border-radius: 2px;
}

.rem-slide__img-price {
  position: absolute;
  bottom: 24px;
  left: 24px;
  z-index: 5;
}

.rem-slide__img-price-label {
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.8);
  font-weight: 300;
  display: block;
  margin-bottom: 3px;
  font-family: 'Inter', sans-serif;
}

.rem-slide__img-price-value {
  font-family: 'Playfair Display', serif;
  font-size: clamp(18px, 2vw, 26px);
  color: var(--rem-white);
  font-weight: 700;
  text-shadow: 0 2px 14px rgba(0,0,0,0.45);
}

.rem-slide__content {
  background: var(--rem-white);
  padding: 48px 44px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.rem-slide__content::before {
  content: '';
  position: absolute;
  left: 0;
  top: 10%;
  bottom: 10%;
  width: 3px;
  background: linear-gradient(to bottom, transparent, var(--rem-blue), transparent);
  opacity: 0.3;
}

.rem-slide__tag {
  font-size: 10px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--rem-blue);
  font-weight: 500;
  margin-bottom: 14px;
  font-family: 'Inter', sans-serif;
}

.rem-slide__title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(26px, 2.8vw, 38px);
  color: var(--rem-dark);
  font-weight: 600;
  line-height: 1.1;
  margin-bottom: 4px;
}

.rem-slide__title-sub {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-weight: 400;
  font-size: 0.68em;
  color: var(--rem-grey);
  display: block;
  margin-top: 4px;
}

.rem-slide__divider {
  width: 40px;
  height: 2px;
  background: var(--rem-blue);
  margin: 22px 0;
  border-radius: 1px;
}

.rem-slide__desc {
  font-size: 14px;
  line-height: 1.85;
  color: var(--rem-grey);
  font-weight: 400;
  margin-bottom: 28px;
}

.rem-slide__stats {
  display: flex;
  margin-bottom: 28px;
  border: 1px solid #e8e8e8;
  border-radius: 4px;
  overflow: hidden;
}

.rem-stat {
  flex: 1;
  text-align: center;
  padding: 12px 8px;
  background: var(--rem-light);
}

.rem-stat + .rem-stat {
  border-left: 1px solid #e8e8e8;
}

.rem-stat__value {
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  color: var(--rem-dark);
  font-weight: 700;
  display: block;
  line-height: 1;
  margin-bottom: 3px;
}

.rem-stat__label {
  font-size: 9px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--rem-grey);
  font-family: 'Inter', sans-serif;
}

.rem-slide__ctas {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.rem-btn {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  text-decoration: none;
  padding: 12px 22px;
  border-radius: 3px;
  transition: all 0.25s ease;
  font-weight: 500;
  cursor: pointer;
  border: none;
  white-space: nowrap;
}

.rem-btn--primary {
  background: var(--rem-blue);
  color: var(--rem-white);
}

.rem-btn--primary:hover {
  background: #0e5165;
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(21,110,131,0.25);
}

.rem-btn--wa {
  background: transparent;
  color: var(--rem-wa);
  border: 1.5px solid var(--rem-wa);
}

.rem-btn--wa:hover {
  background: var(--rem-wa);
  color: var(--rem-white);
  transform: translateY(-1px);
}

.rem-carousel__nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  padding: 22px 0 26px;
  background: var(--rem-white);
  border-top: 1px solid #e8e8e8;
}

.rem-nav-arrow {
  width: 44px;
  height: 44px;
  border: 1.5px solid #d8d8d8;
  border-radius: 50%;
  background: transparent;
  color: var(--rem-grey);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.25s;
}

.rem-nav-arrow:hover {
  border-color: var(--rem-blue);
  color: var(--rem-blue);
  background: rgba(21,110,131,0.05);
}

.rem-nav-dots {
  display: flex;
  gap: 10px;
  align-items: center;
}

.rem-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #d0d0d0;
  cursor: pointer;
  transition: all 0.35s;
  border: none;
  padding: 0;
}

.rem-dot.is-active {
  background: var(--rem-blue);
  width: 28px;
  border-radius: 4px;
}

.rem-nav-counter {
  font-family: 'Playfair Display', serif;
  font-size: 13px;
  color: var(--rem-grey);
  letter-spacing: 1.5px;
  min-width: 52px;
  text-align: center;
}

.rem-nav-counter strong {
  color: var(--rem-blue);
  font-weight: 700;
}

@keyframes remFadeUp {
  from {
    opacity: 0;
    transform: translateY(14px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.rem-slide.is-active .rem-slide__tag {
  animation: remFadeUp 0.55s ease both 0.05s;
}

.rem-slide.is-active .rem-slide__title {
  animation: remFadeUp 0.55s ease both 0.12s;
}

.rem-slide.is-active .rem-slide__divider {
  animation: remFadeUp 0.55s ease both 0.18s;
}

.rem-slide.is-active .rem-slide__desc {
  animation: remFadeUp 0.55s ease both 0.22s;
}

.rem-slide.is-active .rem-slide__stats {
  animation: remFadeUp 0.55s ease both 0.28s;
}

.rem-slide.is-active .rem-slide__ctas {
  animation: remFadeUp 0.55s ease both 0.34s;
}

@media (max-width: 900px) {
  .rem-slide {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .rem-slide__img-panel {
    height: 320px;
    position: relative;
  }

  .rem-slide__content {
    padding: 32px 28px 36px;
  }

  .rem-carousel__header {
    padding: 28px 24px 22px;
  }
}

@media (max-width: 600px) {
  .rem-slide__img-panel {
    height: 260px;
  }

  .rem-slide__content {
    padding: 24px 20px 28px;
  }

  .rem-slide__ctas {
    flex-direction: column;
  }

  .rem-btn {
    justify-content: center;
  }

  .rem-nav-arrow {
    width: 38px;
    height: 38px;
  }

  .rem-carousel__header {
    padding: 22px 16px 18px;
  }
}

@media (max-width: 380px) {
  .rem-slide__img-panel {
    height: 210px;
  }
}


/* =========================================================
   Bloc 11 - Pourquoi Westimmo
   ========================================================= */

/* =========================================================
   Bloc 12 - Profils projet Westimmo
   ========================================================= */

.bloc8,
.bloc8 *,
.bloc8 *::before,
.bloc8 *::after {
  box-sizing: border-box;
}

.bloc8 {
  --dark: #1d1d1d;
  --teal: #156e83;
  --teal-light: #e8f4f7;
  --gold: #c9a96e;
  --white: #ffffff;
  --muted: #6b7280;
  --border: rgba(21,110,131,0.12);

  background: var(--white);
  padding: 64px 24px;
  position: relative;
  overflow: hidden;
  font-family: 'Inter', sans-serif;
  color: var(--dark);
}

.bloc8::before {
  content: '';
  position: absolute;
  top: -160px;
  right: -160px;
  width: 520px;
  height: 520px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(21,110,131,0.06) 0%, transparent 70%);
  pointer-events: none;
}

.bloc8-inner {
  max-width: 1500px;
  margin: 0 auto;
}

.bloc8-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: end;
  margin-bottom: 72px;
}

.bloc8-eyebrow {
  display: inline-block;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--teal);
  margin-bottom: 18px;
}

.bloc8-header h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 2.8vw, 2.4rem);
  font-weight: 500;
  line-height: 1.25;
  letter-spacing: -0.01em;
  color: var(--dark);
  margin: 0;
}

.bloc8-header-right p {
  font-size: 16px;
  line-height: 1.75;
  color: var(--muted);
  max-width: 480px;
  margin: 0;
}

.bloc8-header h2 span {
  display: inline;
  background: linear-gradient(to right, rgba(201,169,110,0.25), rgba(201,169,110,0.25));
  background-size: 100% 8px;
  background-position: 0 88%;
  background-repeat: no-repeat;
}

.bloc8-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
}

.bloc8-card {
  background: var(--white);
  padding: 40px 36px 44px;
  position: relative;
  transition: background 0.25s ease;
  overflow: hidden;
}

.bloc8-card:hover {
  background: var(--teal-light);
}

.bloc8-card-watermark {
  position: absolute;
  top: 16px;
  right: 20px;
  font-family: 'Playfair Display', serif;
  font-size: 72px;
  font-weight: 600;
  color: rgba(21,110,131,0.06);
  line-height: 1;
  pointer-events: none;
  user-select: none;
  transition: color 0.25s;
}

.bloc8-card:hover .bloc8-card-watermark {
  color: rgba(21,110,131,0.10);
}

.bloc8-card-icon {
  width: 48px;
  height: 48px;
  border: 1.5px solid var(--border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  transition: border-color 0.25s, background 0.25s;
}

.bloc8-card:hover .bloc8-card-icon {
  border-color: var(--teal);
  background: var(--white);
}

.bloc8-card-icon svg {
  width: 20px;
  height: 20px;
  stroke: var(--teal);
  fill: none;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.bloc8-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  font-weight: 500;
  color: var(--dark);
  margin: 0 0 14px;
  line-height: 1.2;
}

.bloc8-card p {
  font-size: 14px;
  line-height: 1.75;
  color: var(--muted);
  margin: 0;
}

.bloc8-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.bloc8-card:hover::after {
  transform: scaleX(1);
}

.bloc8-cta {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 56px;
  flex-wrap: wrap;
}

.bloc8 .btn-teal {
  background: var(--teal);
  color: #fff !important;
  padding: 13px 32px;
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border: 1.5px solid var(--teal);
  border-radius: 9999px;
  cursor: pointer;
  text-decoration: none !important;
  display: inline-flex;
  align-items: center;
  transition: background 0.2s, color 0.2s;
}

.bloc8 .btn-teal:hover {
  background: #fff !important;
  color: var(--teal) !important;
  border-color: var(--teal);
}

.bloc8 .btn-outline {
  background: #fff;
  color: var(--teal) !important;
  padding: 13px 32px;
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border: 1.5px solid var(--teal);
  border-radius: 9999px;
  cursor: pointer;
  text-decoration: none !important;
  display: inline-flex;
  align-items: center;
  transition: background 0.2s, color 0.2s;
}

.bloc8 .btn-outline:hover {
  background: var(--teal) !important;
  color: #fff !important;
}

.bloc8 .cta-sep {
  font-size: 12px;
  color: #ccc;
  letter-spacing: 0.06em;
}

@media (max-width: 1200px) {
  .bloc8-header {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .bloc8-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 767px) {
  .bloc8 {
    padding: 40px 16px;
  }

  .bloc8-grid {
    grid-template-columns: 1fr;
  }

  .bloc8-card {
    padding: 32px 24px 36px;
  }

  .bloc8-header {
    margin-bottom: 40px;
  }

  .bloc8-cta {
    flex-direction: column;
    align-items: flex-start;
  }
}


/* =========================================================
   Bloc 13 - Pourquoi faire confiance à Westimmo
   ========================================================= */

.bloc9,
.bloc9 *,
.bloc9 *::before,
.bloc9 *::after {
  box-sizing: border-box;
}

.bloc9 {
  --dark: #1d1d1d;
  --teal: #156e83;
  --gold: #c9a96e;
  --cream: #f8f6f2;
  --muted: #6b7280;

  background: var(--cream);
  padding: 64px 24px;
  position: relative;
  overflow: hidden;
  font-family: 'Inter', sans-serif;
}

.bloc9::after {
  content: '';
  position: absolute;
  bottom: -120px;
  left: -120px;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201,169,110,0.08) 0%, transparent 70%);
  pointer-events: none;
}

.bloc9-inner {
  max-width: 1500px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.bloc9-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 72px;
}

.bloc9-eyebrow {
  display: inline-block;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--teal);
  margin-bottom: 18px;
}

.bloc9-header h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 500;
  line-height: 1.2;
  color: var(--dark);
  margin: 0 0 20px;
}

.bloc9-header p {
  font-size: 16px;
  line-height: 1.75;
  color: var(--muted);
  margin: 0;
}

.bloc9-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.bloc9-card {
  background: #fff;
  padding: 44px 40px;
  display: flex;
  gap: 28px;
  align-items: flex-start;
  border: 1px solid rgba(0,0,0,0.05);
  transition: box-shadow 0.3s ease, transform 0.3s ease;
  cursor: default;
}

.bloc9-card:hover {
  box-shadow: 0 8px 40px rgba(21,110,131,0.08);
  transform: translateY(-3px);
}

.bloc9-card-accent {
  flex-shrink: 0;
  width: 3px;
  align-self: stretch;
  background: var(--gold);
  opacity: 0.5;
  border-radius: 2px;
  transition: opacity 0.3s;
}

.bloc9-card:hover .bloc9-card-accent {
  opacity: 1;
}

.bloc9-card-content {
  flex: 1;
}

.bloc9-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 19px;
  font-weight: 500;
  color: var(--dark);
  margin: 0 0 12px;
  line-height: 1.2;
}

.bloc9-card p {
  font-size: 14.5px;
  line-height: 1.75;
  color: var(--muted);
  margin: 0;
}

.bloc9-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 60px;
  flex-wrap: wrap;
}

.bloc9 .btn-teal {
  background: var(--teal);
  color: #fff !important;
  padding: 13px 32px;
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border: 1.5px solid var(--teal);
  border-radius: 9999px;
  cursor: pointer;
  text-decoration: none !important;
  display: inline-flex;
  align-items: center;
  transition: background 0.2s, color 0.2s;
}

.bloc9 .btn-teal:hover {
  background: #fff !important;
  color: var(--teal) !important;
  border-color: var(--teal);
}

.bloc9 .btn-outline {
  background: #fff;
  color: var(--teal) !important;
  padding: 13px 32px;
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border: 1.5px solid var(--teal);
  border-radius: 9999px;
  cursor: pointer;
  text-decoration: none !important;
  display: inline-flex;
  align-items: center;
  transition: background 0.2s, color 0.2s;
}

.bloc9 .btn-outline:hover {
  background: var(--teal) !important;
  color: #fff !important;
}

.bloc9 .cta-sep {
  font-size: 12px;
  color: #ccc;
}

@media (max-width: 1200px) {
  .bloc9-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
}

@media (max-width: 767px) {
  .bloc9 {
    padding: 40px 16px;
  }

  .bloc9-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .bloc9-card {
    padding: 32px 24px;
  }

  .bloc9-header {
    margin-bottom: 40px;
  }

  .bloc9-cta {
    flex-direction: column;
  }
}

/* =========================================================
   Bloc 14 - Catégories de propriétés Westimmo
   ========================================================= */

.westimmo-categories-section,
.westimmo-categories-section *,
.westimmo-categories-section *::before,
.westimmo-categories-section *::after {
  box-sizing: border-box;
}

.westimmo-categories-section {
  padding: 80px 0;
  background: #ffffff;
}

.westimmo-categories-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
}

.westimmo-categories-header {
  text-align: center;
  margin-bottom: 60px;
}

.westimmo-categories-title {
  font-family: 'Playfair Display', serif;
  font-size: 42px;
  font-weight: 700;
  color: #1d1d1d;
  margin: 0 0 16px;
  line-height: 1.3;
  letter-spacing: -0.5px;
}

.westimmo-categories-subtitle {
  font-family: 'Inter', sans-serif;
  font-size: 18px;
  color: #6d6d6d;
  margin: 0;
  line-height: 1.6;
}

.westimmo-categories-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.westimmo-category-card {
  position: relative;
  height: 380px;
  border-radius: 12px;
  overflow: hidden;
  cursor: pointer;
  text-decoration: none;
  display: block;
}

.westimmo-category-image {
  position: absolute;
  inset: 0;
}

.westimmo-category-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.westimmo-category-card:hover .westimmo-category-image img {
  transform: scale(1.1);
}

.westimmo-category-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(29, 29, 29, 0.3) 0%,
    rgba(29, 29, 29, 0.7) 100%
  );
  transition: background 0.3s ease;
}

.westimmo-category-card:hover .westimmo-category-overlay {
  background: linear-gradient(
    to bottom,
    rgba(21, 110, 131, 0.4) 0%,
    rgba(21, 110, 131, 0.8) 100%
  );
}

.westimmo-category-content {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 30px;
}

.westimmo-category-title {
  font-family: 'Playfair Display', serif;
  font-size: 32px;
  font-weight: 700;
  color: #ffffff;
  margin: 0;
  line-height: 1.2;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.westimmo-category-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.westimmo-category-link {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: #ffffff;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.westimmo-category-arrow {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.westimmo-category-arrow svg {
  width: 16px;
  height: 16px;
  stroke: #ffffff;
  stroke-width: 2.5;
  fill: none;
}

.westimmo-category-card:hover .westimmo-category-arrow {
  background: #ffffff;
  transform: translateX(5px);
}

.westimmo-category-card:hover .westimmo-category-arrow svg {
  stroke: #156e83;
}

@media (max-width: 1200px) {
  .westimmo-categories-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
  }
}

@media (max-width: 992px) {
  .westimmo-categories-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .westimmo-category-card {
    height: 340px;
  }

  .westimmo-category-title {
    font-size: 28px;
  }
}

@media (max-width: 768px) {
  .westimmo-categories-section {
    padding: 60px 0;
  }

  .westimmo-categories-container {
    padding: 0 20px;
  }

  .westimmo-categories-header {
    margin-bottom: 40px;
  }

  .westimmo-categories-title {
    font-size: 32px;
  }

  .westimmo-categories-subtitle {
    font-size: 16px;
  }
}

@media (max-width: 576px) {
  .westimmo-categories-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .westimmo-category-card {
    height: 300px;
  }

  .westimmo-category-content {
    padding: 24px;
  }

  .westimmo-category-title {
    font-size: 26px;
  }
}


/* =========================================================
   Bloc 15 - FAQ Westimmo
   ========================================================= */

.wb-faq-section,
.wb-faq-section *,
.wb-faq-section *::before,
.wb-faq-section *::after {
  box-sizing: border-box;
}

.wb-faq-section {
  background: #ffffff;
  padding: 80px 24px;
  font-family: 'Inter', sans-serif;
}

.wb-faq-inner {
  max-width: 1500px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 80px;
  align-items: start;
}

/* LEFT */
.wb-faq-eyebrow {
  display: block;
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 600;
  color: #156e83;
  margin-bottom: 16px;
}

.wb-faq-inner h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 2.4vw, 2.2rem);
  font-weight: 500;
  color: #1d1d1d;
  line-height: 1.25;
  letter-spacing: -0.01em;
  margin: 0 0 24px;
}

.wb-faq-intro {
  font-size: 15px;
  line-height: 1.75;
  color: #6b7280;
  margin: 0;
}

.wb-faq-rule {
  width: 40px;
  height: 2px;
  background: #c9a96e;
  margin: 32px 0;
}

/* RIGHT */
.wb-faq-list {
  display: flex;
  flex-direction: column;
}

.wb-faq-item {
  border-top: 1px solid rgba(0,0,0,0.08);
  overflow: hidden;
}

.wb-faq-item:last-child {
  border-bottom: 1px solid rgba(0,0,0,0.08);
}

/* TRIGGER */
.wb-faq-trigger {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  padding: 24px 0;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
}

.wb-faq-trigger h3 {
  font-family: 'Playfair Display', serif;
  font-size: 17px;
  font-weight: 500;
  color: #1d1d1d;
  line-height: 1.35;
  margin: 0;
  transition: color 0.2s;
}

.wb-faq-trigger:hover h3 {
  color: #156e83;
}

/* ICON */
.wb-faq-icon {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 1.5px solid rgba(0,0,0,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
}

.wb-faq-icon svg {
  width: 12px;
  height: 12px;
  stroke: #1d1d1d;
  fill: none;
  stroke-width: 2;
}

/* OPEN STATE */
.wb-faq-item.is-open .wb-faq-icon {
  background: #156e83;
  border-color: #156e83;
  transform: rotate(45deg);
}

.wb-faq-item.is-open .wb-faq-icon svg {
  stroke: #fff;
}

/* BODY */
.wb-faq-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

.wb-faq-body p {
  font-size: 14.5px;
  line-height: 1.75;
  color: #6b7280;
  padding: 0 48px 24px 0;
  margin: 0;
}

/* RESPONSIVE */
@media (max-width: 1024px) {
  .wb-faq-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

@media (max-width: 767px) {
  .wb-faq-section {
    padding: 56px 16px;
  }

  .wb-faq-trigger h3 {
    font-size: 15px;
  }

  .wb-faq-body p {
    padding-right: 0;
  }
}


/* =========================================================
   Bloc 16 - Blog Westimmo
   ========================================================= */

.westimmo-blog-section,
.westimmo-blog-section *,
.westimmo-blog-section *::before,
.westimmo-blog-section *::after {
  box-sizing: border-box;
}

.westimmo-blog-section {
  padding: 80px 0;
  background: #f8f8f8;
  font-family: 'Inter', sans-serif;
}

.westimmo-blog-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
}

.westimmo-blog-header {
  text-align: center;
  margin-bottom: 60px;
}

.westimmo-blog-header-title {
  font-size: 13px;
  font-weight: 700;
  color: #6d6d6d;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin: 0;
}

.westimmo-blog-grid {
  display: grid;
  grid-template-columns: 1fr 580px;
  gap: 40px;
}

.westimmo-blog-featured {
  background: #ffffff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
}

.westimmo-blog-featured:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 32px rgba(21,110,131,0.15);
}

.westimmo-blog-featured-image {
  width: 100%;
  height: 450px;
  overflow: hidden;
}

.westimmo-blog-featured-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.westimmo-blog-featured:hover .westimmo-blog-featured-image img {
  transform: scale(1.05);
}

.westimmo-blog-featured-content {
  padding: 35px 40px 40px;
}

.westimmo-blog-featured-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.westimmo-blog-featured-date,
.westimmo-blog-featured-category {
  font-size: 13px;
  color: #6d6d6d;
}

.westimmo-blog-featured-separator,
.westimmo-blog-item-separator {
  width: 4px;
  height: 4px;
  background: #6d6d6d;
  border-radius: 50%;
}

.westimmo-blog-featured-title {
  font-size: 22px;
  font-weight: 700;
  color: #1d1d1d;
  margin: 0 0 16px;
  line-height: 1.4;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.westimmo-blog-featured-title a {
  color: #1d1d1d;
  text-decoration: none;
  transition: color 0.3s ease;
}

.westimmo-blog-featured-title a:hover {
  color: #156e83;
}

.westimmo-blog-featured-excerpt {
  font-size: 15px;
  color: #6d6d6d;
  line-height: 1.7;
  margin: 0 0 24px;
}

.westimmo-blog-featured-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 700;
  color: #156e83;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  text-decoration: none;
  transition: gap 0.3s ease;
}

.westimmo-blog-featured-link:hover {
  gap: 12px;
}

.westimmo-blog-featured-link svg {
  width: 16px;
  height: 16px;
  stroke: currentColor;
  stroke-width: 2.5;
  fill: none;
}

.westimmo-blog-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.westimmo-blog-item {
  display: grid;
  grid-template-columns: 160px 1fr;
  gap: 20px;
  background: #ffffff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
  transition: all 0.3s ease;
  text-decoration: none;
  color: inherit;
}

.westimmo-blog-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(21,110,131,0.12);
}

.westimmo-blog-item-image {
  width: 160px;
  height: 100%;
  min-height: 150px;
  overflow: hidden;
}

.westimmo-blog-item-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.westimmo-blog-item:hover .westimmo-blog-item-image img {
  transform: scale(1.05);
}

.westimmo-blog-item-content {
  padding: 20px 22px 20px 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.westimmo-blog-item-title {
  font-size: 15px;
  font-weight: 700;
  color: #1d1d1d;
  margin: 0 0 10px;
  line-height: 1.4;
  text-transform: uppercase;
  letter-spacing: 0.3px;
}

.westimmo-blog-item-meta {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}

.westimmo-blog-item-date,
.westimmo-blog-item-category {
  font-size: 12px;
  color: #6d6d6d;
}

.westimmo-blog-item-excerpt {
  font-size: 13.5px;
  color: #6d6d6d;
  line-height: 1.55;
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.westimmo-blog-message {
  text-align: center;
  color: #6d6d6d;
  grid-column: 1 / -1;
  margin: 0;
}

.westimmo-blog-message-error {
  text-align: center;
  color: #b80d2d;
  grid-column: 1 / -1;
  margin: 0;
}

@media (max-width: 1200px) {
  .westimmo-blog-grid {
    grid-template-columns: 1fr 520px;
    gap: 32px;
  }

  .westimmo-blog-featured-image {
    height: 400px;
  }
}

@media (max-width: 992px) {
  .westimmo-blog-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .westimmo-blog-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .westimmo-blog-item {
    grid-template-columns: 1fr;
  }

  .westimmo-blog-item-image {
    width: 100%;
    height: 200px;
    min-height: 200px;
  }

  .westimmo-blog-item-content {
    padding: 20px;
  }
}

@media (max-width: 768px) {
  .westimmo-blog-section {
    padding: 60px 0;
  }

  .westimmo-blog-container {
    padding: 0 20px;
  }

  .westimmo-blog-header {
    margin-bottom: 40px;
  }

  .westimmo-blog-featured-image {
    height: 300px;
  }

  .westimmo-blog-featured-content {
    padding: 28px 24px 32px;
  }

  .westimmo-blog-featured-title {
    font-size: 19px;
  }

  .westimmo-blog-list {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 576px) {
  .westimmo-blog-item {
    grid-template-columns: 1fr;
  }

  .westimmo-blog-item-image {
    width: 100%;
    height: 180px;
    min-height: 180px;
  }

  .westimmo-blog-item-content {
    padding: 20px;
  }
}