
/* ===== BASE ===== */
:root {
  --brand-blue: #0f6fb2;
  --brand-blue-dark: #0a4f7f;
  --brand-blue-soft: #eaf4fb;
}

body {
  margin: 0;
  font-family: Calibri, Arial, sans-serif;
  font-size: 14px;
  background: #ffffff;
  color: #111;
}

/* ===== HEADER FIXE ===== */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 9999;
  background: #fff;
  border-bottom: 1px solid rgba(0,0,0,0.08);
}

.header-inner {
  width: 100%;
  margin: 0;
  padding: 14px 12px 14px 0;
  display: flex;
  justify-content: flex-start;
  align-items: center;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
}

.top-logo {
  height: 56px;
  width: auto;
  display: block;
}

/* NAV */
.nav-links {
  display: flex;
  gap: 24px;
  margin-left: 20px;
}

.nav-link,
.nav-links a {
  color: #111111;
  font-weight: 600;
  font-size: 16px;
  text-decoration: none;
  padding: 4px 6px;
  border-radius: 4px;
  border: none;
  background: transparent;
  box-shadow: none;
  transition: 0.2s;
}

.nav-link:hover {
  background: var(--brand-blue-soft);
  color: var(--brand-blue);
  box-shadow: none;
}

.nav-links a:hover {
  background: var(--brand-blue-soft);
  color: var(--brand-blue);
  box-shadow: none;
}

.site-header a {
  text-decoration: none !important;
  color: #111111 !important;
}

.site-header a:hover {
  color: var(--brand-blue) !important;
}

/* Compense header */
.page {
  padding-top: 86px;
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, #f4f7fb 0%, #f8fafc 100%);
}

.page::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url('logo.png');
  background-repeat: no-repeat;
  background-position: center;
  background-size: 42vw;
  opacity: 0.04;
  pointer-events: none;
  z-index: 0;
}

.page > * {
  position: relative;
  z-index: 1;
}

.intro-band {
  max-width: 1200px;
  margin: 20px auto 24px;
  padding: 28px 32px;
  border-radius: 24px;
  background: rgba(255,255,255,0.86);
  border: 1px solid rgba(15,23,42,0.08);
  box-shadow: 0 12px 30px rgba(15,23,42,0.05);
}

.intro-band__content h2 {
  margin: 0 0 10px;
  font-size: 30px;
  color: var(--brand-blue-dark);
}

.intro-band__content p {
  margin: 0;
  font-size: 16px;
  line-height: 1.7;
  color: #475569;
}

.intro-band__eyebrow,
.bottom-bar__eyebrow {
  margin: 0 0 8px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #64748b;
}

.why-us {
  max-width: 1200px;
  margin: 0 auto 24px;
  padding: 0 24px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.why-us__item {
  padding: 18px 18px 20px;
  border-radius: 18px;
  background: rgba(255,255,255,0.82);
  border: 1px solid rgba(15,23,42,0.06);
  box-shadow: 0 8px 22px rgba(15,23,42,0.04);
}

.why-us__item h3 {
  margin: 0 0 8px;
  font-size: 16px;
  color: var(--brand-blue-dark);
}

.why-us__item p {
  margin: 0;
  font-size: 14px;
  line-height: 1.6;
  color: #475569;
}

/* ===== NAVBAR (pages secondaires) ===== */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 40px;
  background: white;
  border-bottom: 2px solid #e0e0e0;
}

.logo {
  color: #1e90ff;
  font-weight: bold;
}

.navbar ul {
  display: flex;
  list-style: none;
  gap: 20px;
}

.navbar a {
  color: black;
  text-decoration: none;
  transition: 0.3s;
}

.navbar a:hover {
  color: #1e90ff;
}

/* ===== TOP BAR ===== */
.top-bar {
  background: #e8e8e8;
  padding: 18px 16px;
}

.top-bar-inner {
  display: flex;
  align-items: center;
}

/* ===== HERO ===== */
.hero {
  text-align: center;
  padding: 100px 20px;
  background: #f2f2f2;
}

