@import url('assets/splash.css');

:root {
  --bg: #000000;
  --bg-soft: #050505;
  --bg-radial: radial-gradient(circle at top, #121212 0, #000000 70%);
  --card: rgba(12, 12, 12, 0.65);
  --fg: #f5f5f5;
  --muted: #a3a3a3;
  --accent: #ff5a00;
  --accent-glow: rgba(255, 90, 0, 0.4);
  --border: rgba(255, 255, 255, 0.06);
  --glass-border: rgba(255, 255, 255, 0.1);
  --radius-lg: 20px;
  --radius-md: 12px;
  --max: 1120px;
  --ease-lux: cubic-bezier(0.25, 1, 0.3, 1); /* Transition fluide type inertie bateau */
}

/* --- RESET & BASE --- */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

/* --- GLOBAL SAFEGUARDS --- */
img,
video,
iframe {
  max-width: 100%;
  height: auto;
}

/* Utility to pull section up on desktop but not mobile */
.section-pull-up {
  margin-top: -50px;
  position: relative;
  z-index: 2;
  /* Ensure it stays above background but respects header */
}

@media (max-width: 768px) {
  .section-pull-up {
    margin-top: 0 !important;
  }
}

/* Polices globales : Affinement Luxe */
h1, h2, h3, h4, h5, h6,
.brand-text-top,
.brand-text-main,
.hero-kicker,
.nav-links a,
.signature-title,
.brand-pill,
.step-watermark,
.stat-label,
.section-title {
  font-family: 'Montserrat', sans-serif;
  letter-spacing: 0.02em;
  font-weight: 300; /* Plus léger pour le luxe */
}

h1.hero-title, h1 strong, h2.section-headline {
  font-weight: 600; /* Contraste avec le light */
  letter-spacing: -0.01em;
}

.hero-kicker,
.section-title {
  letter-spacing: 0.3em;
  text-transform: uppercase;
  font-weight: 500;
}

.handwritten,
.signature-font {
  font-family: 'Dancing Script', 'Brush Script MT', cursive !important;
  font-weight: 400;
}

body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  background: var(--bg-radial);
  background-attachment: fixed;
  color: var(--fg);
  line-height: 1.8;
  font-weight: 300;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s ease;
}

a:hover {
  color: var(--accent);
}

.container {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 18px;
}

/* --- HEADER & NAV (Desktop) --- */
.text-center {
  text-align: center;
}

.max-w-800 {
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.max-w-900 {
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

header {
  position: fixed !important;
  /* Fixed force */
  top: 0;
  left: 0;
  width: 100%;
  z-index: 9999;
  /* Increased Z-Index */
  background: rgba(0, 0, 0, 0.95);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
  /* Transform removed to avoid containing block issues for children fixed elements */
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 10px 0;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  text-decoration: none;
  position: relative;
  /* Fix z-context */
  z-index: 51;
  /* Ensure above mobile menu (z-30) and toggle (z-50) */
}

.brand img {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: #000;
  border: 2px solid var(--accent);
  animation: pulseLogo 3s ease-in-out infinite;
  will-change: box-shadow;
}

.brand-text-top {
  font-size: .7rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #fff;
  font-weight: 900;
}

.brand-text-main {
  font-weight: 700;
  font-size: 1.02rem;
  color: #fff;
  white-space: nowrap;
  /* Force single line */
}

@media (max-width: 768px) {
  .brand img {
    width: 56px;
    height: 56px;
  }
}

@media (max-width: 480px) {
  .brand img {
    width: 44px;
    height: 44px;
  }

  .brand-text-main {
    font-size: 0.85rem;
  }

  .brand-text-top {
    font-size: 0.65rem;
  }
}

.brand-text-main .accent {
  color: var(--accent);
}

.brand-full {
  display: block;
}

/* Affiché par défaut sur desktop */

.nav-links {
  display: flex;
  gap: 6px;
  font-size: .9rem;
}

.nav-links a {
  padding: 8px 16px;
  border-radius: 999px;
  color: #d0d0d0;
  font-weight: 500;
  letter-spacing: 0.05em;
  font-size: 0.85rem;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.nav-links a:hover {
  color: var(--accent);
  background: rgba(255, 255, 255, 0.05);
}

.nav-links a.active {
  background: var(--accent);
  color: #000;
  font-weight: 700;
}



/* Hamburger Menu (Caché sur Desktop) */
.nav-toggle,
.nav-toggle-label {
  display: none;
}

/* Langue */
.language-switcher {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-left: 10px;
}

.language-switcher a {
  opacity: 0.7;
  transition: opacity 0.2s;
}

.language-switcher a:hover {
  opacity: 1;
}

.flag-icon {
  width: 20px;
  height: auto;
  display: block;
}

/* --- HERO SECTION --- */
.hero {
  padding: 130px 0 60px;
  /* Adjusted for fixed header */
  border-bottom: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}

.hero:before {
  content: "";
  position: absolute;
  top: -100px;
  left: 50%;
  transform: translateX(-50%);
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(255, 90, 0, 0.08) 0%, rgba(0, 0, 0, 0) 70%);
  z-index: -1;
  filter: blur(40px);
}

.hero-inner {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
}

.hero-kicker {
  text-transform: uppercase;
  letter-spacing: .25em;
  color: var(--accent);
  font-weight: 800;
  font-size: .8rem;
  margin-bottom: 10px;
}

.hero-title {
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 900;
  line-height: 1.1;
  text-shadow: 0 0 40px rgba(0, 0, 0, 0.5);
  letter-spacing: -0.02em;
  margin-bottom: 20px;
  max-width: 100%;
}

.hero-sub {
  margin-top: 20px;
  color: #e0e0e0;
  /* Brighter text */
  font-size: 1.25rem;
  line-height: 1.6;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  margin-top: 40px;
}

/* NOUVEAU LOGO GRAND FORMAT DANS HERO */
.logo-hero {
  margin: 30px auto 40px auto;
  /* Espace autour du logo */
  text-align: center;
}

.logo-large {
  width: 300px;
  /* Logo XXL */
  height: 300px;
  border-radius: 50%;
  background: #000;
  border: 3px solid var(--accent);
  /* Bordure accentuée */
  box-shadow: 0 0 30px rgba(255, 90, 0, 0.4), inset 0 0 20px rgba(255, 90, 0, 0.2);
  /* Ombre pour effet de luxe + inset */
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.logo-large:hover {
  box-shadow: 0 0 60px rgba(255, 90, 0, 0.8), inset 0 0 30px rgba(255, 90, 0, 0.4);
}

/* --- FIL D'ARIANE (Breadcrumb) --- */
.breadcrumb {
  background: var(--bg-soft);
  border-bottom: 1px solid var(--border);
  padding: 10px 0;
  font-size: 0.85rem;
  color: var(--muted);
}

.breadcrumb a:hover {
  color: var(--accent);
  text-decoration: underline;
}

/* --- BOUTONS --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 14px 28px;
  border-radius: 999px;
  border: 1px solid var(--border);
  font-weight: 500;
  font-size: .90rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  cursor: pointer;
  transition: transform 0.3s ease, opacity 0.3s ease;
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background: transparent;
  color: #fff;
  border: 1px solid var(--accent);
  box-shadow: 0 4px 20px rgba(255, 90, 0, 0.15);
}

.btn-primary::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: var(--accent);
  z-index: -1;
  transition: transform 0.3s ease, opacity 0.3s ease;
  transform: scaleY(0);
  transform-origin: bottom;
}

.btn-primary:hover {
  transform: translateY(-2px);
  color: #000;
  border-color: var(--accent);
  box-shadow: 0 10px 30px var(--accent-glow);
}

.btn-primary:hover::before {
  transform: scaleY(1);
}

.btn-ghost {
  background: rgba(255, 255, 255, 0.02);
  color: var(--fg);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.btn-ghost:hover {
  border-color: rgba(255, 255, 255, 0.3);
  background: rgba(255, 255, 255, 0.05);
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

/* --- SECTIONS & CARTES --- */
section {
  padding: 40px 0;
  position: relative;
}

.section-title {
  font-size: .85rem;
  text-transform: uppercase;
  letter-spacing: .2em;
  color: var(--accent);
  font-weight: 800;
  margin-bottom: 10px;
}

.section-headline {
  font-size: 1.6rem;
  font-weight: 700;
  margin-bottom: 16px;
  color: #fff;
}

.lead {
  color: var(--muted);
  max-width: 800px;
  margin-bottom: 20px;
  font-size: 1.05rem;
}

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  margin-top: 24px;
}

.two-cols {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 40px;
  margin-top: 20px;
}

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

/* Glass Cards Premium Modernization - Luxe */
.glass-card {
  position: relative;
  background: linear-gradient(180deg, rgba(20, 20, 20, 0.4) 0%, rgba(5, 5, 5, 0.6) 100%);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid var(--glass-border);
  border-top-color: rgba(255, 255, 255, 0.15); /* Lumière d'arête */
  border-radius: var(--radius-lg);
  padding: 40px 35px;
  transition: transform 0.3s ease, opacity 0.3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.05); /* Lueur interne */
}

/* Effet de lueur interne au survol */
.glass-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 90, 0, 0.8), transparent);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.glass-card::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: var(--radius-lg);
  box-shadow: 0 0 20px rgba(255, 90, 0, 0);
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
}

