@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&family=Outfit:wght@600;700;800;900&display=swap');

/* =========================================================
   Guepes/Frelons — UI noir + jaune (contraste fort)
   Objectif: refonte totale SANS changer les classes/ids HTML
   Couvre: index, pages départements, pages villes (pj-*)
   ========================================================= */

:root {
  /* Brand */
  /* Palette proche du site exemple : noir + jaune */
  --color-primary: rgb(254 204 0);      /* jaune (site exemple) */
  --color-primary-dark: rgb(232 187 0); /* jaune hover approximatif */
  --color-secondary: rgb(0 0 0);        /* noir (site exemple) */
  --color-danger: #d32f2f;

  /* Neutres */
  --color-bg: rgb(10 10 10);          /* fond noir (modèle) */
  --color-surface: rgb(18 18 18);     /* cartes sombres */
  --color-surface-2: rgb(26 26 26);   /* surface un peu plus claire */
  --color-text: rgb(240 240 240);     /* texte clair */
  --color-text-light: rgba(240, 240, 240, 0.78);

  /* Assets */
  --hero-slide: url("../guepe-oise-slide.png");
  --brand-logo: url("../logo-guepe-oise.jpg");

  /* Typo */
  --font-heading: 'Outfit', sans-serif;
  --font-body: 'Inter', sans-serif;

  /* Spacing */
  --spacing-xs: 0.5rem;
  --spacing-sm: 1rem;
  --spacing-md: 2rem;
  --spacing-lg: 4rem;
  --spacing-xl: 6rem;

  /* Layout */
  --container: 1160px;

  /* Borders / radius */
  --border-width: 1px;
  --border: 1px solid rgba(255, 255, 255, 0.12);
  --radius-sm: 12px;
  --radius-md: 18px;
  --radius-lg: 26px;

  /* Shadows */
  --shadow-sm: 0 10px 22px rgba(0, 0, 0, 0.35);
  --shadow-md: 0 14px 40px rgba(0, 0, 0, 0.45);
  --shadow-lg: 0 18px 52px rgba(0, 0, 0, 0.55);

  /* Effects */
  --ring: 0 0 0 4px rgba(254, 204, 0, 0.28);
}

/* =========================
   Reset / base
   ========================= */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--color-bg);
  color: var(--color-text);
  line-height: 1.6;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
ul { list-style: none; }
a { color: inherit; text-decoration: none; }

/* Selection */
::selection { background: rgba(254, 204, 0, 0.35); }

/* =========================
   Typography
   ========================= */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--color-text);
  letter-spacing: -0.03em;
  line-height: 1.1;
  font-weight: 800;
  text-transform: none;
}

p { color: var(--color-text); }

.text-highlight {
  background: linear-gradient(180deg, rgba(254, 204, 0, 0.22), rgba(254, 204, 0, 0.48));
  border-radius: 14px;
  padding: 0 0.45rem;
}

/* =========================
   Utilities
   ========================= */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--spacing-sm);
}

.text-center { text-align: center; }

/* =========================
   Buttons
   ========================= */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 1rem 1.6rem;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1rem;
  border: var(--border);
  border-radius: 14px;
  box-shadow: var(--shadow-sm);
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background-color 0.15s ease, color 0.15s ease, border-color 0.15s ease;
  letter-spacing: 0;
  text-transform: none;
  background: var(--color-surface);
  color: var(--color-text);
}

.btn:hover { box-shadow: var(--shadow-md); transform: translateY(-1px); }
.btn:active { transform: translateY(1px); box-shadow: var(--shadow-sm); }
.btn:focus { outline: none; }
.btn:focus-visible { box-shadow: var(--shadow-md), var(--ring); }

.btn--primary {
  background: linear-gradient(180deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
  border-color: rgba(0, 0, 0, 0.35);
  color: var(--color-secondary);
}

.btn--secondary {
  background: rgba(255, 255, 255, 0.06);
  color: var(--color-text);
  border-color: rgba(255, 255, 255, 0.16);
}

/* =========================
   Header / Navigation
   ========================= */
.header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(10, 10, 10, 0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  padding: 0.75rem 0;
}

.header__container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.logo {
  display: inline-flex;
  align-items: baseline;
  gap: 0.25rem;
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: 1.55rem;
  letter-spacing: -0.02em;
  position: relative;
  width: 280px;
  height: 64px;
}

.logo::before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background-image: var(--brand-logo);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: left center;
  filter: drop-shadow(0 10px 24px rgba(0,0,0,.55));
}