.hero h2 {
  font-size: 24px;
  margin: 0 0 4px;
}

.hero p {
  color: #555;
  font-size: 14px;
  margin: 0;
}

/* ===== SECURITY NOTE ===== */
.security-note {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 12px 14px;
  margin: 0 0 1.2rem;
  border: 1px solid #cfe8d3;
  border-left: 4px solid #2f9e44;
  border-radius: 12px;
  background: #f5fbf6;
  box-shadow: 0 6px 16px rgba(47, 158, 68, 0.08);
}

.security-note__icon {
  flex-shrink: 0;
  width: 34px;
  height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #e7f7eb;
  color: #2f9e44;
}

.security-note p {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.6;
  color: #4b5563;
}

/* ===== CONTACT ===== */
.contact-section {
  padding: 24px 20px 36px;
}

.contact-layout {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 24px;
}

.contact-card {
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 18px;
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.06);
  padding: 28px;
}

.contact-card h2 {
  margin: 0 0 14px;
  font-size: 32px;
  line-height: 1.1;
  color: #111;
}

.contact-card p {
  margin: 0 0 14px;
  font-size: 16px;
  line-height: 1.75;
  color: #2a2a2a;
}

.contact-card--phone {
  display: grid;
  align-content: start;
  gap: 10px;
}

.contact-phone {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  padding: 14px 18px;
  border-radius: 14px;
  background: #111;
  color: #fff;
  text-decoration: none;
  font-size: 20px;
  font-weight: 800;
  letter-spacing: 0.02em;
  transition: transform 0.2s ease, background 0.2s ease;
}

.contact-phone:hover {
  transform: translateY(-1px);
  background: #1f1f1f;
}

.contact-mail {
  display: block;
  color: #111;
  text-decoration: none;
  font-size: 26px;
  font-weight: 800;
  line-height: 1.2;
  text-align: center;
  margin: 0 0 10px;
}

.contact-mail:hover {
  text-decoration: underline;
}

.contact-form {
  display: grid;
  gap: 18px;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.contact-form label {
  display: grid;
  gap: 8px;
  font-weight: 700;
  color: #111;
}

.contact-form span {
  font-size: 14px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  box-sizing: border-box;
  border: 1px solid rgba(0, 0, 0, 0.14);
  border-radius: 14px;
  background: #fff;
  padding: 14px 16px;
  font: inherit;
  color: #111;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.contact-form textarea {
  resize: vertical;
  min-height: 180px;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: #111;
  box-shadow: 0 0 0 3px rgba(17, 17, 17, 0.08);
}

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

.contact-submit {
  appearance: none;
  border: none;
  border-radius: 14px;
  background: #111;
  color: #fff;
  font: inherit;
  font-weight: 800;
  padding: 14px 18px;
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease;
}

.contact-submit:hover {
  transform: translateY(-1px);
  background: #1f1f1f;
}

.contact-note {
  margin: 0;
  font-size: 13px !important;
  color: #666 !important;
}

@media (max-width: 900px) {
  .contact-layout {
    grid-template-columns: 1fr;
  }

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

  .contact-phone {
    width: 100%;
  }
}

/* ===== ABOUT ===== */
.about-section {
  padding: 0 20px 36px;
}

.about-layout {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.25fr 0.9fr;
  gap: 24px;
}

.about-card {
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.08);
  height: auto;
  padding: 28px;
  border-radius: 18px;
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.06);
}

