/* ============================================================
   MAYACODES — sections.css  (All page sections)
   ============================================================ */

/* ——— SECTION HEADERS ——— */
.section-header { margin-bottom: 4rem; }
.section-header--center { text-align: center; max-width: 680px; margin-left: auto; margin-right: auto; margin-bottom: 4rem; }
.section-header p { font-size: 1rem; color: var(--grey-400); margin-top: 1rem; }

/* ——— SERVICES / CARDS ——— */
.service-card {
  background: var(--black-card);
  border: var(--border-jade);
  border-radius: var(--radius-md);
  padding: 2.5rem;
  transition: all var(--t-slow);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 3px; height: 0;
  background: linear-gradient(to bottom, var(--jade), var(--gold));
  transition: height var(--t-slow);
}
.service-card:hover { border-color: rgba(16,100,60,0.6); transform: translateY(-6px); box-shadow: var(--shadow-jade), 0 20px 60px rgba(0,0,0,0.5); }
.service-card:hover::before { height: 100%; }
.service-icon {
  width: 52px; height: 52px;
  border-radius: var(--radius-sm);
  background: rgba(16,100,60,0.12);
  border: var(--border-jade);
  display: flex; align-items: center; justify-content: center;
  transition: all var(--t-base);
}
.service-icon svg { width: 24px; height: 24px; stroke: var(--jade-light); }
.service-card:hover .service-icon { background: var(--jade); border-color: var(--jade); }
.service-card:hover .service-icon svg { stroke: var(--white); }
.service-card h3 { font-size: 1.4rem; }
.service-card p { font-size: 0.88rem; color: var(--grey-400); line-height: 1.8; margin: 0; }
.service-link {
  display: inline-flex; align-items: center; gap: 0.5rem;
  font-size: 0.7rem; letter-spacing: 0.15em; text-transform: uppercase;
  color: var(--jade-light); margin-top: auto;
  transition: gap var(--t-base), color var(--t-base);
}
.service-link svg { width: 14px; height: 14px; stroke: var(--jade-light); }
.service-card:hover .service-link { gap: 0.8rem; color: var(--gold); }

/* ——— B2B SECTION ——— */
.b2b-section {
  background: linear-gradient(135deg, var(--black-soft) 0%, rgba(16,100,60,0.05) 50%, var(--black-soft) 100%);
  position: relative;
  overflow: hidden;
}
.b2b-section::before {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 800px; height: 800px;
  background: radial-gradient(circle, rgba(16,100,60,0.08) 0%, transparent 70%);
  pointer-events: none;
}

.b2b-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.b2b-visual {
  position: relative;
  height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Orbital rings */
.orbit-container {
  position: relative;
  width: 400px;
  height: 400px;
}
.orbit-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(16,100,60,0.2);
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
}
.orbit-ring:nth-child(1) { width: 100%; height: 100%; }
.orbit-ring:nth-child(2) { width: 70%; height: 70%; border-color: rgba(201,168,76,0.15); animation: rotateSlow 20s linear infinite; }
.orbit-ring:nth-child(3) { width: 45%; height: 45%; animation: rotateSlow 12s linear infinite reverse; }

.orbit-node {
  position: absolute;
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--black-card);
  border: var(--border-jade);
  display: flex; align-items: center; justify-content: center;
  top: 50%; left: 50%;
}
.orbit-node svg { width: 18px; height: 18px; stroke: var(--jade-light); }
.orbit-center {
  position: absolute;
  width: 80px; height: 80px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--jade-dark), var(--jade));
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 0 40px var(--jade-glow);
  z-index: 2;
}
.orbit-center svg { width: 36px; height: 36px; stroke: var(--white); }

