/* ========== NAVIGATION ========== */
.nav-link {
  display: inline-block;
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: #9ca3af;
  border-radius: 0.5rem;
  transition: color 0.2s, background-color 0.2s;
}

.nav-link:hover,
.nav-link.active {
  color: #D4AF37;
  background-color: rgba(212, 175, 55, 0.08);
}

.mobile-nav-link {
  display: block;
  padding: 0.75rem 1rem;
  font-size: 0.9375rem;
  font-weight: 500;
  color: #d1d5db;
  border-radius: 0.5rem;
  transition: color 0.2s, background-color 0.2s;
}

.mobile-nav-link:hover {
  color: #D4AF37;
  background-color: rgba(212, 175, 55, 0.08);
}

#header.scrolled {
  background-color: rgba(10, 10, 15, 0.9);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.header-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  border-radius: 0.5rem;
  background: linear-gradient(135deg, #D4AF37 0%, #B8962E 100%);
  color: #0a0a0f;
  font-size: 0.875rem;
  font-weight: 600;
  transition: transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 2px 12px rgba(212, 175, 55, 0.2);
}

.header-cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 20px rgba(212, 175, 55, 0.3);
}

/* ========== HERO ========== */
.hero-glow {
  animation: glow-pulse 6s ease-in-out infinite;
}

@keyframes glow-pulse {
  0%, 100% { opacity: 0.5; }
  50% { opacity: 1; }
}

.hero-float {
  position: absolute;
  color: rgba(212, 175, 55, 0.08);
  font-size: 2rem;
  pointer-events: none;
  z-index: 1;
}

.hero-float--key-1 {
  top: 18%;
  left: 8%;
  animation: float-drift 8s ease-in-out infinite;
}

.hero-float--key-2 {
  top: 30%;
  right: 10%;
  font-size: 1.5rem;
  animation: float-drift 10s ease-in-out infinite reverse;
  animation-delay: -3s;
}

.hero-float--shoe {
  bottom: 25%;
  left: 12%;
  font-size: 1.75rem;
  animation: float-drift 9s ease-in-out infinite;
  animation-delay: -5s;
}

@keyframes float-drift {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-20px) rotate(8deg); }
}

@media (max-width: 640px) {
  .hero-float { display: none; }
}

.offer-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  padding: 0.375rem 0.875rem;
  border-radius: 9999px;
  font-size: 0.8125rem;
  font-weight: 500;
  color: #d1d5db;
  background-color: rgba(22, 22, 31, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: border-color 0.2s, color 0.2s;
}

.offer-pill i {
  color: #D4AF37;
  font-size: 0.75rem;
}

.offer-pill:hover {
  border-color: rgba(212, 175, 55, 0.3);
  color: #fff;
}

.stat-badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 1.25rem 0.5rem;
  border-radius: 0.75rem;
  border: 1px solid rgba(212, 175, 55, 0.15);
  background: linear-gradient(180deg, rgba(212, 175, 55, 0.06) 0%, rgba(22, 22, 31, 0.4) 100%);
}

.stat-number {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: #D4AF37;
  line-height: 1.2;
}

.stat-label {
  font-size: 0.6875rem;
  color: #9ca3af;
  text-align: center;
  margin-top: 0.25rem;
  line-height: 1.3;
}

/* ========== REVEAL ANIMATIONS ========== */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.12s; }
.reveal-delay-2 { transition-delay: 0.24s; }

/* ========== STORY / QUI SOMMES-NOUS ========== */
.value-row {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.value-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 0.625rem;
  background-color: rgba(212, 175, 55, 0.1);
  border: 1px solid rgba(212, 175, 55, 0.2);
  color: #D4AF37;
  flex-shrink: 0;
}

.story-visual {
  position: relative;
  padding: 2px;
  border-radius: 1.25rem;
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.4) 0%, rgba(212, 175, 55, 0.05) 50%, rgba(212, 175, 55, 0.2) 100%);
}

.story-visual-inner {
  padding: 2.5rem;
  border-radius: calc(1.25rem - 2px);
  background: linear-gradient(160deg, #1c1c28 0%, #111118 100%);
  text-align: center;
}

.story-visual-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 4.5rem;
  height: 4.5rem;
  border-radius: 1rem;
  background-color: rgba(212, 175, 55, 0.12);
  border: 1px solid rgba(212, 175, 55, 0.25);
  margin-bottom: 1.25rem;
}