/* Cache le texte du logo visuellement (mais le garde accessible) */
.logo span {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.logo__highlight {
  color: var(--color-primary);
  text-shadow: none;
  -webkit-text-stroke: 0;
}

.nav__list {
  display: flex;
  align-items: center;
  gap: 1.35rem;
}

.nav__link {
  font-weight: 700;
  font-size: 0.92rem;
  opacity: 0.92;
  position: relative;
  text-transform: none;
}

.nav__link:hover { opacity: 1; }

.nav__link::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -0.35rem;
  width: 0;
  height: 3px;
  background: var(--color-primary);
  border-radius: 999px;
  transition: width 0.25s ease;
}

.nav__link:hover::after { width: 100%; }

/* =========================
   Hero
   ========================= */
.hero {
  background: none;
  background-color: var(--color-bg);
  padding: clamp(3rem, 5vw, 4.75rem) 0;
  text-align: left;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: var(--hero-slide);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0.55;
  filter: contrast(1.08) saturate(0.95);
  z-index: 0;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(900px 420px at 20% 10%, rgba(254, 204, 0, 0.22), transparent 62%),
    linear-gradient(90deg, rgba(0,0,0,.82) 0%, rgba(0,0,0,.72) 44%, rgba(0,0,0,.55) 100%);
  z-index: 1;
}

.hero__container {
  max-width: var(--container);
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.8fr);
  gap: clamp(1.25rem, 3vw, 2rem);
  align-items: center;
  position: relative;
  z-index: 2;
}

.hero__title {
  font-size: clamp(2.1rem, 3.6vw, 3.2rem);
  margin-bottom: 0.75rem;
  max-width: 20ch;
}

.hero__subtitle {
  color: var(--color-text-light);
  font-size: 1.05rem;
  max-width: 62ch;
  margin: 0 0 1.4rem 0;
  font-weight: 500;
}

.hero__actions {
  display: flex;
  gap: 0.9rem;
  justify-content: flex-start;
  flex-wrap: wrap;
}

/* Colonne “preuves” (sans toucher au HTML) */
.hero__container::after {
  content:
    "Agrément Certibiocide\A"
    "Assurance RC Pro\A"
    "Disponibilité 24h/24\A"
    "Interventions en hauteur";
  white-space: pre-line;
  display: block;
  background: rgba(18, 18, 18, 0.92);
  border: var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  padding: 1.25rem 1.25rem;
  color: var(--color-text);
  font-family: var(--font-heading);
  font-weight: 800;
  line-height: 1.55;
}

.hero__container::after {
  /* mini “icônes” */
  background-image:
    radial-gradient(circle at 18px calc(1.25rem + 0.775em), rgba(254,204,0,.85) 6px, transparent 7px),
    radial-gradient(circle at 18px calc(1.25rem + 2.325em), rgba(254,204,0,.85) 6px, transparent 7px),
    radial-gradient(circle at 18px calc(1.25rem + 3.875em), rgba(254,204,0,.85) 6px, transparent 7px),
    radial-gradient(circle at 18px calc(1.25rem + 5.425em), rgba(254,204,0,.85) 6px, transparent 7px);
  background-repeat: no-repeat;
  padding-left: 3.1rem;
}

/* =========================
   Sections
   ========================= */
.section { padding: clamp(3.5rem, 6vw, 5.5rem) 0; }

.section__title {
  font-size: clamp(1.65rem, 2.6vw, 2.2rem);
  margin-bottom: 0.4rem;
  text-align: left;
}

.section__subtitle {
  text-align: left;
  margin: 0 auto var(--spacing-lg) auto;
  font-size: 1.02rem;
  color: var(--color-text-light);
  max-width: 900px;
}

/* =========================
   Services (cards)
   ========================= */
.services__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.25rem;
}