.b2b-clients { display: flex; flex-direction: column; gap: 1.2rem; margin-top: 2rem; }
.b2b-client-tag {
  display: inline-flex; align-items: center; gap: 0.7rem;
  background: rgba(16,100,60,0.08); border: var(--border-jade);
  border-radius: 3px; padding: 0.6rem 1.2rem;
  font-size: 0.78rem; color: var(--grey-300);
  transition: all var(--t-base);
}
.b2b-client-tag:hover { background: rgba(16,100,60,0.15); color: var(--white); border-color: var(--jade-light); }
.b2b-client-tag svg { width: 16px; height: 16px; stroke: var(--jade-light); flex-shrink: 0; }
.b2b-benefits { display: flex; flex-direction: column; gap: 1rem; margin-top: 2rem; }
.b2b-benefit {
  display: flex; align-items: flex-start; gap: 1rem;
  padding: 1.2rem; background: rgba(16,100,60,0.05);
  border-left: 2px solid var(--jade); border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
}
.b2b-benefit svg { width: 20px; height: 20px; stroke: var(--jade-light); flex-shrink: 0; margin-top: 2px; }
.b2b-benefit h4 { font-family: var(--font-body); font-size: 0.9rem; font-weight: 500; color: var(--white); margin-bottom: 0.2rem; }
.b2b-benefit p { font-size: 0.82rem; color: var(--grey-500); margin: 0; }

/* ——— PROCESS ——— */
.process-steps { display: flex; flex-direction: column; gap: 0; }
.process-step {
  display: grid;
  grid-template-columns: 60px 1fr;
  gap: 2rem;
  position: relative;
}
.process-step:not(:last-child)::after {
  content: '';
  position: absolute;
  left: 29px; top: 60px;
  width: 1px; height: calc(100% - 20px);
  background: linear-gradient(to bottom, var(--jade), transparent);
}
.process-num {
  width: 60px; height: 60px;
  border-radius: 50%;
  border: 1px solid rgba(16,100,60,0.3);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display);
  font-size: 1.4rem;
  color: var(--jade-light);
  flex-shrink: 0;
  background: rgba(16,100,60,0.05);
  transition: all var(--t-base);
}
.process-step:hover .process-num { background: var(--jade); border-color: var(--jade); color: var(--white); }
.process-body { padding: 1rem 0 2.5rem; }
.process-body h3 { font-size: 1.3rem; margin-bottom: 0.5rem; }
.process-body p { font-size: 0.88rem; color: var(--grey-400); margin: 0; }

/* ——— TESTIMONIALS ——— */
.testimonial-card {
  background: var(--black-card);
  border: var(--border-jade);
  border-radius: var(--radius-md);
  padding: 2.5rem;
  position: relative;
}
.testimonial-card::before {
  content: '"';
  font-family: var(--font-display);
  font-size: 8rem;
  line-height: 0;
  position: absolute;
  top: 3rem; left: 2rem;
  color: rgba(16,100,60,0.1);
  pointer-events: none;
}
.testimonial-text { font-size: 1rem; color: var(--grey-300); font-style: italic; line-height: 1.8; margin-bottom: 1.5rem; position: relative; z-index: 1; }
.testimonial-author { display: flex; align-items: center; gap: 1rem; }
.testimonial-avatar {
  width: 44px; height: 44px; border-radius: 50%;
  background: linear-gradient(135deg, var(--jade-dark), var(--jade));
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-size: 1.2rem; color: var(--white);
}
.testimonial-name { font-weight: 500; color: var(--white); font-size: 0.9rem; }
.testimonial-role { font-size: 0.75rem; color: var(--grey-500); }
.testimonial-stars { color: var(--gold); font-size: 0.85rem; letter-spacing: 2px; margin-bottom: 0.8rem; }

/* ——— PRICING / CONTRACTS ——— */
.pricing-card {
  background: var(--black-card);
  border: var(--border-jade);
  border-radius: var(--radius-md);
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
  transition: all var(--t-base);
  position: relative;
  overflow: hidden;
}
.pricing-card--featured {
  border-color: var(--gold);
  background: linear-gradient(135deg, rgba(201,168,76,0.05), rgba(16,100,60,0.05));
}
.pricing-card--featured::before {
  content: 'Plus Populaire';
  position: absolute;
  top: 1.2rem; right: -2rem;
  background: var(--gold);
  color: var(--black);
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.3rem 3rem;
  transform: rotate(45deg);
}
.pricing-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-jade), var(--shadow-card); }
.pricing-tier { font-size: 0.65rem; letter-spacing: 0.25em; text-transform: uppercase; color: var(--jade-light); margin-bottom: 0.5rem; }
.pricing-name { font-family: var(--font-display); font-size: 2rem; color: var(--white); margin-bottom: 1rem; }
.pricing-price { margin-bottom: 1.5rem; }
.pricing-price .amount { font-family: var(--font-display); font-size: 3rem; color: var(--gold); }
.pricing-price .period { font-size: 0.8rem; color: var(--grey-500); }
.pricing-features { list-style: none; display: flex; flex-direction: column; gap: 0.8rem; margin-bottom: 2rem; flex: 1; }
.pricing-features li { display: flex; align-items: flex-start; gap: 0.7rem; font-size: 0.85rem; color: var(--grey-300); }
.pricing-features li::before { content: '✦'; color: var(--jade-light); font-size: 0.7rem; flex-shrink: 0; margin-top: 3px; }

