/* ============================================================
   STYLE.CSS — Base, Layout, Components
   ============================================================ */

/* ---- RESET & BASE ----------------------------------------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Inter', sans-serif;
  color: #2d2d2d;
  background: #fff;
  line-height: 1.6;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; font-family: inherit; }

/* ---- VARIABLES -------------------------------------------- */
:root {
  /* ── Bloom Conciergerie brand palette ── */
  --navy:       #2d4a36;   /* vert forêt profond, plus doux */
  --navy-light: #3d5e46;   /* vert forêt clair, hover */
  --cream:      #f5f3f0;   /* fond ivoire chaud */
  --cream-dark: #eae6e1;   /* ivoire légèrement plus sombre */
  --white:      #ffffff;
  --text:       #2a2a2a;
  --text-light: #7a8a7c;   /* gris teinté vert */
  --accent:     #8fad90;   /* vert d'eau sage — couleur principale */
  --accent-light: #b5cdb6; /* vert d'eau clair */
  --rose:       #e8b4c8;   /* rose poudré logo */
  --rose-light: #f2cdd8;   /* rose clair */
  --green:      #e8b4c8;   /* rose pour pulse dot (ex vert) */
  --shadow-sm:  0 2px 12px rgba(27,40,32,0.08);
  --shadow-md:  0 4px 24px rgba(27,40,32,0.12);
  --shadow-lg:  0 12px 48px rgba(27,40,32,0.18);
  --radius:     8px;
  --ease-out:   cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in-out: cubic-bezier(0.4, 0, 0.2, 1);
}

/* ---- UTILITIES -------------------------------------------- */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

.section-tag {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 14px;
}

.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--navy);
  line-height: 1.18;
}

.section-subtitle {
  font-size: 1rem;
  color: var(--text-light);
  margin-top: 14px;
  max-width: 560px;
  line-height: 1.75;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 4px;
  font-size: 0.88rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.25s, color 0.25s, transform 0.25s, box-shadow 0.25s;
  border: 2px solid transparent;
  letter-spacing: 0.02em;
}
.btn svg { width: 16px; height: 16px; flex-shrink: 0; }

.btn-primary {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
}
.btn-primary:hover {
  background: var(--navy-light);
  border-color: var(--navy-light);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-outline {
  background: transparent;
  color: var(--navy);
  border-color: var(--navy);
}
.btn-outline:hover {
  background: var(--navy);
  color: var(--white);
  transform: translateY(-2px);
}

.btn-white {
  background: var(--white);
  color: var(--navy);
  border-color: var(--white);
}
.btn-white:hover {
  background: var(--cream);
  transform: translateY(-2px);
}

.btn-ghost {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.45);
}
.btn-ghost:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.8);
  transform: translateY(-2px);
}

/* ============================================================
   NAVIGATION
   ============================================================ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s, box-shadow 0.3s;
}
.nav.scrolled {
  border-color: var(--cream-dark);
  box-shadow: var(--shadow-sm);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  padding: 0 24px;
  max-width: 1200px;
  margin: 0 auto;
}

/* Logo */
.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}
.nav-logo-icon {
  width: 52px; height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.nav-logo-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}
.nav-logo-icon svg { width: 24px; height: 24px; }
.nav-logo-text {
  font-family: 'Playfair Display', serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.2;
}
.nav-logo-text small {
  display: block;
  font-family: 'Inter', sans-serif;
  font-size: 0.62rem;
  font-weight: 400;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-light);
}

/* Links */
.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
}
.nav-links a {
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--text);
  position: relative;
  transition: color 0.2s;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -3px; left: 0; right: 0;
  height: 2px;
  background: var(--navy);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s var(--ease-out);
}
.nav-links a:hover { color: var(--navy); }
.nav-links a:hover::after { transform: scaleX(1); }