.story-visual-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
}

.story-visual-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 0.5rem;
  border-radius: 0.75rem;
  background-color: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.05);
  font-size: 0.75rem;
  color: #9ca3af;
  transition: border-color 0.2s, background-color 0.2s;
}

.story-visual-item i {
  color: #D4AF37;
  font-size: 1.125rem;
}

.story-visual-item:hover {
  border-color: rgba(212, 175, 55, 0.2);
  background-color: rgba(212, 175, 55, 0.05);
}

/* ========== SCENARIO CARDS ========== */
.scenario-card {
  padding: 1.75rem;
  border-radius: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.06);
  background-color: rgba(22, 22, 31, 0.5);
  transition: border-color 0.3s, transform 0.3s, box-shadow 0.3s;
}

.scenario-card:hover {
  border-color: rgba(212, 175, 55, 0.2);
  transform: translateY(-3px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.25);
}

.scenario-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 0.625rem;
  background-color: rgba(212, 175, 55, 0.1);
  color: #D4AF37;
  font-size: 1.125rem;
  margin-bottom: 1rem;
}

.scenario-icon--urgent {
  background-color: rgba(239, 68, 68, 0.1);
  color: #f87171;
}

.scenario-link {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  font-size: 0.8125rem;
  font-weight: 600;
  color: #D4AF37;
  transition: gap 0.2s, color 0.2s;
}

.scenario-link:hover {
  color: #E8C547;
  gap: 0.625rem;
}

/* ========== HERO (continued) ========== */
.hero-pattern {
  background-image:
    radial-gradient(circle at 25% 25%, rgba(212, 175, 55, 0.06) 0%, transparent 50%),
    radial-gradient(circle at 75% 75%, rgba(212, 175, 55, 0.04) 0%, transparent 50%),
    linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
  background-size: 100% 100%, 100% 100%, 60px 60px, 60px 60px;
}

.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

.fade-in-delay-1 { transition-delay: 0.1s; }
.fade-in-delay-2 { transition-delay: 0.2s; }
.fade-in-delay-3 { transition-delay: 0.3s; }
.fade-in-delay-4 { transition-delay: 0.4s; }

/* ========== CTA & PHONE CARDS ========== */
.cta-emergency {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.5rem;
  border-radius: 0.75rem;
  background: linear-gradient(135deg, #D4AF37 0%, #B8962E 100%);
  color: #0a0a0f;
  font-weight: 600;
  transition: transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 4px 24px rgba(212, 175, 55, 0.25);
}

.cta-emergency:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(212, 175, 55, 0.35);
}

.phone-card {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.25rem;
  border-radius: 0.75rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background-color: rgba(22, 22, 31, 0.6);
  transition: border-color 0.2s, background-color 0.2s, transform 0.2s;
}

.phone-card:hover {
  transform: translateY(-1px);
}

.phone-card--primary {
  border-color: rgba(212, 175, 55, 0.3);
  background-color: rgba(212, 175, 55, 0.08);
}

.phone-card--primary:hover {
  border-color: rgba(212, 175, 55, 0.5);
  background-color: rgba(212, 175, 55, 0.12);
}

.phone-card--night {
  border-color: rgba(129, 140, 248, 0.2);
  background-color: rgba(99, 102, 241, 0.06);
}

.phone-card--night:hover {
  border-color: rgba(129, 140, 248, 0.35);
  background-color: rgba(99, 102, 241, 0.1);
}

.phone-card-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 0.625rem;
  background-color: rgba(212, 175, 55, 0.15);
  color: #D4AF37;
  font-size: 1.125rem;
  flex-shrink: 0;
}

.phone-card-icon--night {
  background-color: rgba(99, 102, 241, 0.15);
  color: #a5b4fc;
}

.phone-card-label {
  font-size: 0.75rem;
  color: #9ca3af;
  margin-bottom: 0.125rem;
}

.phone-card-number {
  font-size: 1.125rem;
  font-weight: 700;
  color: #fff;
}