/* ——— FAQ ——— */
.faq-item {
  border-bottom: 1px solid var(--grey-800);
  overflow: hidden;
}
.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem 0;
  cursor: pointer;
  font-family: var(--font-display);
  font-size: 1.2rem;
  color: var(--grey-200);
  transition: color var(--t-base);
  gap: 1rem;
}
.faq-question:hover { color: var(--white); }
.faq-icon {
  width: 28px; height: 28px; border-radius: 50%;
  border: var(--border-jade); display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; transition: all var(--t-base);
}
.faq-icon svg { width: 14px; height: 14px; stroke: var(--jade-light); transition: transform var(--t-base); }
.faq-item.open .faq-icon { background: var(--jade); border-color: var(--jade); }
.faq-item.open .faq-icon svg { transform: rotate(45deg); stroke: var(--white); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.16,1,0.3,1);
}
.faq-answer-inner { padding: 0 0 1.5rem; font-size: 0.9rem; color: var(--grey-400); line-height: 1.85; }
.faq-item.open .faq-answer { max-height: 500px; }

/* ——— CTA BANNER ——— */
.cta-banner {
  background: linear-gradient(135deg, rgba(16,100,60,0.15), rgba(201,168,76,0.08));
  border: 1px solid rgba(16,100,60,0.3);
  border-radius: var(--radius-lg);
  padding: 4rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute;
  top: -50%; left: -50%;
  width: 200%; height: 200%;
  background: radial-gradient(circle at center, rgba(16,100,60,0.08) 0%, transparent 60%);
  pointer-events: none;
}
.cta-banner h2 { margin-bottom: 1rem; }
.cta-banner p { font-size: 1rem; color: var(--grey-400); max-width: 540px; margin: 0 auto 2rem; }
.cta-banner .btn-group { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* ——— IMAGE SECTIONS ——— */
.img-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  overflow: hidden;
  border-radius: var(--radius-md);
  border: var(--border-jade);
}
.img-section-visual {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4/3;
}
.img-section-visual img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: brightness(0.7) saturate(0.8);
  transition: transform 0.8s cubic-bezier(0.16,1,0.3,1), filter 0.5s ease;
}
.img-section:hover .img-section-visual img { transform: scale(1.04); filter: brightness(0.9) saturate(1); }
.img-section-body {
  padding: 3rem;
  background: var(--black-card);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1.5rem;
}

/* ——— STATS ——— */
.stats-bar {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  background: var(--black-card);
  border: var(--border-jade);
  border-radius: var(--radius-md);
  overflow: hidden;
}
.stat-item {
  padding: 2.5rem 2rem;
  text-align: center;
  border-right: var(--border-jade);
  transition: background var(--t-base);
}
.stat-item:last-child { border-right: none; }
.stat-item:hover { background: rgba(16,100,60,0.06); }
.stat-num {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 4vw, 4rem);
  color: var(--gold);
  line-height: 1;
  margin-bottom: 0.4rem;
}
.stat-label { font-size: 0.72rem; letter-spacing: 0.15em; text-transform: uppercase; color: var(--grey-500); }