/* CTAs */
.nav-ctas { display: flex; align-items: center; gap: 10px; }
.nav-ctas .btn { padding: 10px 20px; font-size: 0.83rem; }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  padding: 6px;
  background: none;
  border: none;
}
.hamburger span {
  width: 22px; height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: all 0.3s var(--ease-out);
  transform-origin: center;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile menu */
.mobile-menu {
  display: none;
  position: fixed;
  top: 72px; left: 0; right: 0; bottom: 0;
  background: var(--white);
  z-index: 999;
  flex-direction: column;
  padding: 32px 24px;
  gap: 4px;
  overflow-y: auto;
}
.mobile-menu.open { display: flex; }
.mobile-menu-link {
  display: block;
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--text);
  padding: 16px 0;
  border-bottom: 1px solid var(--cream-dark);
  transition: color 0.2s;
}
.mobile-menu-link:hover { color: var(--navy); }
.mobile-menu .btn { margin-top: 8px; justify-content: center; }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  min-height: 100vh;
  background: var(--navy);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding-top: 72px;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background: url('../photo/photoConciergerie/2acf53fe-5456-413c-85c8-5ceb1dfa7d4b.JPG') 50% 0% / auto 145% no-repeat;
  opacity: 0.5;
  transform: scale(1.05);
  transition: transform 12s ease;
}
.hero-bg.loaded { transform: scale(1); }
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(45,74,54,0.85) 0%, rgba(45,74,54,0.55) 60%, rgba(45,74,54,0.30) 100%);
}
.hero-content {
  position: relative;
  z-index: 1;
  max-width: 680px;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(232,180,200,0.15);
  border: 1px solid rgba(232,180,200,0.45);
  color: var(--rose);
  font-size: 0.73rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 7px 16px;
  border-radius: 24px;
  margin-bottom: 28px;
}
.hero-badge-dot {
  width: 6px; height: 6px;
  background: var(--rose);
  border-radius: 50%;
}
.hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.4rem, 5vw, 4.2rem);
  color: var(--white);
  line-height: 1.12;
  margin-bottom: 24px;
}
.hero h1 em {
  font-style: italic;
  color: var(--rose);
}
.hero-desc {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.78);
  margin-bottom: 40px;
  max-width: 500px;
  line-height: 1.8;
}
.hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; }

/* Scroll indicator */
.hero-scroll-indicator {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  z-index: 1;
}
.hero-scroll-indicator span {
  color: rgba(255,255,255,0.5);
  font-size: 0.68rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}
.scroll-line {
  width: 1px;
  height: 48px;
  background: rgba(255,255,255,0.2);
  position: relative;
  overflow: hidden;
}
.scroll-line::after {
  content: '';
  position: absolute;
  top: -100%;
  left: 0; right: 0;
  height: 100%;
  background: rgba(255,255,255,0.6);
  animation: scrollLine 2s ease-in-out infinite;
}
@keyframes scrollLine {
  0%   { top: -100%; }
  100% { top: 100%; }
}

/* ============================================================
   STATS BAR
   ============================================================ */
.stats-bar {
  background: var(--navy);
  border-top: 1px solid rgba(255,255,255,0.07);
}
.stats-bar-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.stat-cell {
  padding: 32px 28px;
  text-align: center;
  border-right: 1px solid rgba(255,255,255,0.07);
  transition: background 0.2s;
}
.stat-cell:last-child { border-right: none; }
.stat-cell:hover { background: rgba(255,255,255,0.03); }
.stat-number {
  font-family: 'Playfair Display', serif;
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--accent);
  line-height: 1;
  display: block;
}
.stat-label {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.55);
  margin-top: 6px;
  letter-spacing: 0.04em;
}

/* ============================================================
   INTRO
   ============================================================ */
.intro {
  padding: 110px 0;
  background: var(--white);
}
.intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.intro-text {
  font-size: 1rem;
  color: var(--text-light);
  margin-top: 14px;
  line-height: 1.85;
}
.intro-cta { margin-top: 36px; display: flex; gap: 14px; flex-wrap: wrap; }
.intro-image-wrap { position: relative; }
.intro-img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  border-radius: var(--radius);
  display: block;
}
.intro-badge {
  position: absolute;
  bottom: -20px;
  left: -20px;
  background: var(--navy);
  color: var(--white);
  padding: 22px 26px;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
}
.intro-badge-num {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem;
  color: var(--accent);
  line-height: 1;
}
.intro-badge-label {
  font-size: 0.78rem;
  opacity: 0.8;
  margin-top: 4px;
}

/* ============================================================
   PERFORMANCES
   ============================================================ */
.performances {
  padding: 110px 0;
  background: var(--cream);
}
.performances-header { text-align: center; margin-bottom: 64px; }
.performances-header .section-subtitle { margin: 14px auto 0; }