.about-card--map {
  background: linear-gradient(180deg, #fbfbfb 0%, #f2f2f2 100%);
}

.about-card h3 {
  margin: 0 0 16px;
  font-size: 30px;
  line-height: 1.15;
  color: #111;
}

.about-card p {
  margin: 0 0 14px;
  font-size: 16px;
  line-height: 1.75;
  color: #2a2a2a;
}

.about-card p:last-child {
  margin-bottom: 0;
}

.about-map-header h3 {
  font-size: 24px;
  margin-bottom: 18px;
}

.about-map-stack {
  display: grid;
  gap: 18px;
}

.about-map-frame {
  position: relative;
  overflow: hidden;
  border-radius: 16px;
  border: 1px solid rgba(0, 0, 0, 0.08);
  background: #fff;
}

.about-map-frame--large {
  height: 260px;
}

.about-map-image {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
}

.about-map-image--large {
  height: 260px;
}

.about-map-frame--zoom {
  height: 300px;
}

.about-map-image--zoom {
  height: 300px;
  object-fit: cover;
  transform: scale(1.18);
  transform-origin: center center;
}

.about-map-marker {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  z-index: 3;
  pointer-events: none;
  user-select: none;
  -webkit-user-drag: none;
}

.about-map-marker__logo {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #fff;
  padding: 5px;
  object-fit: contain;
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.22);
  pointer-events: none;
  user-select: none;
  -webkit-user-drag: none;
}

.about-map-marker::after {
  content: "";
  width: 14px;
  height: 14px;
  background: #111;
  border-radius: 50% 50% 50% 0;
  transform: rotate(-45deg);
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.25);
}

@media (max-width: 900px) {
  .about-layout {
    grid-template-columns: 1fr;
  }

  .about-map-frame--large,
  .about-map-image--large {
    height: 220px;
  }

  .about-map-frame--zoom,
  .about-map-image--zoom {
    height: 240px;
  }
}

/* ===== PAGE SERVICES ===== */
.services-page {
  display: flex;
  align-items: flex-start;
  gap: 24px;
  padding: 86px 20px 20px;
}

.services-menu {
  flex: 0 0 280px;
  position: sticky;
  top: 106px;
  align-self: flex-start;
  background: #ffffff;
  border-radius: 0;
  padding: 18px 18px 20px;
  box-shadow: none;
  border-left: 6px solid rgba(15, 23, 42, 0.12);
}

.services-menu--reveal {
  animation: servicesMenuDrop 0.7s ease both;
}

.services-menu h2 {
  margin: 0 0 18px;
  font-size: 28px;
  font-family: Calibri, Arial, sans-serif;
  color: #111;
  letter-spacing: -0.02em;
}

.services-menu__group + .services-menu__group {
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px solid rgba(17, 17, 17, 0.12);
}

.services-menu__group {
  animation: servicesGroupDrop 0.65s ease both;
}

.services-menu__group:nth-of-type(1) {
  animation-delay: 0.08s;
}

.services-menu__group:nth-of-type(2) {
  animation-delay: 0.2s;
}

.services-menu__title {
  margin: 0 0 12px;
  font-size: 16px;
  font-family: Calibri, Arial, sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-weight: 800;
  color: #444;
}

.services-menu__title--particuliers {
  color: var(--brand-blue-dark);
}

.services-menu__title--professionnels {
  color: var(--brand-blue);
}

.services-menu__item {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 12px;
  padding: 14px 16px;
  margin-top: 12px;
  border-radius: 14px;
  text-decoration: none;
  font-family: Calibri, Arial, sans-serif;
  font-weight: 800;
  font-size: 16px;
  color: #111;
  background: #f8fbff;
  border: 1px solid rgba(15, 111, 178, 0.14);
  box-shadow: 0 6px 16px rgba(15, 111, 178, 0.06);
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
  opacity: 0;
  transform: translateY(-14px);
  animation: servicesItemDrop 0.6s ease forwards;
}

.services-menu__group .services-menu__item:nth-of-type(1) { animation-delay: 0.15s; }
.services-menu__group .services-menu__item:nth-of-type(2) { animation-delay: 0.24s; }
.services-menu__group .services-menu__item:nth-of-type(3) { animation-delay: 0.33s; }

.services-menu__item:hover {
  transform: translateX(6px);
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.10);
}

.services-menu__item--blue {
  background: rgba(15, 111, 178, 0.12);
  color: var(--brand-blue-dark);
}

.services-menu__item--blue:hover {
  background: rgba(15, 111, 178, 0.18);
}