.glass-card:hover {
  border-color: rgba(255, 255, 255, 0.25);
  background: linear-gradient(180deg, rgba(30, 30, 30, 0.5) 0%, rgba(10, 10, 10, 0.8) 100%);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.8), 0 0 40px rgba(255, 90, 0, 0.1), inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.glass-card:hover::before {
  opacity: 1;
}

.glass-card:hover::after {
  opacity: 1;
  box-shadow: inset 0 0 20px rgba(255, 90, 0, 0.05); /* Lueur orange douce à l'intérieur border */
}



.glass-card h3 {
  font-size: 1.25rem;
  font-weight: 500;
  margin-bottom: 12px;
  color: #fff;
  font-family: 'Montserrat', sans-serif;
  letter-spacing: 0.02em;
  transition: color 0.5s ease;
}

.glass-card:hover h3 {
  color: var(--accent);
}

.glass-card p {
  font-size: 0.95rem;
  color: #a0a0a0;
  flex-grow: 1;
  line-height: 1.7;
  transition: color 0.3s ease;
}

.glass-card:hover p {
  color: #e0e0e0;
}

/* Icon Boxes Modernisés - Retenus */
.icon-box {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 65px;
  height: 65px;
  border-radius: 50%; /* Arrondi pour élégance nautique */
  background: rgba(25, 25, 25, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 1.8rem;
  color: var(--muted);
  margin-bottom: 25px;
  transition: transform 0.3s ease, opacity 0.3s ease;
  box-shadow: inset 0 2px 10px rgba(0, 0, 0, 0.5);
}

.glass-card:hover .icon-box {
  border-color: var(--accent);
  color: var(--accent);
  background: rgba(255, 90, 0, 0.05);
  transform: translateY(-4px);
  box-shadow: inset 0 0 15px var(--accent-glow), 0 5px 15px rgba(0, 0, 0, 0.3);
}

/* --- AJOUTS STYLES PROCESSUS "MODERN TECH" --- */

.process-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.process-card {
  position: relative;
  /* Nouveau fond en dégradé */
  background: linear-gradient(145deg, rgba(30, 30, 30, 0.6) 0%, rgba(10, 10, 10, 0.9) 100%);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 18px;
  padding: 35px 30px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.4s ease, border-color 0.4s ease, box-shadow 0.4s ease;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.process-card:hover {
  transform: translateY(-8px);
  border-color: rgba(255, 90, 0, 0.5);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6);
}

/* Filigrane Numérique (Les gros numéros en fond) */
.step-watermark {
  position: absolute;
  top: -20px;
  right: -10px;
  font-size: 7rem;
  font-weight: 900;
  font-family: 'Montserrat', sans-serif;
  color: rgba(255, 255, 255, 0.03);
  z-index: 0;
  transition: transform 0.3s ease, opacity 0.3s ease;
  user-select: none;
  line-height: 1;
}

.process-card:hover .step-watermark {
  color: rgba(255, 90, 0, 0.15);
  transform: scale(1.1) translateX(-10px);
}

.step-content {
  position: relative;
  z-index: 1;
}

.step-content h3 {
  font-size: 1.3rem;
  font-weight: 400;
  color: #fff;
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  gap: 12px;
}

/* La puce orange devant le titre */
.step-content h3::before {
  content: '';
  display: block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #ff5a00;
  box-shadow: 0 0 10px #ff5a00;
}

.step-content p {
  font-size: 1rem;
  color: #b0b0b0;
  line-height: 1.7;
  margin-bottom: 20px;
}

/* Le Tag "Objectif" */
.step-objective {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 700;
  color: #ffaa75;
  /* Orange clair */
  text-transform: uppercase;
  letter-spacing: 0.05em;
  background: rgba(255, 90, 0, 0.1);
  padding: 8px 12px;
  border-radius: 6px;
  border: 1px solid rgba(255, 90, 0, 0.15);
}

/* --- AUTRES ÉLÉMENTS SPÉCIFIQUES --- */

/* Tags (Villes & Zones) */
.tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 10px;
}