.perf-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.perf-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 40px 32px;
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s var(--ease-out), box-shadow 0.3s;
}
.perf-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}
.perf-card.featured {
  background: var(--navy);
  color: var(--white);
}
.perf-icon {
  width: 44px; height: 44px;
  background: var(--cream);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
}
.perf-card.featured .perf-icon {
  background: rgba(255,255,255,0.1);
}
.perf-icon svg { width: 20px; height: 20px; color: var(--navy); }
.perf-card.featured .perf-icon svg { color: var(--accent); }
.perf-number {
  font-family: 'Playfair Display', serif;
  font-size: 3rem;
  font-weight: 700;
  color: var(--navy);
  line-height: 1;
}
.perf-card.featured .perf-number { color: var(--accent); }
.perf-desc {
  font-size: 0.9rem;
  color: var(--text-light);
  margin-top: 10px;
  line-height: 1.65;
}
.perf-card.featured .perf-desc { color: rgba(255,255,255,0.7); }

/* ============================================================
   SERVICES
   ============================================================ */
.services {
  padding: 110px 0;
  background: var(--white);
}
.services-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.services-left .section-subtitle { margin-top: 12px; }

/* Tabs */
.tabs {
  display: flex;
  margin: 40px 0 0;
  border-bottom: 2px solid var(--cream-dark);
}
.tab-btn {
  padding: 12px 28px 14px;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text-light);
  border: none;
  background: transparent;
  position: relative;
  transition: color 0.25s;
}
.tab-btn::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 0; right: 0;
  height: 2px;
  background: var(--navy);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s var(--ease-out);
}
.tab-btn.active { color: var(--navy); }
.tab-btn.active::after { transform: scaleX(1); }

.tab-panel { display: none; padding-top: 8px; }
.tab-panel.active { display: block; }

.service-item {
  display: flex;
  gap: 18px;
  padding: 20px 0;
  border-bottom: 1px solid var(--cream-dark);
  transition: background 0.2s;
}
.service-item:last-child { border-bottom: none; }
.service-icon {
  width: 42px; height: 42px;
  background: var(--cream);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background 0.2s;
}
.service-item:hover .service-icon { background: var(--cream-dark); }
.service-icon svg { width: 20px; height: 20px; color: var(--navy); }
.service-name {
  font-weight: 600;
  color: var(--navy);
  font-size: 0.93rem;
  margin-bottom: 4px;
}
.service-desc { font-size: 0.85rem; color: var(--text-light); line-height: 1.6; }

/* Services image */
.services-image { position: relative; }
.services-img {
  width: 100%;
  height: 540px;
  object-fit: cover;
  border-radius: var(--radius);
  display: block;
}
.services-quote {
  position: absolute;
  bottom: 24px; right: -16px;
  background: var(--cream);
  padding: 22px 24px;
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
  max-width: 220px;
}
.services-quote p {
  font-size: 0.83rem;
  color: var(--text-light);
  font-style: italic;
  line-height: 1.65;
}
.services-quote strong {
  display: block;
  font-style: normal;
  color: var(--navy);
  font-size: 0.82rem;
  margin-top: 10px;
}

/* ============================================================
   BENEFITS
   ============================================================ */
.benefits {
  padding: 110px 0;
  background: var(--navy);
  position: relative;
  overflow: hidden;
}
.benefits::before {
  content: '';
  position: absolute;
  top: -40%;
  right: -10%;
  width: 600px; height: 600px;
  border-radius: 50%;
  background: rgba(201,169,110,0.04);
  pointer-events: none;
}
.benefits-header { text-align: center; margin-bottom: 64px; }
.benefits-header .section-title { color: var(--white); }
.benefits-header .section-subtitle { color: rgba(255,255,255,0.6); margin: 14px auto 0; }

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.benefit-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius);
  padding: 40px 32px;
  transition: background 0.3s, transform 0.3s var(--ease-out), border-color 0.3s;
}
.benefit-card:hover {
  background: rgba(255,255,255,0.09);
  border-color: rgba(255,255,255,0.16);
  transform: translateY(-6px);
}
.benefit-icon {
  width: 52px; height: 52px;
  background: rgba(201,169,110,0.12);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  transition: background 0.3s;
}
.benefit-card:hover .benefit-icon { background: rgba(201,169,110,0.2); }
.benefit-icon svg { width: 24px; height: 24px; color: var(--accent); }
.benefit-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.18rem;
  color: var(--white);
  margin-bottom: 12px;
}
.benefit-text { font-size: 0.88rem; color: rgba(255,255,255,0.6); line-height: 1.75; }