/* ========== TRUST BADGES (legacy) ========== */
.trust-badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 1rem 0.5rem;
  border-radius: 0.75rem;
  border: 1px solid rgba(255, 255, 255, 0.05);
  background-color: rgba(22, 22, 31, 0.4);
}

/* ========== SERVICE CARDS ========== */
.service-card {
  position: relative;
  padding: 2rem;
  border-radius: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.06);
  background-color: rgba(22, 22, 31, 0.5);
  transition: border-color 0.3s, transform 0.3s, box-shadow 0.3s;
}

.service-tag {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  padding: 0.2rem 0.625rem;
  border-radius: 9999px;
  font-size: 0.6875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: #D4AF37;
  background-color: rgba(212, 175, 55, 0.1);
  border: 1px solid rgba(212, 175, 55, 0.2);
}

.service-card:hover {
  border-color: rgba(212, 175, 55, 0.25);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
}

.service-card-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 0.75rem;
  background-color: rgba(212, 175, 55, 0.1);
  border: 1px solid rgba(212, 175, 55, 0.2);
  margin-bottom: 1.25rem;
}

.service-item {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  font-size: 0.875rem;
  color: #9ca3af;
}

/* ========== DEVIS BANNER ========== */
.devis-banner {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  padding: 2rem;
  border-radius: 1rem;
  border: 1px solid rgba(212, 175, 55, 0.2);
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.06) 0%, rgba(22, 22, 31, 0.8) 100%);
}

@media (min-width: 768px) {
  .devis-banner {
    flex-direction: row;
    align-items: center;
  }
}

.devis-banner-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 0.75rem;
  background-color: rgba(212, 175, 55, 0.15);
  color: #D4AF37;
  font-size: 1.5rem;
  flex-shrink: 0;
}

.devis-banner-content {
  flex: 1;
}

.devis-banner-title {
  font-size: 1.125rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.375rem;
}

.devis-banner-text {
  font-size: 0.875rem;
  color: #9ca3af;
  line-height: 1.6;
}

.devis-link {
  color: #D4AF37;
  text-decoration: underline;
  text-underline-offset: 2px;
  transition: color 0.2s;
}

.devis-link:hover {
  color: #E8C547;
}

.devis-banner-actions {
  display: flex;
  gap: 0.75rem;
  flex-shrink: 0;
}

.devis-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.625rem 1.25rem;
  border-radius: 0.5rem;
  font-size: 0.875rem;
  font-weight: 600;
  transition: background-color 0.2s, border-color 0.2s, color 0.2s;
}

.devis-btn--outline {
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: #d1d5db;
}

.devis-btn--outline:hover {
  border-color: rgba(212, 175, 55, 0.4);
  color: #D4AF37;
}

.devis-btn--gold {
  background-color: #D4AF37;
  color: #0a0a0f;
}

.devis-btn--gold:hover {
  background-color: #E8C547;
}

/* ========== URGENCE BANNER ========== */
.urgence-banner {
  padding: 2.5rem 2rem;
  border-radius: 1.25rem;
  border: 1px solid rgba(239, 68, 68, 0.15);
  background: linear-gradient(135deg, rgba(239, 68, 68, 0.05) 0%, rgba(22, 22, 31, 0.8) 100%);
}

@media (min-width: 640px) {
  .urgence-banner {
    padding: 3rem;
  }
}

/* ========== INFO BLOCKS ========== */
.info-block {
  padding: 2rem;
  border-radius: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.06);
  background-color: rgba(22, 22, 31, 0.4);
}

.map-container {
  height: 250px;
}

.map-external-link {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  margin-top: 0.75rem;
  font-size: 0.8125rem;
  color: #9ca3af;
  transition: color 0.2s;
}

.map-external-link:hover {
  color: #D4AF37;
}

/* ========== HOURS TABLE ========== */
.hours-table {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.hours-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.875rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.hours-row:last-child {
  border-bottom: none;
}

/* ========== SOCIAL LINKS ========== */
.social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 0.5rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: #9ca3af;
  font-size: 0.875rem;
  transition: color 0.2s, border-color 0.2s, background-color 0.2s;
}

.social-link:hover {
  color: #D4AF37;
  border-color: rgba(212, 175, 55, 0.3);
  background-color: rgba(212, 175, 55, 0.08);
}