.tag {
  padding: 5px 12px;
  border-radius: 999px;
  border: 1px solid var(--border);
  font-size: .8rem;
  background: rgba(255, 255, 255, 0.03);
  color: var(--muted);
}

/* Listes à puces simples */
.list {
  list-style: none;
  padding-left: 10px;
  color: var(--muted);
  margin-top: 15px;
}

.list li {
  margin-bottom: 8px;
  padding-left: 15px;
  position: relative;
}

.list li:before {
  content: "•";
  color: var(--accent);
  position: absolute;
  left: 0;
  font-weight: bold;
}

/* Check List (Pages Villes) */
.check-list {
  list-style: none;
  padding: 0;
  margin-top: 15px;
}

.check-list li {
  position: relative;
  padding-left: 25px;
  margin-bottom: 10px;
  color: #ccc;
  font-size: 0.95rem;
}

.check-list li:before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: bold;
}

/* Barre de Confiance (Trust Bar - Index) */
.trust-bar {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px 50px;
  /* Reduced gap, added flex wrap */
  margin-top: 50px;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  width: 100%;
}

.trust-item {
  text-align: center;
  flex: 0 1 auto;
  /* Allow auto sizing */
}



.trust-item strong {
  display: block;
  font-size: 1rem;
  color: #fff;
  font-weight: 500;
  letter-spacing: 0.05em;
  margin-bottom: 4px;
}

.trust-item span {
  font-size: 0.80rem;
  color: #888;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

/* Histoire & Signature (A Propos) */
.story-text {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #ccc;
  margin-bottom: 30px;
  font-weight: 300;
}

.story-text strong {
  color: #fff;
  font-weight: 600;
}

.signature-block {
  margin-top: 40px;
}

.signature {
  font-family: 'Dancing Script', cursive;
  font-size: 3rem;
  color: var(--accent);
  transform: rotate(-4deg);
  display: inline-block;
  margin-bottom: 5px;
}

.signature-title {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #888;
}

.big-number {
  font-size: 3.5rem;
  font-weight: 800;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 10px;
  font-family: 'Montserrat', sans-serif;
}

/* Marques (Services) */
.brand-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 25px;
}

.brand-pill {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #666;
  padding: 8px 16px;
  border-radius: 4px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(0, 0, 0, 0.5);
  transition: transform 0.3s ease, opacity 0.3s ease;
  cursor: default;
}

.brand-pill:hover {
  color: #fff;
  border-color: #fff;
  background: #111;
}

/* Détails Services */
.detail-list {
  margin-top: 20px;
  list-style: none;
  padding: 0;
}

.detail-list li {
  margin-bottom: 14px;
  color: #b0b0b0;
  padding-left: 18px;
  border-left: 2px solid rgba(255, 255, 255, 0.15);
  line-height: 1.6;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.detail-list li:hover {
  border-left-color: var(--accent);
  color: #fff;
  padding-left: 22px;
}

.detail-list li strong {
  color: #fff;
  font-weight: 600;
  display: block;
  margin-bottom: 2px;
}

/* --- BOUTON WHATSAPP FLOTTANT --- */
.whatsapp-float {
  position: fixed;
  width: 60px;
  height: 60px;
  bottom: 30px;
  right: 30px;
  background-color: #25d366;
  color: #FFF;
  border-radius: 50px;
  text-align: center;
  font-size: 30px;
  box-shadow: 0px 4px 15px rgba(37, 211, 102, 0.4);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease, opacity 0.3s ease;
  text-decoration: none;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0px 6px 20px rgba(37, 211, 102, 0.6);
  color: #fff;
}

.whatsapp-badge {
  position: absolute;
  top: -5px;
  right: -5px;
  width: 20px;
  height: 20px;
  background: #ff0000;
  color: #fff;
  border-radius: 50%;
  font-size: 11px;
  font-weight: bold;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #000;
}

@keyframes pulse-green {
  0% { transform: scale(1); opacity: 0.7; }
  70% { transform: scale(1.2); opacity: 0; }
  100% { transform: scale(1); opacity: 0; }
}

.whatsapp-pulse {
  animation: pulse-green 2s infinite;
}

/* Hide Old Card Button if present */
.floating-card-btn {
  display: none !important;
}

/* Pages Légales */
.legal-container {
  max-width: 800px;
  margin: 120px auto 60px;
  padding: 0 20px;
}

.legal-section {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 30px;
  margin-bottom: 30px;
}

.legal-section h2 {
  font-size: 1.2rem;
  color: var(--accent);
  margin-bottom: 15px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding-bottom: 10px;
}

/* --- FORMULAIRE & CONTACT --- */
.contact-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 40px;
}

.form-grid-2col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

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

@media (max-width: 768px) {
  .form-grid-2col {
    grid-template-columns: 1fr;
    gap: 15px;
  }
  
  .hero .hero-title {
    font-size: 2.2rem !important;
  }

  .premium-form-container {
    padding: 25px 20px;
  }
}

.contact-sidebar-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 15px;
  margin-top: 20px;
}

.contact-form {
  background: var(--card);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  padding: 24px;
}

.form-row {
  display: flex;
  gap: 15px;
  margin-bottom: 15px;
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 15px;
  flex: 1;
}

.form-field label {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--muted);
}