/* ============================================================
   PROPERTIES
   ============================================================ */
.properties {
  padding: 110px 0;
  background: var(--cream);
  overflow: hidden;
}
.properties-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 48px;
  flex-wrap: wrap;
  gap: 20px;
}
.carousel-nav { display: flex; gap: 10px; }
.carousel-btn {
  width: 44px; height: 44px;
  border-radius: 50%;
  border: 2px solid var(--navy);
  background: transparent;
  color: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.25s, color 0.25s, transform 0.2s;
}
.carousel-btn:hover {
  background: var(--navy);
  color: var(--white);
  transform: scale(1.08);
}
.carousel-btn svg { width: 18px; height: 18px; }

.carousel-overflow { overflow: hidden; }

/* Properties carousel: no fade — cards span full width */
.properties .carousel-overflow {
  overflow: hidden;
}

.carousel-track {
  display: flex;
  gap: 24px;
  transition: transform 0.55s var(--ease-out);
}

/* Properties carousel: exact-fit gap so 5 × 216 + 4 × 18 = 1152 (= container content width) */
.properties .carousel-track {
  gap: 18px;
}

/* Property card — sized to fit 5 cards across the full container width */
.prop-card {
  flex: 0 0 216px;
  width: 216px;
  min-width: 216px;
  max-width: 216px;
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: box-shadow 0.3s, transform 0.3s var(--ease-out);
}
.prop-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}
.prop-img {
  position: relative;
  height: 150px;
  overflow: hidden;
}
.prop-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s var(--ease-out);
}
.prop-card:hover .prop-img img { transform: scale(1.05); }
.prop-tag {
  position: absolute;
  top: 14px; left: 14px;
  background: var(--navy);
  color: var(--white);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  padding: 4px 12px;
  border-radius: 20px;
}
.prop-body { padding: 16px; }
.prop-name {
  font-family: 'Playfair Display', serif;
  font-size: 0.95rem;
  color: var(--navy);
  margin-bottom: 10px;
  line-height: 1.25;
}
.prop-meta {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 14px;
}
.prop-meta-item {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 0.7rem;
  color: var(--text-light);
}
.prop-meta-item svg { width: 11px; height: 11px; flex-shrink: 0; }
.prop-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 12px;
  border-top: 1px solid var(--cream-dark);
}
.prop-link {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--navy);
  display: flex;
  align-items: center;
  gap: 5px;
  transition: gap 0.25s;
}
.prop-link:hover { gap: 9px; }
.prop-link svg { width: 12px; height: 12px; }
.prop-stars { color: #f5a623; font-size: 0.75rem; letter-spacing: 1px; }
.prop-tag {
  font-size: 0.62rem !important;
  padding: 3px 9px !important;
  top: 10px !important;
  left: 10px !important;
}

/* ============================================================
   CITY BANNER — Parallaxe Nancy
   ============================================================ */
.city-banner {
  position: relative;
  height: 78vh;
  min-height: 520px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.city-bg {
  position: absolute;
  top: -80px;
  left: 0;
  right: 0;
  bottom: -80px;
  background: url('../photo/photoVille/place-stanislas.jpg') center / cover no-repeat;
  will-change: transform;
  transition: transform 0s linear;
}
.city-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    160deg,
    rgba(26, 37, 32, 0.72) 0%,
    rgba(26, 37, 32, 0.48) 55%,
    rgba(26, 37, 32, 0.65) 100%
  );
}
.city-content {
  position: relative;
  z-index: 1;
  text-align: center;
  color: #fff;
  padding: 0 24px;
  max-width: 760px;
}
.city-tag {
  border-color: rgba(232, 180, 200, 0.45);
  color: var(--rose-light);
  background: rgba(232, 180, 200, 0.12);
}
.city-title {
  font-size: clamp(2.4rem, 5vw, 4rem);
  font-weight: 700;
  color: #fff;
  line-height: 1.12;
  margin: 22px 0 20px;
  letter-spacing: -0.02em;
}
.city-title em {
  font-style: italic;
  color: var(--rose-light);
}
.city-subtitle {
  font-size: clamp(0.92rem, 1.5vw, 1.05rem);
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.75;
  margin-bottom: 40px;
}
.city-subtitle strong { color: #fff; font-weight: 600; }
.city-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}
.city-pill {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 8px 18px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.9);
  letter-spacing: 0.03em;
  transition: background 0.3s, border-color 0.3s;
}
.city-pill:hover {
  background: rgba(255, 255, 255, 0.18);
  border-color: rgba(255, 255, 255, 0.5);
}
@media (max-width: 640px) {
  .city-banner { height: 90vh; }
  .city-pills   { flex-direction: column; align-items: center; }
}

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonials {
  padding: 110px 0;
  background: var(--white);
  overflow: hidden;
}
.testi-header { text-align: center; margin-bottom: 60px; }
.testi-header .section-subtitle { margin: 14px auto 0; }