.service-card {
  background: var(--color-surface);
  border: var(--border);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  box-shadow: var(--shadow-md);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.service-card__icon {
  width: 56px;
  height: 56px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: rgba(254, 204, 0, 0.22);
  border: 1px solid rgba(255, 255, 255, 0.12);
  margin-bottom: 1rem;
  font-size: 1.75rem;
}

.service-card__title {
  font-size: 1.25rem;
  margin-bottom: 0.35rem;
}

.service-card__text {
  color: var(--color-text-light);
  font-size: 1rem;
}

/* =========================
   About (premium dark section)
   ========================= */
.about {
  /* plus “site pro” : bloc sombre plus fin, moins massif */
  background: linear-gradient(180deg, #0b0f19 0%, #0b0f19 100%);
  color: rgba(255, 255, 255, 0.92);
}

.about .section__title,
.about h2,
.about strong {
  color: #ffffff;
}

.about .dynamic-site-name,
.about .logo__highlight {
  color: var(--color-primary);
}

.about__container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(1.5rem, 4vw, 3.5rem);
  align-items: center;
}

.about__description {
  color: rgba(255, 255, 255, 0.82);
  font-size: 1.05rem;
  margin-top: 0.75rem;
}

.about__list { margin-top: 1.5rem; }

.about__item {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.25rem;
}

.about__icon { font-size: 1.75rem; }

.about__item p { color: rgba(255, 255, 255, 0.82); }

/* =========================
   Intervention zones (map + grids)
   ========================= */
.intervention-zone { background: transparent; }

.intervention__content {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
  background: var(--color-surface);
  border: var(--border);
  border-radius: var(--radius-lg);
  padding: 1.25rem;
  box-shadow: var(--shadow-md);
}

.intervention__map {
  flex: 1;
  max-width: 50%;
}

.map-image {
  width: 100%;
  height: auto;
  border-radius: var(--radius-md);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: var(--shadow-sm);
}

/* Dept pages (city-grid list of cities) */
.city-grid {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.city-card { background: transparent; }

.city-card__title {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
  display: inline-block;
  padding-bottom: 0.25rem;
  border-bottom: 2px solid rgba(254, 204, 0, 0.85);
}

.city-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 0.8rem;
}

.city-link {
  color: var(--color-text);
  text-decoration: underline;
  text-decoration-color: rgba(254, 204, 0, 0.9);
  text-decoration-thickness: 2px;
  text-underline-offset: 3px;
  border-radius: 10px;
  padding: 0.1rem 0.15rem;
  transition: background-color 0.15s ease, color 0.15s ease;
}

.city-link:hover {
  background: rgba(254, 204, 0, 0.22);
  color: var(--color-text);
  text-decoration: none;
}

/* Index page sectors grid */
.sectors-grid {
  flex: 1;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 1rem;
}

.sector-block {
  background: var(--color-surface);
  border: var(--border);
  border-radius: var(--radius-md);
  padding: 1.25rem;
  box-shadow: var(--shadow-md);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.sector-block:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}

.sector-title {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--color-text);
  margin-bottom: 0.75rem;
  padding-bottom: 0.35rem;
  border-bottom: 2px solid rgba(254, 204, 0, 0.9);
}

.sector-cities {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.sector-cities .city-link {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.14);
  padding: 0.25rem 0.7rem;
  border-radius: 999px;
  font-size: 0.9rem;
  text-decoration: none;
}

.sector-cities .city-link:hover {
  background: rgba(254, 204, 0, 0.22);
  border-color: rgba(254, 204, 0, 0.55);
}

/* =========================
   FAQ (accordion + bubbles)
   ========================= */
.faq__container { max-width: 900px; margin: 0 auto; }

.faq__item {
  border: var(--border);
  border-radius: var(--radius-md);
  background: var(--color-surface);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  margin-bottom: 0.9rem;
}

.faq__question {
  width: 100%;
  padding: 1.2rem 1.3rem;
  background: transparent;
  border: none;
  text-align: left;
  font-weight: 800;
  font-family: var(--font-heading);
  font-size: 1.05rem;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background-color 0.15s ease;
}

.faq__question:hover { background: rgba(254, 204, 0, 0.12); }

.faq__answer {
  padding: 0 1.3rem;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out, padding 0.3s ease;
  border-top: 1px solid transparent;
  color: var(--color-text-light);
}