.form-field input,
.form-field select,
.form-field textarea {
  background: #000;
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 10px 14px;
  color: #fff;
  font-family: inherit;
  font-size: 0.95rem;
  outline: none;
  transition: border-color 0.2s;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  border-color: var(--accent);
}

.form-field textarea {
  min-height: 100px;
  resize: vertical;
}

.required {
  color: var(--accent);
}

.form-note {
  font-size: 0.8rem;
  color: #666;
  margin-top: 10px;
  line-height: 1.4;
}

.contact-info-card {
  display: flex;
  flex-direction: column;
}

.contact-info-card h3 {
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--muted);
  margin-bottom: 5px;
  font-family: 'Montserrat', sans-serif;
}

.contact-info-card p {
  font-size: 1.1rem;
  font-weight: 600;
  color: #fff;
  margin: 0;
}

/* --- FOOTER & FLOATING BTN --- */
footer {
  border-top: 1px solid var(--border);
  padding: 30px 0;
  font-size: .85rem;
  color: #666;
  text-align: center;
  background: #020202;
  margin-top: 40px;
}

.footer-layout {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.floating-card-btn {
  position: fixed;
  right: 20px;
  bottom: 20px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 16px;
  background: rgba(10, 10, 10, 0.9);
  backdrop-filter: blur(8px);
  border: 1px solid var(--accent);
  border-radius: 999px;
  color: #fff;
  font-weight: 600;
  z-index: 100;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.5);
  transition: transform 0.2s ease, background 0.2s ease;
}

.floating-card-btn:hover {
  background: var(--accent);
  color: #000;
  transform: scale(1.05);
}

.floating-card-icon {
  width: 20px;
  height: 20px;
}

/* --- ANIMATIONS & UTILS --- */
.skip-link {
  position: absolute;
  left: -9999px;
  top: 20px;
  background: var(--accent);
  color: #000;
  padding: 10px;
  z-index: 9999;
}

.skip-link:focus {
  left: 20px;
}

@keyframes pulseLogo {
  0%, 100% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.05);
    opacity: 0.9;
  }
}

/* Animations Scroll Reveal gérées par IntersectionObserver dans script.js et CSS premium en bas de fichier */
.delay-1 {
  animation-delay: 0.15s;
}

.delay-2 {
  animation-delay: 0.3s;
}

/* =========================================
   RESPONSIVE DESIGN — ARCHITECTURE COMPLÈTE
   Breakpoints : 1024px (tablette), 768px (petit tablet),
   600px (grand mobile), 480px (smartphone), 360px (très petit)
   ========================================= */

/* --- TABLETTE PAYSAGE (≤ 1024px) --- */
@media (max-width: 1024px) {

  /* Style du bouton Hamburger */
  .nav-toggle-label {
    display: block;
    width: 30px;
    height: 24px;
    cursor: pointer;
    position: relative;
    z-index: 50;
  }

  .nav-toggle-label span {
    display: block;
    width: 100%;
    height: 2px;
    background: #fff;
    margin-bottom: 6px;
    transition: 0.3s;
  }

  /* Style du menu (Overlay Plein Écran) */
  .nav-links {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 100vh;
    max-height: none;
    overflow-y: auto;
    z-index: 30;
    background: rgba(5, 5, 5, 1);
    flex-direction: column;
    padding: 100px 20px 20px 20px;
    gap: 15px;
    border-bottom: none;
    transform: translateY(-100%);
    opacity: 0;
    visibility: hidden;
    transition: transform 0.3s ease, opacity 0.3s ease;
  }

  .nav-toggle:checked~.nav-links {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  /* Style des liens dans le menu plein écran */
  .nav-links a {
    display: block;
    width: 100%;
    text-align: left;
    font-size: 1.15rem;
    font-weight: 800;
    letter-spacing: 0.05em;
    padding: 18px 25px;
    margin-bottom: 2px;
    border: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    background: transparent;
    border-radius: 0;
  }

  /* Style du lien actif modernisé */
  .nav-links a.active {
    border-bottom: 2px solid var(--accent);
    color: var(--accent) !important;
    background: rgba(255, 90, 0, 0.12) !important;
    padding-left: 30px;
  }

  /* Mise en page des colonnes */
  .hero-inner,
  .two-cols,
  .contact-grid,
  .process-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .two-cols {
    display: flex;
    flex-direction: column;
  }

  .hero {
    text-align: center;
    padding: 110px 0 50px;
  }

  .hero-actions {
    justify-content: center;
  }

  .footer-layout {
    flex-direction: column;
    text-align: center;
  }

  /* Logo Hero : taille tablette */
  .logo-large {
    width: 200px;
    height: 200px;
  }

  /* Section headline plus lisible */
  .section-headline {
    font-size: 1.4rem;
  }
}

/* --- TABLETTE PORTRAIT (≤ 768px) --- */
@media (max-width: 768px) {

  /* Trust-bar en grille 2 colonnes */
  .trust-bar {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    text-align: center;
  }

  /* Footer empilé */
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 15px;
    text-align: center;
  }

  /* Hero titre */
  .hero-title {
    font-size: clamp(1.6rem, 5vw, 2.4rem);
  }

  .hero-sub {
    font-size: 1.05rem;
  }

  /* Logo Hero : taille tablette portrait */
  .logo-large {
    width: 180px;
    height: 180px;
  }

  /* Hero : ajustement padding */
  .hero {
    padding: 100px 0 40px;
  }

  /* Service grid nav : on garde 2 colonnes mais taille réduite */
  .service-grid-nav {
    gap: 10px;
  }
}

/* --- GRAND MOBILE (≤ 600px) --- */
@media (max-width: 600px) {

  /* Masque le texte SEMA dans le header, garde uniquement le logo */
  .brand-full {
    display: none;
  }

  .container {
    padding: 0 16px;
  }

  .hero-title {
    font-size: 1.8rem;
  }

  .hero-sub {
    font-size: 0.95rem;
  }

  /* Boutons pleine largeur */
  .btn {
    width: 100%;
    padding: 12px 20px;
    font-size: 0.85rem;
  }

  /* Padding réduit sur les cartes */
  .glass-card,
  .process-card {
    padding: 25px 20px;
  }

  /* Formulaire */
  .form-row {
    flex-direction: column;
    gap: 0;
  }

  /* Floating CTA */
  .floating-card-btn span {
    display: none;
  }

  .floating-card-btn {
    padding: 10px;
    border-radius: 50%;
  }

  /* Logo Hero */
  .logo-large {
    width: 150px;
    height: 150px;
  }

  /* Sections : réduction padding vertical */
  section {
    padding: 30px 0;
  }

  /* Section title / kicker */
  .section-headline {
    font-size: 1.2rem;
  }

  .hero-kicker {
    font-size: 0.65rem;
    letter-spacing: 0.15em;
  }
}