.services-menu__item--red {
  background: rgba(15, 111, 178, 0.12);
  color: var(--brand-blue);
}

.services-menu__item--red:hover {
  background: rgba(15, 111, 178, 0.18);
}

.services-menu__icon {
  width: 28px;
  height: 28px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 28px;
  background: rgba(15, 111, 178, 0.12);
}

.services-menu__icon svg {
  width: 15px;
  height: 15px;
  stroke-width: 2.2;
  stroke: var(--brand-blue-dark);
}

.services-page__content {
  flex: 1;
  min-width: 0;
}

@keyframes servicesMenuDrop {
  from {
    opacity: 0;
    transform: translateY(-24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes servicesGroupDrop {
  from {
    opacity: 0;
    transform: translateY(-12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes servicesItemDrop {
  from {
    opacity: 0;
    transform: translateY(-12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.services-menu__item {
  width: 100%;
  appearance: none;
  text-align: left;
  cursor: pointer;
}

.service-drawer {
  position: fixed;
  inset: 86px 0 0 0;
  z-index: 9998;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.25s ease;
}

.service-drawer.is-open {
  pointer-events: auto;
  opacity: 1;
}

.service-drawer__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.24);
}

.service-drawer__panel {
  position: absolute;
  inset: 0;
  transform: translateY(-12px);
  transition: transform 0.3s ease;
  background: linear-gradient(135deg, #ffffff 0%, #f8fbff 100%);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.18);
  overflow-x: hidden;
  overflow-y: auto;
}

.service-drawer.is-open .service-drawer__panel {
  transform: translateY(0);
}

.service-drawer__close {
  position: absolute;
  top: 16px;
  right: 18px;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 50%;
  background: #111;
  color: #fff;
  font-size: 30px;
  line-height: 1;
  cursor: pointer;
  z-index: 2;
}

.service-drawer__content {
  min-height: 100%;
  display: grid;
  grid-template-columns: 18px 1fr;
}

.service-drawer__accent {
  background: #1e3a8a;
}

.service-drawer__body {
  padding: 34px 36px 40px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
}

.service-drawer__slider {
  display: grid;
  grid-template-columns: minmax(0, 420px);
  align-items: center;
  margin: 0 0 24px;
}

.service-drawer__slider[hidden] {
  display: none;
}

.service-drawer__slider-viewport {
  overflow: hidden;
  border-radius: 16px;
  background: #eef3f8;
  box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.06);
}

.service-drawer__slider-track {
  display: flex;
  transition: transform 0.45s ease;
}

.service-drawer__slider-slide {
  min-width: 100%;
  height: 180px;
  background-size: cover;
  background-position: center;
}

.service-drawer__slider-btn {
  display: none;
}

.service-drawer__copy {
  max-width: 900px;
  font-size: 16px;
  color: #2b2b2b;
  line-height: 1.7;
  margin-bottom: 6px;
}

.service-drawer__copy p {
  margin: 0 0 14px;
}

.service-drawer__copy ul {
  margin: 0 0 14px;
  padding-left: 20px;
  display: grid;
  gap: 8px;
}

.service-drawer__copy li {
  margin: 6px 0;
}

.service-drawer__list {
  width: 100%;
  margin-top: 0;
  padding: 16px 18px 4px 34px;
  border-radius: 16px;
  background: #f5f8fc;
  border: 1px solid rgba(30, 58, 138, 0.08);
  display: grid;
  gap: 10px;
  font-size: 16px;
  color: #222;
  list-style: disc;
}

.service-drawer__list li {
  margin: 8px 0;
}

.service-drawer__category {
  margin: 0 0 10px;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 800;
  color: #555;
}

.service-drawer__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0 0 12px;
}

.service-drawer__meta-chip {
  display: inline-flex;
  align-items: center;
  padding: 7px 10px;
  border-radius: 999px;
  background: #f3f8f4;
  border: 1px solid #dbeede;
  color: #2f6f3f;
  font-size: 0.85rem;
  font-weight: 600;
}

.service-drawer__body h2 {
  margin: 0 0 14px;
  font-size: 34px;
  color: var(--brand-blue-dark);
}

.service-drawer__description {
  max-width: 760px;
  margin: 0 0 18px;
  font-size: 18px;
  color: #334155;
  line-height: 1.55;
}

.service-drawer__list li::marker {
  color: inherit;
}

/* ===== BOUTONS ===== */
.btn {
  display: inline-block;
  margin-top: 20px;
  padding: 12px 25px;
  background: #1e90ff;
  color: white;
  text-decoration: none;
  border-radius: 6px;
  font-weight: bold;
  font-size: 13px;
  transition: 0.25s;
}

.btn:hover {
  background: #000;
  color: #1e90ff;
}

/* ===== SERVICES SPLIT ===== */
.services-split {
  display: grid;
  gap: 24px;
  max-width: 1200px;
  margin: 0 auto 48px;
  padding: 0 24px 24px;
}

.services-panel {
  padding: 28px 28px 30px;
  border-radius: 24px;
  background: #ffffff;
  border: 1px solid rgba(15,23,42,0.08);
  box-shadow: 0 12px 30px rgba(15,23,42,0.05);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.services-panel:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 34px rgba(15,23,42,0.08);
}

.services-particuliers { background: #fcfdff; }
.services-pro { background: #f8fafc; }

.services-particuliers h2,
.services-pro h2 {
  text-align: left;
  margin: 0 0 18px;
  font-size: 24px;
  color: var(--brand-blue-dark);
}

.services-pro {
  background: #ffffff;
  border: 1px solid rgba(15, 23, 42, 0.08);
}

/* ===== CARTES ===== */
.cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.card {
  position: relative;
  width: auto;
  min-height: 240px;
  padding: 18px 16px 16px;
  border-radius: 18px;
  background: #ffffff;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  overflow: hidden;
  box-shadow: 0 10px 24px rgba(15,23,42,0.06);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  border: 1px solid rgba(15, 111, 178, 0.12);
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 30px rgba(15,23,42,0.09);
}

.card * {
  position: relative;
  z-index: 2;
}

.resume,
.details,
.btn-card {
  opacity: 1;
  transform: none;
}

.resume {
  font-size: 13px;
  margin: 8px 0 10px;
  color: #475569;
  line-height: 1.6;
  text-align: left;
  font-weight: 600;
}

.details {
  list-style: disc;
  padding-left: 18px;
  margin: 0 0 12px;
  text-align: left;
  width: 100%;
  color: #475569;
}

.details li {
  font-size: 13px;
  margin: 4px 0;
  font-weight: 400;
}

.icon {
  width: 54px;
  height: 54px;
  margin: 0 0 12px;
  background: rgba(15, 111, 178, 0.12);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  line-height: 0;
  overflow: hidden;
}

.icon svg {
  width: 24px;
  height: 24px;
  stroke: var(--brand-blue-dark);
}

.services-pro .icon {
  background: #f4f5f7;
}

.card h3 {
  font-size: 18px;
  margin: 0 0 8px;
  color: var(--brand-blue-dark);
  text-align: left;
}

.services-pro .card h3 {
  color: var(--brand-blue-dark);
}

.btn-card {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  margin-top: auto;
  margin-left: auto;
  margin-right: auto;
  padding: 0;
  background: var(--brand-blue);
  color: #fff;
  text-decoration: none;
  border-radius: 50%;
  font-size: 22px;
  font-weight: 600;
  line-height: 1;
  opacity: 0;
  transform: translateY(6px);
  pointer-events: none;
  transition: opacity 0.2s ease, transform 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
  box-shadow: 0 8px 16px rgba(15, 111, 178, 0.16);
}

.card:hover .btn-card,
.card:focus-within .btn-card {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.btn-card:hover {
  background: var(--brand-blue-dark);
  transform: translateY(-1px);
  box-shadow: 0 10px 20px rgba(15, 111, 178, 0.2);
}

.btn-card__arrow {
  transition: 0.2s ease;
}

.btn-card:hover .btn-card__arrow {
  transform: translateX(3px);
}

.bottom-bar {
  background: linear-gradient(135deg, var(--brand-blue-dark) 0%, var(--brand-blue) 100%);
  color: #fff;
  padding: 24px 24px 28px;
}

.bottom-bar__content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}

.bottom-bar h3 {
  margin: 0;
  font-size: 20px;
}

.bottom-bar__links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.bottom-bar__links a {
  color: #fff;
  text-decoration: none;
  padding: 8px 12px;
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 999px;
  background: rgba(255,255,255,0.08);
}

.bottom-bar__btn {
  transition: background 0.2s ease, transform 0.2s ease;
}

.bottom-bar__btn:hover {
  background: rgba(255,255,255,0.16);
  transform: translateY(-1px);
}

/* ===== JONCTION ===== */
.occ-jonction {
  width: 100%;
}

.occ-jonction__band {
  height: 12px;
  background: #0a2b4a;
}

.occ-jonction__band--bottom {
  height: 14px;
}

.occ-jonction__content {
  background: #0b2f52;
  color: #fff;
  padding: 24px 16px;
}

.occ-jonction__title {
  text-align: center;
  font-size: 22px;
  font-weight: 800;
}

.occ-jonction__text {
  max-width: 980px;
  margin: auto;
  text-align: center;
}

.occ-jonction__sections {
  max-width: 980px;
  margin: 20px auto 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  text-align: center;
}

/* ===== MAP ===== */
.zone-map {
  width: 100%;
  height: 190px;
  border-radius: 14px;
  position: relative;
  overflow: hidden;
}

/* ===== SLIDER ===== */
.slider {
  position: relative;
  width: 100%;
  height: 400px;
  overflow: hidden;
}

.slides {
  display: flex;
  transition: transform 0.6s ease;
}

.slide {
  min-width: 100%;
  height: 400px;
  background-size: cover;
  background-position: center;
  position: relative;
}

.slide::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.4);
}

.content {
  position: absolute;
  z-index: 2;
  color: white;
  text-align: center;
  width: 100%;
  top: 50%;
  transform: translateY(-50%);
}

.content h2 {
  font-size: 34px;
  font-weight: 800;
  margin: 0 0 12px;
}

.content p {
  font-size: 18px;
  font-weight: 700;
  margin: 0;
  max-width: 980px;
  margin-left: auto;
  margin-right: auto;
}

/* controls */
.controls span {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 24px;
  color: white;
  cursor: pointer;
  padding: 10px;
  z-index: 3;
}

.prev { left: 10px; }
.next { right: 10px; }

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .about-layout {
    grid-template-columns: 1fr;
  }

  .about-card {
    padding: 22px;
  }

  .about-card h3 {
    font-size: 26px;
  }

  .services-page {
    flex-direction: column;
  }

  .services-menu {
    flex: 1 1 auto;
    width: 100%;
    position: static;
    top: auto;
  }

  .service-drawer {
    inset: 86px 0 0 0;
  }

  .service-drawer__content {
    grid-template-columns: 12px 1fr;
  }

  .service-drawer__body {
    padding: 24px 20px 26px;
  }

  .service-drawer__slider {
    grid-template-columns: minmax(0, 1fr);
  }

  .service-drawer__slider-slide {
    height: 160px;
  }

  .service-drawer__copy {
    font-size: 15px;
  }

  .service-drawer__body h2 {
    font-size: 28px;
  }

  .service-drawer__description {
    font-size: 16px;
  }

  .services-split {
    grid-template-columns: 1fr;
    padding: 0 16px 24px;
  }

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

  .bottom-bar__content {
    flex-direction: column;
    align-items: flex-start;
  }

  .why-us {
    grid-template-columns: 1fr;
  }

  .occ-jonction__sections {
    grid-template-columns: 1fr;
  }

  .zone-map {
    height: 170px;
  }
}