/* ——— PAGE HERO (inner pages) ——— */
.page-hero {
  padding: 10rem 0 5rem;
  position: relative;
  text-align: center;
  overflow: hidden;
  background:
    radial-gradient(ellipse at 20% 50%, rgba(26,138,82,0.18) 0%, transparent 55%),
    radial-gradient(ellipse at 80% 20%, rgba(201,168,76,0.10) 0%, transparent 40%),
    radial-gradient(ellipse at 60% 80%, rgba(16,100,60,0.14) 0%, transparent 45%),
    linear-gradient(160deg, #071009 0%, #0c1a0e 40%, #060a06 100%);
}

/* Aurora pulse — 2 radial blobs drifting, GPU-only (transform+opacity) */
.page-hero::before {
  content: '';
  position: absolute;
  inset: -30%;
  background:
    radial-gradient(circle at 25% 35%, rgba(26,138,82,0.22) 0%, transparent 30%),
    radial-gradient(circle at 75% 55%, rgba(201,168,76,0.12) 0%, transparent 25%);
  filter: blur(32px);
  pointer-events: none;
  animation: pageHeroAurora 14s ease-in-out infinite alternate;
  will-change: transform;
}

/* Subtle grid lines scrolling upward — CSS only */
.page-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(26,138,82,0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(26,138,82,0.05) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: linear-gradient(to top, rgba(0,0,0,0.6) 0%, transparent 70%);
  pointer-events: none;
  animation: pageHeroGrid 20s linear infinite;
  will-change: background-position;
}

/* Floating particles — pure CSS, 6 pseudo-elements via single div */
.page-hero-particles {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
  z-index: 0;
}
.page-hero-particles span {
  position: absolute;
  border-radius: 50%;
  background: var(--jade-light);
  opacity: 0;
  animation: pageParticle var(--dur, 8s) var(--delay, 0s) ease-in-out infinite;
  will-change: transform, opacity;
}
.page-hero-particles span:nth-child(1)  { width:3px; height:3px; left:12%; --dur:9s;  --delay:0s;   --tx:40px; }
.page-hero-particles span:nth-child(2)  { width:2px; height:2px; left:28%; --dur:11s; --delay:1.5s; --tx:-30px; }
.page-hero-particles span:nth-child(3)  { width:4px; height:4px; left:45%; --dur:8s;  --delay:3s;   --tx:20px;  background:var(--gold); }
.page-hero-particles span:nth-child(4)  { width:2px; height:2px; left:62%; --dur:13s; --delay:0.8s; --tx:-50px; }
.page-hero-particles span:nth-child(5)  { width:3px; height:3px; left:78%; --dur:10s; --delay:2.2s; --tx:35px; }
.page-hero-particles span:nth-child(6)  { width:2px; height:2px; left:90%; --dur:7s;  --delay:4s;   --tx:-20px; background:var(--gold); }

/* Content sits above all effects */
.page-hero .container { position: relative; z-index: 2; }

.page-hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('../img/alps-village.jpg');
  background-size: cover;
  background-position: center;
  filter: brightness(0.12) saturate(0.4);
  z-index: -1;
}
.page-hero h1 { margin-bottom: 1rem; }
.page-hero .hero-eyebrow { display: inline-flex; margin-bottom: 1rem; }