/* --- SMARTPHONE (≤ 480px) --- */
@media (max-width: 480px) {

  /* Trust-bar en colonne unique */
  .trust-bar {
    grid-template-columns: 1fr;
    display: grid;
  }

  /* Signature */
  .signature {
    font-size: 2rem;
  }

  /* Hero encore plus compact */
  .hero {
    padding: 90px 0 30px;
  }

  .hero-title {
    font-size: 1.5rem;
  }

  .hero-sub {
    font-size: 0.88rem;
  }

  /* Logo Hero compact */
  .logo-large {
    width: 120px;
    height: 120px;
  }

  /* Cartes glass encore plus réduites */
  .glass-card,
  .process-card {
    padding: 20px 15px;
  }

  .glass-card h3 {
    font-size: 1.1rem;
  }

  /* Icon box réduit */
  .icon-box {
    width: 50px;
    height: 50px;
    font-size: 1.4rem;
  }

  /* Process : filigrane plus petit */
  .step-watermark {
    font-size: 5rem;
  }

  /* Contact page */
  .premium-form-container {
    padding: 25px 15px;
  }

  /* Zone cards en colonne unique */
  .service-grid-nav {
    grid-template-columns: 1fr;
  }

  .zone-card-all {
    grid-column: span 1;
  }
}

/* --- TRÈS PETIT ÉCRAN (≤ 360px) --- */
@media (max-width: 360px) {

  .hero-title {
    font-size: 1.3rem;
  }

  .logo-large {
    width: 100px;
    height: 100px;
  }

  .btn {
    padding: 10px 16px;
    font-size: 0.8rem;
  }

  .nav-links a {
    font-size: 1rem;
    padding: 14px 20px;
  }
}

/* --- CARTE DE VISITE (Styles autonomes qui n'interfèrent pas avec le site principal) --- */
body.vcard-page {
  font-family: 'Outfit', sans-serif;
  background: radial-gradient(circle at 50% 0%, #1a1a1a 0%, #000000 85%);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  padding: 30px 20px;
}

body.vcard-page::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: radial-gradient(circle, rgba(255, 90, 0, 0.08) 0%, transparent 60%);
  animation: pulseLight 8s ease-in-out infinite;
}







/* --- WHATSAPP FLOAT --- */
.whatsapp-float {
  position: fixed;
  bottom: 25px;
  right: 25px;
  width: 60px;
  height: 60px;
  background-color: #25d366;
  color: #fff;
  border-radius: 50%;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease;
  text-decoration: none;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.6);
}

.whatsapp-float img {
  width: 35px;
  height: 35px;
  filter: brightness(0) invert(1);
}

/* --- SERVICE ROUTE (New Design V4 - Functional Grid) --- */
.service-grid-nav {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 25px;
}

.zone-card {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 12px 6px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  font-size: 0.85rem;
  font-weight: 500;
  color: #ccc;
  text-decoration: none;
  transition: transform 0.3s ease, opacity 0.3s ease;
  cursor: pointer;
  /* Glass effect */
  backdrop-filter: blur(5px);
}

.zone-card:hover {
  background: rgba(255, 90, 0, 0.1);
  border-color: var(--accent);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.zone-card-all {
  grid-column: span 2;
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
  margin-top: 5px;
  font-weight: 600;
}

.zone-card-all:hover {
  background: var(--accent);
  border-color: var(--accent);
  color: #000;
  /* Contrast black on orange */
}

/* --- ABOUT PAGE SPECIFICS --- */
.about-hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 70% 20%, rgba(30, 30, 30, 1) 0%, rgba(0, 0, 0, 1) 80%);
  z-index: -2;
}

.quote-box {
  border-left: 3px solid var(--accent);
  padding-left: 25px;
  margin: 30px 0;
  font-style: italic;
  color: #ddd;
  font-size: 1.1rem;
}

/* 
   SEMA PREMIUM STYLES 
   Extension modulaire pour Glassmorphism & Animations
*/

/* --- 1. SCROLL REVEAL ANIMATIONS --- */
.animate-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s cubic-bezier(0.25, 1, 0.5, 1), transform 0.8s cubic-bezier(0.25, 1, 0.5, 1);
  will-change: opacity, transform;
}

.animate-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Délais en cascade */
.delay-1 {
  transition-delay: 0.1s;
}

.delay-2 {
  transition-delay: 0.2s;
}

.delay-3 {
  transition-delay: 0.3s;
}

.delay-4 {
  transition-delay: 0.4s;
}


/* --- 2. PREMIUM GLASS CARDS --- */
/* Remplace l'ancien style .glass-card par une version plus profonde */
.glass-card {
  background: rgba(14, 14, 14, 0.7);
  /* Plus sombre pour contraste */
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  padding: 35px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
  transition: transform 0.3s ease, opacity 0.3s ease;
  height: 100%;
  /* Uniform height in grid */
  display: flex;
  flex-direction: column;
}

.glass-card:hover {
  transform: translateY(-6px);
  border-color: rgba(255, 255, 255, 0.25);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.7), 0 0 40px rgba(255, 90, 0, 0.05), inset 0 1px 0 rgba(255, 255, 255, 0.1);
  background: linear-gradient(180deg, rgba(30, 30, 30, 0.5) 0%, rgba(10, 10, 10, 0.8) 100%);
}

.glass-card h3 {
  color: #fff;
  font-family: 'Montserrat', sans-serif;
  font-size: 1.25rem;
  margin-bottom: 15px;
  font-weight: 700;
}

.glass-card p {
  color: #aaa;
  font-size: 0.95rem;
  line-height: 1.6;
  margin: 0;
}

.glass-card .icon-box {
  font-size: 2.5rem;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  /* Ensure it spans width to center itself if parent isn't flex column centering */
  filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.1));
}