.faq__item.active .faq__answer {
  padding-bottom: 1.1rem;
  border-top-color: rgba(11, 15, 25, 0.08);
}

.faq__item.active { box-shadow: var(--shadow-md); }

/* Bubble FAQ (used on city pages + index cards) */
.faq-grid-styled {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.25rem;
}

.faq-card-bubble {
  background: var(--color-surface);
  border: var(--border);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  text-align: center;
  position: relative;
  box-shadow: var(--shadow-md);
}

.faq-bubble-icon {
  width: 44px;
  height: 44px;
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(254, 204, 0, 0.25);
  margin: -2.7rem auto 0.9rem;
}

.faq-question-text { font-family: var(--font-heading); font-weight: 900; color: var(--color-text); }
.faq-answer-text { color: var(--color-text-light); margin-top: 0.6rem; }

/* =========================
   Contact
   ========================= */
.contact__wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(1.5rem, 4vw, 3.25rem);
  align-items: start;
}

.contact__text { color: var(--color-text-light); }

.contact__details li {
  margin: 0.65rem 0;
  color: var(--color-text);
}

.contact__details a {
  color: var(--color-primary);
  text-decoration: underline;
  text-decoration-color: rgba(254, 204, 0, 0.9);
  text-decoration-thickness: 2px;
  text-underline-offset: 3px;
}

.contact__details a:hover { text-decoration: none; background: rgba(254, 204, 0, 0.22); border-radius: 10px; padding: 0.05rem 0.15rem; }

.contact__form {
  background: var(--color-surface);
  border: var(--border);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  box-shadow: var(--shadow-md);
}

.form-group { margin-bottom: 1.1rem; }

.form-group label {
  display: block;
  margin-bottom: 0.45rem;
  font-weight: 700;
  text-transform: none;
  font-size: 0.95rem;
  color: var(--color-text);
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.95rem 1rem;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.04);
  color: var(--color-text);
  font-family: var(--font-body);
  font-size: 1rem;
  transition: box-shadow 0.15s ease, border-color 0.15s ease;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: rgba(254, 204, 0, 0.80);
  box-shadow: var(--ring);
}

/* =========================
   Footer
   ========================= */
.site-footer {
  background: var(--color-secondary);
  color: rgba(255, 255, 255, 0.92);
  padding: var(--spacing-lg) 0;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2.5rem;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--spacing-sm);
}

.footer-col h3 {
  color: var(--color-primary);
  margin-bottom: 1rem;
}

.footer-links a {
  display: block;
  margin-bottom: 0.55rem;
  opacity: 0.85;
}

.footer-links a:hover { opacity: 1; color: var(--color-primary); }

.footer-bottom {
  text-align: center;
  margin-top: 2rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.10);
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.70);
}

.footer-bottom a { color: rgba(255, 255, 255, 0.78) !important; }
.footer-bottom a:hover { color: var(--color-primary) !important; }

/* =========================
   PJ / City pages helpers
   ========================= */
.pj-main {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 1rem;
}

.pj-breadcrumbs {
  background: rgba(18, 18, 18, 0.90) !important;
  border: var(--border) !important;
  border-radius: 999px !important;
  box-shadow: var(--shadow-sm) !important;
  color: var(--color-text) !important;
  font-family: var(--font-body);
  font-weight: 600;
}

.pj-breadcrumbs a {
  color: var(--color-text) !important;
  text-decoration: underline;
  text-decoration-color: rgba(254, 204, 0, 0.9);
  text-decoration-thickness: 2px;
  text-underline-offset: 3px;
}

/* Le dernier item (souvent un <span>) peut être forcé en noir via inline style sur certaines pages */
.pj-breadcrumbs span,
.pj-breadcrumbs .dynamic-city {
  color: var(--color-text) !important;
}

/* Zone d'intervention : sur les pages villes (body.pj-layout) elle est rendue sur fond blanc via inline styles */
body.pj-layout .intervention-zone {
  color: #111;
}

body.pj-layout .intervention-zone h1,
body.pj-layout .intervention-zone h2,
body.pj-layout .intervention-zone h3,
body.pj-layout .intervention-zone .section__title {
  color: #111;
}