.testi-track {
  display: flex;
  gap: 24px;
  transition: transform 0.55s var(--ease-out);
}
.testi-card {
  flex: 0 0 380px;
  width: 380px;
  background: var(--cream);
  border-radius: var(--radius);
  padding: 36px;
  box-sizing: border-box;
}
.testi-stars { color: #f5a623; font-size: 1rem; letter-spacing: 2px; margin-bottom: 16px; }
.testi-text {
  font-size: 0.93rem;
  color: var(--text);
  line-height: 1.8;
  font-style: italic;
  margin-bottom: 24px;
}
.testi-author { display: flex; align-items: center; gap: 14px; }
.testi-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--navy);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1rem;
  flex-shrink: 0;
  overflow: hidden;
}
.testi-name { font-weight: 600; color: var(--navy); font-size: 0.88rem; }
.testi-date { font-size: 0.75rem; color: var(--text-light); margin-top: 2px; }

.testi-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 44px;
}
.testi-dots { display: flex; gap: 8px; align-items: center; }
.testi-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--cream-dark);
  cursor: pointer;
  transition: all 0.35s var(--ease-out);
  border: none;
  padding: 0;
}
.testi-dot.active {
  background: var(--navy);
  width: 24px;
  border-radius: 4px;
}

/* ============================================================
   CONTACT
   ============================================================ */
.contact {
  padding: 110px 0;
  background: var(--cream);
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.contact-text {
  font-size: 1rem;
  color: var(--text-light);
  margin-top: 14px;
  line-height: 1.85;
}
.contact-actions {
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.contact-action {
  display: flex;
  align-items: center;
  gap: 14px;
  background: var(--white);
  border: 1.5px solid var(--cream-dark);
  border-radius: var(--radius);
  padding: 16px 20px;
  transition: border-color 0.25s, box-shadow 0.25s, transform 0.25s;
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--text);
}
.contact-action:hover {
  border-color: var(--navy);
  box-shadow: var(--shadow-sm);
  transform: translateX(4px);
}
.contact-action-icon {
  width: 38px; height: 38px;
  background: var(--cream);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-action-icon svg { width: 18px; height: 18px; color: var(--navy); }

/* Form */
.form-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 44px;
  box-shadow: var(--shadow-md);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { margin-bottom: 20px; }
.form-group:last-of-type { margin-bottom: 0; }

.form-label {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 8px;
  letter-spacing: 0.04em;
}
.form-control {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--cream-dark);
  border-radius: 4px;
  font-size: 0.88rem;
  color: var(--text);
  background: var(--white);
  transition: border-color 0.25s, box-shadow 0.25s;
  font-family: 'Inter', sans-serif;
  outline: none;
  appearance: none;
}
.form-control:focus {
  border-color: var(--navy);
  box-shadow: 0 0 0 3px rgba(27,40,32,0.08);
}
.form-control::placeholder { color: #bbb; }
textarea.form-control { resize: vertical; min-height: 120px; }

.form-check {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin: 20px 0 24px;
}
.form-check input[type="checkbox"] { margin-top: 3px; accent-color: var(--navy); flex-shrink: 0; }
.form-check-label { font-size: 0.8rem; color: var(--text-light); line-height: 1.6; }
.btn-submit { width: 100%; justify-content: center; }

/* Submit states */
.btn-submit.success {
  background: #2d7a4f !important;
  border-color: #2d7a4f !important;
  pointer-events: none;
}
.form-control.field-error {
  border-color: #e53e3e !important;
  box-shadow: 0 0 0 3px rgba(229,62,62,0.12) !important;
}
@keyframes spin {
  to { transform: rotate(360deg); }
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--navy);
  color: var(--white);
  padding: 72px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(255,255,255,0.09);
}
.footer-brand .nav-logo-icon { background: rgba(255,255,255,0.1); margin-bottom: 16px; }
.footer-brand p {
  font-size: 0.86rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.75;
  margin-top: 14px;
  max-width: 280px;
}
.footer-social { display: flex; gap: 10px; margin-top: 20px; }
.footer-social a {
  width: 36px; height: 36px;
  background: rgba(255,255,255,0.07);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.25s, transform 0.25s;
}
.footer-social a:hover {
  background: rgba(255,255,255,0.16);
  transform: translateY(-2px);
}
.footer-social svg { width: 15px; height: 15px; color: var(--white); }

.footer-col h4 {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-bottom: 20px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col a {
  font-size: 0.86rem;
  color: rgba(255,255,255,0.65);
  transition: color 0.2s;
}
.footer-col a:hover { color: var(--white); }

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  padding: 20px 0;
}
.footer-bottom p,
.footer-bottom a {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.38);
}
.footer-bottom a:hover { color: rgba(255,255,255,0.7); }