/* --- 3. FOOTER PREMIUM STRUCTURE --- */
.footer-premium-wrapper {
  background: #050505;
  border-top: 1px solid #222;
  padding: 70px 0 30px 0;
  margin-top: 0;
  /* Attach to bottom */
  position: relative;
  z-index: 10;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 60px;
  margin-bottom: 50px;
}

.footer-col h4 {
  color: #fff;
  font-family: 'Montserrat', sans-serif;
  font-size: 1.1rem;
  margin-bottom: 25px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.footer-col p {
  color: #888;
  line-height: 1.6;
  font-size: 0.9rem;
  max-width: 300px;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a {
  color: #888;
  text-decoration: none;
  transition: color 0.2s ease;
  font-size: 0.95rem;
}

.footer-links a:hover {
  color: var(--accent, #ff5a00);
}

.footer-contact-item {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #bbb;
  margin-bottom: 15px;
  font-size: 0.95rem;
}

.footer-bottom {
  border-top: 1px solid #1a1a1a;
  padding-top: 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #555;
  font-size: 0.85rem;
}

/* Mobile Footer */
@media (max-width: 768px) {
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 15px;
    text-align: center;
  }
}

/* --- CONTACT PAGE STYLES --- */
.contact-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-areas: 'form info' 'form zones';
  gap: 60px;
  align-items: flex-start;
}

@media (max-width: 900px) {
  .contact-wrapper {
    display: flex;
    flex-direction: column;
    gap: 40px;
  }

  .contact-right-info {
    order: 1;
  }

  .premium-form-container {
    order: 2;
  }

  .glass-sidebar-container {
    order: 3;
  }
}

.premium-form-container {
  grid-area: form;
  background: #0a0a0a;
  padding: 40px;
  border-radius: 12px;
  border: 1px solid #222;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.6);
}

.form-kicker {
  color: #ff5a00;
  font-size: 0.8rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 8px;
  display: block;
  font-family: 'Montserrat', sans-serif;
}

.premium-form-container h2 {
  margin-top: 0;
  font-family: 'Montserrat', sans-serif;
  font-size: 1.8rem;
  margin-bottom: 10px;
  color: #fff;
}

.form-description {
  color: #999;
  margin-bottom: 30px;
  font-size: 0.95rem;
  line-height: 1.5;
}

.matte-input-group {
  margin-bottom: 20px;
}

.matte-label {
  display: block;
  font-size: 0.7rem;
  font-weight: 700;
  color: #777;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 8px;
  font-family: 'Inter', sans-serif;
}

.required-star {
  color: #ff5a00;
}

.matte-input {
  background: #000;
  border: 1px solid #333;
  border-radius: 6px;
  padding: 14px 16px;
  color: #fff;
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  transition: transform 0.3s ease, opacity 0.3s ease;
  width: 100%;
}

.matte-input:focus {
  border-color: #ff5a00;
  background: #050505;
  outline: none;
}

.matte-input::placeholder {
  color: #444;
}

.contact-right-info {
  grid-area: info;
}

.glass-sidebar-container {
  grid-area: zones;
  background: rgba(255, 255, 255, 0.03);
  padding: 30px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
}

.info-card-row {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 20px;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 12px;
  margin-bottom: 15px;
  transition: transform 0.2s ease, background 0.2s ease;
  border: 1px solid transparent;
  text-decoration: none;
}

.info-card-row:hover {
  background: rgba(255, 255, 255, 0.06);
  transform: translateY(-2px);
  border-color: rgba(255, 255, 255, 0.1);
}

.zone-pill {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 15px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.zone-pill:last-child {
  border-bottom: none;
}

.contact-icon-large {
  width: 45px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 50%;
  font-size: 1.2rem;
  color: var(--accent);
}

/* --- SERVICES PAGE STYLES --- */
.service-hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 50% 30%, rgba(20, 20, 30, 1) 0%, rgba(0, 0, 0, 1) 80%);
  z-index: -2;
}

.number-badge {
  font-family: 'Montserrat', sans-serif;
  font-size: 4rem;
  font-weight: 900;
  color: rgba(255, 255, 255, 0.03);
  line-height: 1;
  position: absolute;
  top: -30px;
  left: -20px;
  z-index: 0;
}

.service-card-premium {
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.03) 0%, rgba(0, 0, 0, 0.4) 100%);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 16px;
  padding: 40px;
  position: relative;
  overflow: hidden;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.service-card-premium:hover {
  border-color: rgba(255, 90, 0, 0.3);
  transform: translateY(-5px);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
}

.feature-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.feature-list li {
  margin-bottom: 12px;
  padding-left: 20px;
  position: relative;
  color: #ccc;
}

.feature-list li::before {
  content: '';
  color: var(--accent);
  position: absolute;
  left: 0;
  font-weight: bold;
}

/* --- ABOUT PAGE STYLES --- */
.about-hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 70% 20%, rgba(30, 30, 30, 1) 0%, rgba(0, 0, 0, 1) 80%);
  z-index: -2;
}

.quote-box {
  border-left: 3px solid var(--accent);
  padding-left: 25px;
  margin: 30px 0;
  font-style: italic;
  color: #ddd;
  font-size: 1.1rem;
}

/* --- ZONES PAGE STYLES --- */
.centered-card {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.icon-box.large {
  width: 60px;
  height: 60px;
  font-size: 2rem;
  color: var(--accent);
  border-color: var(--accent);
}

/* --- VCARD (CARTE DE VISITE) STYLES --- */
body.vcard-page {
  font-family: 'Outfit', sans-serif;
  background: radial-gradient(circle at top, #1a1a1a 0%, #000000 80%);
  color: #fff;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 15px;
  overflow-x: hidden;
  image-rendering: -webkit-optimize-contrast;
  image-rendering: crisp-edges;
  -webkit-font-smoothing: antialiased;
}

body.vcard-page::before {
  content: '';
  position: fixed;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255, 90, 0, 0.03) 0%, transparent 50%);
  animation: pulseBg 10s ease-in-out infinite;
  z-index: -1;
  pointer-events: none;
}

@keyframes pulseBg {

  0%,
  100% {
    transform: scale(1);
    opacity: 0.5;
  }

  50% {
    transform: scale(1.1);
    opacity: 0.8;
  }
}