body.pj-layout .intervention-zone p,
body.pj-layout .intervention-zone .section__subtitle {
  color: rgba(0, 0, 0, 0.78);
}

body.pj-layout .intervention-zone a {
  color: #111;
  text-decoration: underline;
  text-decoration-color: rgba(0, 0, 0, 0.35);
  text-underline-offset: 3px;
}

body.pj-layout .intervention-zone a:hover {
  color: #000;
  text-decoration-color: rgba(0, 0, 0, 0.6);
}

/* Sur pages villes, on évite le gros bloc sombre .intervention__content (prévu pour index/département) */
body.pj-layout .intervention-zone .intervention__content {
  background: transparent;
  border: none;
  box-shadow: none;
  padding: 0;
}

body.pj-layout .intervention-zone .city-link {
  color: #111;
  text-decoration-color: rgba(0, 0, 0, 0.35);
}

body.pj-layout .intervention-zone .city-link:hover {
  background: rgba(0, 0, 0, 0.06);
  color: #000;
  text-decoration: none;
}

.pj-card {
  background: var(--color-surface);
  border: var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  padding: 1.75rem;
}

.pj-card h2 {
  font-family: var(--font-heading);
  font-weight: 900;
  text-transform: none;
  font-size: 1.7rem;
  margin-bottom: 1rem;
}

.pj-contact-info {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 1.25rem;
}

.pj-contact-row {
  display: flex;
  gap: 0.9rem;
  align-items: flex-start;
}

.pj-contact-icon { font-size: 1.35rem; }

/* Horaires (city pages) */
.pj-hours-list {
  display: grid;
  gap: 0.55rem;
  color: var(--color-text-light);
}

.pj-hours-list > div,
.pj-hours-list > p,
.pj-hours-list > ul,
.pj-hours-list li {
  font-size: 0.98rem;
  line-height: 1.5;
}

/* Wrapper (city pages) */
.contact-form-wrapper {
  border-radius: var(--radius-lg);
  background: linear-gradient(180deg, rgba(254, 204, 0, 0.10), transparent 55%);
}

/* Reviews */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.25rem;
}

.review-card {
  background: var(--color-surface);
  border: var(--border);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  padding: 1.25rem;
}

.review-header {
  display: flex;
  gap: 0.85rem;
  align-items: center;
  margin-bottom: 0.8rem;
}

.review-avatar {
  width: 42px;
  height: 42px;
  border-radius: 999px;
  background: rgba(254, 204, 0, 0.95);
  color: var(--color-secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  border: 1px solid rgba(0, 0, 0, 0.45);
}

.review-stars { color: rgba(254, 204, 0, 0.95); letter-spacing: 1px; }
.review-text { color: var(--color-text-light); }

/* Gallery */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
  gap: 1rem;
}

.gallery-grid img {
  width: 100%;
  height: 150px;
  object-fit: cover;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
}

/* Tags */
.location-tag {
  display: inline-block;
  background: rgba(254, 204, 0, 0.22);
  color: var(--color-text);
  padding: 0.45rem 0.9rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  font-weight: 700;
  margin: 0.25rem;
}

/* Sticky mobile CTA */
.sticky-mobile-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: rgba(10, 10, 10, 0.86);
  backdrop-filter: blur(10px);
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  padding: 0.8rem 1rem;
  display: flex;
  justify-content: center;
  gap: 0.75rem;
  z-index: 9999;
  box-shadow: 0 -12px 28px rgba(0, 0, 0, 0.55);
}

@media (min-width: 769px) {
  .sticky-mobile-cta { display: none !important; }
}

/* Legacy selectors kept for compatibility (if some pages still use them) */
.hero-immersive { display: none; }

/* =========================
   Responsive
   ========================= */
@media (max-width: 900px) {
  .intervention__map { max-width: 100%; }
  .intervention__content { flex-direction: column; }
}

@media (max-width: 768px) {
  .header__container {
    flex-direction: column;
    gap: 0.85rem;
  }

  .logo {
    width: 240px;
    height: 58px;
  }

  .nav__list {
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
  }

  .btn { padding: 0.9rem 1.2rem; }

  .about__container,
  .contact__wrapper {
    grid-template-columns: 1fr;
  }

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

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

  .hero__container::after {
    order: 3;
  }
}