/* Light mode page-hero */
:root.light-mode .page-hero {
  background:
    radial-gradient(ellipse at 20% 50%, rgba(16,100,60,0.10) 0%, transparent 55%),
    radial-gradient(ellipse at 80% 20%, rgba(201,168,76,0.07) 0%, transparent 40%),
    linear-gradient(160deg, #e4ede6 0%, #edf4ef 40%, #f0f3f0 100%);
}
:root.light-mode .page-hero::before {
  background:
    radial-gradient(circle at 25% 35%, rgba(16,100,60,0.12) 0%, transparent 30%),
    radial-gradient(circle at 75% 55%, rgba(201,168,76,0.07) 0%, transparent 25%);
}
:root.light-mode .page-hero::after {
  background-image:
    linear-gradient(rgba(16,100,60,0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(16,100,60,0.06) 1px, transparent 1px);
}
:root.light-mode .page-hero-bg { filter: brightness(0.55) saturate(0.4); opacity: 0.25; }
:root.light-mode .page-hero h1 { color: #0d100d; }

/* Keyframes — transforms only, GPU-accelerated, no layout thrash */
@keyframes pageHeroAurora {
  0%   { transform: translate3d(-2%, -3%, 0) scale(1);    opacity: 0.7; }
  50%  { transform: translate3d(3%, 2%, 0)  scale(1.07);  opacity: 1;   }
  100% { transform: translate3d(-1%, 4%, 0) scale(1.03);  opacity: 0.8; }
}
@keyframes pageHeroGrid {
  from { background-position: 0 0, 0 0; }
  to   { background-position: 0 80px, 80px 0; }
}
@keyframes pageParticle {
  0%   { opacity: 0;    transform: translateY(80%) translateX(0)        scale(0.6); }
  15%  { opacity: 0.6; }
  85%  { opacity: 0.3; }
  100% { opacity: 0;    transform: translateY(-20%) translateX(var(--tx)) scale(1.2); }
}
@media (prefers-reduced-motion: reduce) {
  .page-hero::before,
  .page-hero::after,
  .page-hero-particles span { animation: none !important; }
}

/* ——— CONTACT SECTION ——— */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 4rem;
  align-items: start;
}
.contact-info { display: flex; flex-direction: column; gap: 2rem; }
.contact-card {
  background: var(--black-card);
  border: var(--border-jade);
  border-radius: var(--radius-md);
  padding: 1.8rem;
  display: flex;
  align-items: flex-start;
  gap: 1.2rem;
  transition: all var(--t-base);
}
.contact-card:hover { border-color: var(--jade-light); background: rgba(16,100,60,0.06); }
.contact-card-icon {
  width: 44px; height: 44px; border-radius: 50%;
  background: rgba(16,100,60,0.1); border: var(--border-jade);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.contact-card-icon svg { width: 20px; height: 20px; stroke: var(--jade-light); }
.contact-card h4 { font-family: var(--font-body); font-size: 0.7rem; letter-spacing: 0.15em; text-transform: uppercase; color: var(--jade-light); margin-bottom: 0.4rem; }
.contact-card p, .contact-card a { font-size: 0.9rem; color: var(--grey-300); margin: 0; transition: color var(--t-base); }
.contact-card a:hover { color: var(--gold); }

/* ——— FORM ——— */
.form-group { margin-bottom: 1.5rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; }
.form-label {
  display: block;
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--grey-400);
  margin-bottom: 0.5rem;
}
.form-input, .form-textarea, .form-select {
  width: 100%;
  padding: 0.9rem 1.2rem;
  background: rgba(16,100,60,0.05);
  border: 1px solid var(--grey-700);
  border-radius: var(--radius-sm);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.88rem;
  font-weight: 300;
  transition: all var(--t-base);
  outline: none;
  appearance: none;
}
.form-input:focus, .form-textarea:focus, .form-select:focus {
  border-color: var(--jade-light);
  background: rgba(16,100,60,0.08);
  box-shadow: 0 0 0 3px rgba(16,100,60,0.1);
}
.form-input::placeholder, .form-textarea::placeholder { color: var(--grey-600); }
.form-textarea { min-height: 140px; resize: vertical; }
.form-select { cursor: default; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath stroke='%238e938e' stroke-width='1.5' fill='none' d='M1 1l5 5 5-5'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 1rem center; padding-right: 2.5rem; }
.form-select option { background: var(--black-soft); }

@media (max-width:1024px) {
  .b2b-grid { grid-template-columns:1fr; }
  .b2b-visual { display:none; }
  .stats-bar { grid-template-columns:repeat(2,1fr); }
  .stats-bar .stat-item:nth-child(2) { border-right:none; }
  .img-section { grid-template-columns:1fr; }
  .contact-grid { grid-template-columns:1fr; }
}
@media (max-width:768px) {
  .stats-bar { grid-template-columns:1fr; }
  .stats-bar .stat-item { border-right:none; border-bottom:var(--border-jade); }
  .form-row { grid-template-columns:1fr; }
  .cta-banner { padding:2.5rem 1.5rem; }
  .pricing-card--featured::before { display:none; }
}

/* ——— B2B PAGE — formerly inline styles ——— */
.b2b-problem-card {
  border-color: rgba(180,60,60,0.3);
  text-align: center;
}
.b2b-problem-card--gold { border-color: rgba(201,168,76,0.3); text-align: center; }
.b2b-problem-card--jade { border-color: rgba(16,100,60,0.4); text-align: center; }
.b2b-problem-num {
  font-size: 3rem;
  font-family: var(--font-display);
  margin-bottom: 0.5rem;
  line-height: 1;
}
.b2b-problem-num--red  { color: #b44; }
.b2b-problem-num--gold { color: var(--gold); }
.b2b-problem-num--jade { color: var(--jade-light); }
.b2b-problem-h4        { margin-bottom: 0.5rem; }
.b2b-problem-p         { font-size: 0.83rem; color: var(--grey-400); }

/* ——— Service card B2B exclusive — formerly inline ——— */
.service-card--b2b {
  border-color: rgba(201,168,76,0.3);
}
.service-card--b2b .service-icon {
  background: rgba(201,168,76,0.1);
  border-color: rgba(201,168,76,0.3);
}
.service-card--b2b .service-icon svg { stroke: var(--gold); }
.service-card--b2b .service-link     { color: var(--gold); }
.service-card--b2b .service-link svg { stroke: var(--gold); }

/* ——— INDEX — b2b teaser text formerly inline ——— */
.b2b-teaser-text {
  color: var(--grey-400);
  font-size: 1rem;
  line-height: 1.85;
  margin: 1.5rem 0 2rem;
}

/* ══════════════════════════════════════════
   CONTACT MAP
   ══════════════════════════════════════════ */
.contact-map-wrap {
  border-radius: var(--radius-md);
  overflow: hidden;
  border: var(--border-jade);
}
.contact-map-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.2rem 1.6rem;
  background: var(--black-card);
  border-bottom: var(--border-jade);
  flex-wrap: wrap;
}
.contact-map-header > svg {
  width: 20px;
  height: 20px;
  stroke: var(--jade-light);
  flex-shrink: 0;
}
.contact-map-label {
  display: block;
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--jade-light);
  margin-bottom: 2px;
}
.contact-map-address {
  font-size: 0.85rem;
  color: var(--grey-300);
}
.contact-map-btn {
  margin-left: auto;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.72rem;
  white-space: nowrap;
}
.contact-map-frame {
  width: 100%;
  height: 380px;
  background: var(--black-soft);
  position: relative;
}
.contact-map-frame iframe {
  width: 100%;
  height: 100%;
  display: block;
  filter: grayscale(30%) brightness(0.92);
  transition: filter 0.3s ease;
}
.contact-map-frame:hover iframe { filter: grayscale(0%) brightness(1); }

:root.light-mode .contact-map-header  { background: #ffffff; }
:root.light-mode .contact-map-address { color: #3d413d; }
:root.light-mode .contact-map-frame iframe { filter: none; }

@media (max-width: 768px) {
  .contact-map-frame { height: 280px; }
  .contact-map-btn   { margin-left: 0; width: 100%; justify-content: center; }
}

/* ══════════════════════════════════════════
   URGENCE BANNER (replaces inline styles)
   ══════════════════════════════════════════ */
.urgence-banner {
  background: rgba(180,60,60,0.08);
  border: 1px solid rgba(180,60,60,0.2);
  border-radius: var(--radius-md);
  padding: 1.5rem;
}
.urgence-title {
  color: #e07070;
  margin-bottom: 0.5rem;
  font-family: var(--font-body);
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.urgence-text {
  font-size: 0.85rem;
  color: var(--grey-400);
  margin-bottom: 1rem;
}
.urgence-btn {
  background: #b44040;
  border-color: #b44040;
  color: var(--white);
}
.urgence-btn:hover { background: #c84848; border-color: #c84848; }

:root.light-mode .urgence-banner { background: rgba(180,60,60,0.05); border-color: rgba(180,60,60,0.2); }
:root.light-mode .urgence-title  { color: #a03030; }
:root.light-mode .urgence-text   { color: #4e524e; }
:root.light-mode .urgence-btn    { color: #ffffff; }

/* ══════════════════════════════════════════
   CONTACT FORM CARD — ensure form is always
   above the card::after overlay
   ══════════════════════════════════════════ */
.contact-form-card { isolation: isolate; }
.contact-form-card form,
.contact-form-card .form-error-msg,
.contact-form-card .form-success { position: relative; z-index: 1; }