.card-container {
  width: 100%;
  max-width: 400px;
  position: relative;
  margin: auto;
}

.vip-card {
  background: linear-gradient(145deg, rgba(30, 30, 30, 0.9) 0%, rgba(10, 10, 10, 0.95) 100%);
  /* backdrop-filter: blur(20px); */
  /* -webkit-backdrop-filter: blur(20px); */
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 24px;
  padding: 40px 30px;
  text-align: center;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.7), 0 0 0 1px rgba(255, 255, 255, 0.05) inset;
  position: relative;
  overflow: hidden;
}

.vip-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
}

.lang-switch-card {
  position: absolute;
  top: 20px;
  right: 20px;
  display: flex;
  gap: 8px;
  z-index: 10;
  background: rgba(0, 0, 0, 0.3);
  padding: 4px 8px;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.lang-switch-card a {
  display: block;
  opacity: 0.4;
  transition: transform 0.3s ease, opacity 0.3s ease;
  line-height: 0;
}

.lang-switch-card a.active {
  opacity: 1;
  transform: scale(1.1);
}

.lang-switch-card a:hover {
  opacity: 1;
}

.lang-switch-card img {
  width: 20px;
  height: auto;
  border-radius: 2px;
}

.profile-section {
  margin-bottom: 25px;
  position: relative;
}

.logo-wrapper {
  position: relative;
  width: 96px;
  height: 96px;
  margin: 0 auto 15px;
}

.logo-img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  border: 2px solid #ff5a00;
  padding: 3px;
  background: #000;
  box-shadow: 0 0 20px rgba(255, 90, 0, 0.2);
  image-rendering: -webkit-optimize-contrast;
  backface-visibility: hidden;
  transform: translateZ(0);
}

.profile-section .name {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.7rem;
  font-weight: 800;
  margin-bottom: 4px;
  color: #fff;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.profile-section .role {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #ffffff;
  font-weight: 700;
  margin-bottom: 2px;
}

.company-sub {
  font-size: 0.7rem;
  color: #666;
  font-weight: 500;
  letter-spacing: 0.5px;
}

.vcard-page .actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.vcard-page .btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  width: 100%;
  padding: 16px;
  border-radius: 14px;
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  transition: transform 0.3s ease, opacity 0.3s ease;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  border: none;
}

.vcard-page .btn:active {
  transform: scale(0.97);
}

.vcard-page .btn-save {
  background: linear-gradient(135deg, #ff5a00 0%, #d84a00 100%);
  color: #fff;
  box-shadow: 0 8px 20px rgba(255, 90, 0, 0.25);
}

.vcard-page .btn-save:hover {
  box-shadow: 0 12px 25px rgba(255, 90, 0, 0.35);
  transform: translateY(-2px);
}

.vcard-page .btn-whatsapp {
  background: #202020;
  color: #25D366;
  border: 1px solid rgba(37, 211, 102, 0.2);
}

.vcard-page .btn-whatsapp:hover {
  background: rgba(37, 211, 102, 0.1);
  border-color: #25D366;
}

.vcard-page .btn-dark {
  background: rgba(255, 255, 255, 0.03);
  color: #e0e0e0;
  border: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(5px);
}

.vcard-page .btn-dark:hover {
  background: rgba(255, 255, 255, 0.07);
  border-color: rgba(255, 255, 255, 0.2);
}

.btn-icon {
  font-size: 1.2rem;
}

.tags-container {
  margin-top: 25px;
}

.tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
}

.tag {
  background: rgba(255, 255, 255, 0.02);
  color: #888;
  padding: 6px 12px;
  border-radius: 8px;
  font-size: 0.75rem;
  font-weight: 500;
  border: 1px solid rgba(255, 255, 255, 0.05);
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.tag:hover {
  color: #fff;
  border-color: #ff5a00;
}

.share-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 15px;
  margin-top: 30px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.share-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: #666;
  text-decoration: none;
  font-size: 0.7rem;
  transition: color 0.2s;
  padding: 10px;
  border-radius: 12px;
}

.share-item:hover {
  background: rgba(255, 255, 255, 0.03);
  color: #fff;
}

.share-icon {
  font-size: 1.4rem;
  margin-bottom: 2px;
}

.bottom-link {
  margin-top: 25px;
  font-size: 0.8rem;
  color: #444;
  display: block;
}

.bottom-link a {
  color: #666;
  text-decoration: none;
}

.bottom-link a:hover {
  color: #ff5a00;
}


/* --- CITY PAGES UTILITIES --- */
.zone-grid {
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
}

.zone-card {
  padding: 20px;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.zone-card.highlight {
  background: linear-gradient(to bottom right, rgba(255, 90, 0, 0.05), transparent);
}

.zone-card-icon {
  font-size: 2rem;
  margin-bottom: 10px;
}

.zone-card-title {
  color: #fff;
  margin-bottom: 5px;
}

.zone-card-sub {
  font-size: 0.8rem;
  color: #888;
}

.cta-section-card {
  text-align: center;
  padding: 50px 20px;
  background: linear-gradient(to bottom, #0d0d0d, #000);
  margin-top: 40px;
}

.center-actions {
  justify-content: center;
}

.trust-bar-centered {
  margin-top: 50px;
  justify-content: center;
}

/* =========================================
   Cookie Consent Banner
   ========================================= */
#cookie-banner {
  display: none;
  position: fixed;
  bottom: 20px;
  right: 20px;
  max-width: 400px;
  background: rgba(20, 20, 20, 0.95);
  border: 1px solid #333;
  backdrop-filter: blur(10px);
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  z-index: 10000;
  color: #fff;
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
}

#cookie-banner h3 {
  margin-top: 0;
  font-size: 1.1rem;
  color: var(--accent, #ff5a00);
  margin-bottom: 10px;
}

#cookie-banner p {
  margin-bottom: 15px;
  line-height: 1.5;
  color: #ccc;
}

.cookie-buttons {
  display: flex;
  gap: 10px;
}

.cookie-btn {
  flex: 1;
  padding: 10px;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  font-weight: 600;
  transition: background 0.2s;
}