/* ============================================================
   JOIN — Devenez propriétaire partenaire
   ============================================================ */
.join {
  padding: var(--section-y) 0;
  background: var(--off-white);
}

.join-header {
  margin-bottom: 56px;
}

/* Galerie 3 colonnes — logos plateformes */
.join-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 56px;
}

.join-platform-card {
  background: var(--white);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(27,40,32,.07);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 32px;
  transition: transform .3s var(--ease-out), box-shadow .3s;
}
.join-platform-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 36px rgba(27,40,32,.13);
}
.join-platform-card img {
  width: 100%;
  max-height: 200px;
  object-fit: contain;
  display: block;
}

/* Bas de section : badge superhost + CTA */
.join-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
  background: var(--navy);
  border-radius: 16px;
  padding: 32px 40px;
}

.join-tagline {
  display: flex;
  align-items: center;
  gap: 20px;
  color: var(--white);
}
.join-tagline strong {
  display: block;
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 4px;
  color: var(--accent);
}
.join-tagline p {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.65);
  margin: 0;
}

.join-superhost-badge {
  width: 52px; height: 52px;
  background: rgba(201,169,110,0.15);
  border: 1.5px solid var(--accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: var(--accent);
  flex-shrink: 0;
}

.join-cta {
  white-space: nowrap;
  flex-shrink: 0;
}

@media (max-width: 768px) {
  .join-gallery  { grid-template-columns: 1fr; }
  .join-platform-card { padding: 24px; }
  .join-bottom   { flex-direction: column; align-items: flex-start; padding: 24px; }
  .join-cta      { width: 100%; justify-content: center; }
}

/* ============================================================
   FLOATING CTA
   ============================================================ */
.floating-cta {
  position: fixed;
  bottom: 28px; right: 28px;
  z-index: 900;
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.4s, transform 0.4s var(--ease-out);
  pointer-events: none;
}
.floating-cta.visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.floating-cta-btn {
  background: var(--navy);
  color: var(--white);
  border: none;
  border-radius: 50px;
  padding: 14px 22px;
  font-size: 0.83rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 8px 28px rgba(27,40,32,0.30);
  transition: transform 0.25s, box-shadow 0.25s;
}
.floating-cta-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 36px rgba(27,40,32,0.38);
}
.pulse-dot {
  width: 8px; height: 8px;
  background: var(--green);
  border-radius: 50%;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .intro-grid,
  .services-layout,
  .contact-grid { grid-template-columns: 1fr; gap: 48px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .services-quote { right: 0; }
}

@media (max-width: 768px) {
  .nav-links, .nav-ctas { display: none; }
  .hamburger { display: flex; }
  .stats-bar-grid { grid-template-columns: repeat(2, 1fr); }
  .perf-grid,
  .benefits-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .prop-card  { flex: 0 0 150px; width: 150px; min-width: 150px; max-width: 150px; }
  .testi-card { flex: 0 0 290px; width: 290px; }
  .properties-header { flex-direction: column; align-items: flex-start; }
  .intro-badge { position: static; margin-top: 20px; }
  .floating-cta { bottom: 16px; right: 16px; }
}

@media (max-width: 480px) {
  .stats-bar-grid { grid-template-columns: 1fr; }
  .hero-ctas { flex-direction: column; }
  .hero-ctas .btn { width: 100%; justify-content: center; }
  .form-card { padding: 24px; }
  .footer-grid { grid-template-columns: 1fr; }
}