.cookie-accept {
  background: var(--accent, #ff5a00);
  color: #fff;
}

.cookie-accept:hover {
  background: #e04e00;
}

.cookie-decline {
  background: transparent;
  border: 1px solid #555;
  color: #aaa;
}


.cookie-decline:hover {
  border-color: #888;
  color: #fff;
}

/* --- NEW BADGE STYLE FOR PROCESS --- */
.step-badge {
  display: inline-block;
  padding: 5px 12px;
  border: 1px solid var(--accent);
  color: var(--accent);
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 15px;
  background: rgba(255, 90, 0, 0.08);
}

/* =========================================
   About Page Specific Styles (Harmonization)
   ========================================= */

.stat-card {
  padding: 30px;
  text-align: center;
  transition: transform 0.3s ease, opacity 0.3s ease;
  cursor: default;
  position: relative;
  background: rgba(255, 255, 255, 0.01);
}

.stat-card:hover {
  border-color: var(--accent);
  background: rgba(255, 255, 255, 0.04);
}

.stat-number {
  font-size: 2.5rem;
  font-weight: 700;
  color: #fff;
  display: block;
  margin-bottom: 5px;
  font-variant-numeric: tabular-nums;
}

.quote-handwritten {
  font-size: 1.6rem;
  line-height: 1.4;
  color: #ddd;
  margin-bottom: 15px;
}

.engagement-card {
  padding: 30px;
  position: relative;
  overflow: hidden;
  transition: transform 0.3s ease, border-color 0.3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.engagement-card:hover {
  border-color: rgba(193, 155, 118, 0.4);
  transform: translateY(-5px);
}

.watermark {
  position: absolute;
  top: -10px;
  right: 0px;
  font-size: 4rem;
  font-weight: 900;
  color: rgba(255, 255, 255, 0.03);
  line-height: 1;
  pointer-events: none;
  font-family: 'Montserrat', sans-serif;
  /* Ensuring consistency */
}

/* Pure CSS Radar/Compass Animation */
.radar-container {
  position: relative;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
}

.radar-container::before {
  content: '';
  position: absolute;
  inset: 20px;
  border-radius: 50%;
  border: 1px dashed rgba(255, 255, 255, 0.1);
  animation: spin 20s linear infinite;
}

.radar-container::after {
  content: '';
  position: absolute;
  inset: 50%;
  width: 2px;
  height: 50%;
  background: linear-gradient(to top, var(--accent), transparent);
  top: 0;
  left: 50%;
  transform-origin: bottom center;
  animation: sweep 4s linear infinite;
  opacity: 0.5;
}

/* Grid Layout specifically for Engagements 4-col */
.grid-4-engagements {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

@media (max-width: 992px) {
  .grid-4-engagements {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .grid-4-engagements {
    grid-template-columns: 1fr;
  }
}

@keyframes spin {
  100% {
    transform: rotate(360deg);
  }
}

@keyframes sweep {
  100% {
    transform: rotate(360deg);
  }
}

/* =========================================
   Trust Bar & Icon Centering Fixes
   ========================================= */

.trust-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  align-items: flex-start;
  /* or center, depending on content */
  /* Default alignment */
}

/* Ensure the centered variant forces flex centering */
.trust-bar-centered {
  display: flex;
  /* Reinforce flex */
  justify-content: center;
  margin-top: 50px;
  text-align: center;
}

.trust-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  /* Centers icon and text horizontally */
  text-align: center;
  max-width: 200px;
}

.trust-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 15px;
  /* Optional: explicit size if needed, but flex center handles SVG */
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.03);
  /* Subtle backdrop for perfect optical center */
  color: var(--accent);
}

.trust-icon svg {
  display: block;
  /* Removes inline spacing */
}

/* Ensure glass-card icons are perfectly centered */
.glass-card .icon-box {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
}

/* =========================================
   Honeypot (Anti-Spam)
   ========================================= */
.hp-field {
  display: none !important;
  visibility: hidden;
  opacity: 0;
  position: absolute;
  left: -9999px;
  /* Double security: if display:none is ignored by some bots, 
     absolute positioning moves it off-screen */
}

/* --- SPECIFIC HOME STYLES (Moved from inline) --- */
.stat-btn {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 20px;
  text-align: center;
  transition: transform 0.3s ease, opacity 0.3s ease;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.stat-btn:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: var(--accent);
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.stat-btn strong {
  font-size: 1.8rem;
  color: #fff;
  display: block;
  line-height: 1;
  margin-bottom: 5px;
}

.stat-btn span {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #aaa;
}

.expert-word {
  margin-top: 60px;
  text-align: center;
  position: relative;
  padding: 40px;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0.01), transparent);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.signature-font {
  font-family: 'Brush Script MT', ' cursive';
  font-size: 2rem;
  color: rgba(255, 255, 255, 0.8);
  transform: rotate(-2deg);
  display: inline-block;
  margin-top: 15px;
}

/* --- FIXED CONTACT SIDEBAR --- */
.glass-sidebar-container {
  grid-area: zones;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  padding: 40px;
  backdrop-filter: blur(10px);
  display: flex;
  flex-direction: column;
  align-items: center;
  /* Horizontally center the content (pills) */
  justify-content: flex-start;
  text-align: center;
  height: 100%;
}

.zone-pill {
  display: flex;
  align-items: center;
  gap: 15px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.05);
  padding: 15px 20px;
  border-radius: 12px;
  margin-bottom: 12px;
  width: 100%;
  max-width: 350px;
  /* Ensure nice width on large screens */
  text-decoration: none;
  transition: transform 0.3s ease, opacity 0.3s ease;
  text-align: left;
  /* Keep text aligned inside the pill */
}

.zone-pill:hover {
  background: rgba(255, 90, 0, 0.1);
  border-color: var(--accent);
  transform: translateX(5px);
}

@media (max-width: 768px) {
  .glass-sidebar-container {
    padding: 25px 15px;
    /* Reduce padding on mobile */
    align-items: center;
    /* Force horizontal centering */
    width: 100%;
  }

  /* Center the title icon container explicitly if needed */
  .glass-sidebar-container>div:first-child {
    justify-content: center;
    width: 100%;
  }

  .zone-pill {
    max-width: 100%;
    /* Take full width on small screens */
    width: 100%;
    margin-left: auto;
    margin-right: auto;
  }
}