/* Import des polices modernes depuis Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Outfit:wght@300;400;500;600;700;800&display=swap');

/* Variables Globales / Design System */
:root {
  /* Palette Sombre Premium (Slate / Charcoal) */
  --bg-primary: hsl(215, 24%, 10%);
  --bg-secondary: hsl(215, 20%, 14%);
  --bg-tertiary: hsl(215, 18%, 18%);

  /* Textes */
  --text-primary: hsl(210, 20%, 98%);
  --text-secondary: hsl(215, 16%, 80%);
  --text-muted: hsl(215, 12%, 58%);

  /* Accents et Couleurs Thématiques */
  --accent-gold: hsl(36, 62%, 52%);
  /* Bronze métallique / Doré chaud */
  --accent-gold-hover: hsl(36, 72%, 62%);
  --accent-gold-glow: hsla(36, 62%, 52%, 0.15);

  --accent-green: hsl(142, 45%, 44%);
  /* Vert vigne */
  --accent-green-hover: hsl(142, 55%, 52%);
  --accent-green-glow: hsla(142, 45%, 44%, 0.15);

  /* Effets de Verre (Glassmorphism) */
  --glass-bg: rgba(20, 30, 48, 0.45);
  --glass-border: rgba(255, 255, 255, 0.07);
  --glass-border-focus: rgba(255, 255, 255, 0.15);

  /* Bordures et Ombres */
  --border-color: rgba(255, 255, 255, 0.08);
  --border-glow: rgba(36, 62, 52, 0.2);
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.2);
  --shadow-md: 0 8px 20px rgba(0, 0, 0, 0.4);
  --shadow-lg: 0 16px 40px rgba(0, 0, 0, 0.6);
  --shadow-glass: 0 8px 32px 0 rgba(0, 0, 0, 0.3);

  /* Espacements */
  --spacing-xs: 0.5rem;
  --spacing-sm: 1rem;
  --spacing-md: 1.5rem;
  --spacing-lg: 2.5rem;
  --spacing-xl: 4rem;

  /* Arrondis */
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-full: 9999px;

  /* Transitions */
  --transition-fast: 0.2s ease;
  --transition-normal: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.5s ease;
}

/* Reset de base & Paramètres généraux */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'Inter', sans-serif;
  background-color: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* Typographie */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  line-height: 1.2;
  color: var(--text-primary);
  letter-spacing: -0.02em;
}

h1 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 800;
}

h2 {
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  margin-bottom: var(--spacing-sm);
  position: relative;
}

h3 {
  font-size: 1.5rem;
  font-weight: 600;
}

p {
  color: var(--text-secondary);
  font-size: 1.05rem;
}

a {
  color: var(--text-primary);
  text-decoration: none;
  transition: var(--transition-fast);
}

ul {
  list-style: none;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Conteneurs et Alignements */
.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 var(--spacing-md);
}

.section-padding {
  padding: var(--spacing-xl) 0;
}

/* Grille CSS standard et fluide */
.grid {
  display: grid;
  gap: var(--spacing-md);
}

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

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

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

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

  .grid-3 {
    grid-template-columns: repeat(2, 1fr);
  }

  .grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }
}

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

  .grid-4 {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* Boutons Modernes */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  padding: 0.8rem 1.8rem;
  border-radius: var(--radius-md);
  border: 1px solid transparent;
  cursor: pointer;
  transition: var(--transition-normal);
  font-size: 1rem;
  gap: var(--spacing-xs);
  text-align: center;
}

.btn-primary {
  background-color: var(--accent-gold);
  color: var(--bg-primary);
  box-shadow: 0 4px 15px var(--accent-gold-glow);
}

.btn-primary:hover {
  background-color: var(--accent-gold-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px var(--accent-gold-glow);
}

.btn-secondary {
  background-color: transparent;
  color: var(--text-primary);
  border: 1px solid var(--border-color);
}

.btn-secondary:hover {
  background-color: var(--bg-secondary);
  border-color: var(--text-muted);
}

.btn-green {
  background-color: var(--accent-green);
  color: var(--text-primary);
  box-shadow: 0 4px 15px var(--accent-green-glow);
}

.btn-green:hover {
  background-color: var(--accent-green-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px var(--accent-green-glow);
}

.btn-outline-gold {
  background-color: transparent;
  color: var(--accent-gold);
  border: 1px solid var(--accent-gold);
}

.btn-outline-gold:hover {
  background-color: var(--accent-gold);
  color: var(--bg-primary);
}

/* Cartes Glassmorphism */
.glass-card {
  background: rgba(15, 23, 42, 0.65);
  /* Fond plus sombre pour contraster sur l'image */
  backdrop-filter: blur(20px);
  /* Flou plus prononcé (fond trouble) */
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  padding: var(--spacing-md);
  box-shadow: var(--shadow-glass);
  transition: var(--transition-normal);
}

.glass-card:hover {
  border-color: var(--accent-gold);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5), 0 0 15px var(--accent-gold-glow);
  transform: translateY(-4px);
}

/* Badge / Tags */
.badge {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  padding: 0.25rem 0.75rem;
  border-radius: var(--radius-full);
  background-color: var(--bg-tertiary);
  border: 1px solid var(--border-color);
  color: var(--text-secondary);
}

.badge-gold {
  border-color: var(--accent-gold);
  color: var(--accent-gold);
  background-color: var(--accent-gold-glow);
}

.badge-green {
  border-color: var(--accent-green);
  color: var(--accent-green);
  background-color: var(--accent-green-glow);
}

/* Header & Navigation */
header {
  background-color: rgba(10, 17, 28, 0.85);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--glass-border);
  position: sticky;
  top: 0;
  z-index: 100;
  transition: var(--transition-normal);
}

header.scrolled {
  background-color: var(--bg-primary);
  box-shadow: var(--shadow-md);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
}

.logo {
  display: flex;
  align-items: center;
  gap: var(--spacing-xs);
  font-family: 'Outfit', sans-serif;
  font-weight: 800;
  font-size: 1.6rem;
  letter-spacing: -0.02em;
}

.logo span {
  color: var(--accent-gold);
}

nav ul {
  display: flex;
  align-items: center;
  gap: var(--spacing-md);
}

nav a {
  font-family: 'Outfit', sans-serif;
  font-weight: 500;
  color: var(--text-secondary);
  font-size: 1rem;
  position: relative;
  padding: 0.5rem 0;
}

nav a:hover,
nav a.active {
  color: var(--text-primary);
}

nav a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--accent-gold);
  transition: var(--transition-normal);
}

nav a:hover::after,
nav a.active::after {
  width: 100%;
}

.nav-buttons {
  display: flex;
  align-items: center;
  gap: var(--spacing-sm);
}

/* Mobile Navigation Hamburger */
.menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  width: 30px;
  height: 24px;
  position: relative;
  z-index: 110;
}

.menu-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  background-color: var(--text-primary);
  margin-bottom: 6px;
  transition: var(--transition-normal);
}

.menu-toggle span:last-child {
  margin-bottom: 0;
}

.menu-toggle.open span:first-child {
  transform: rotate(45deg) translate(6px, 6px);
}

.menu-toggle.open span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.open span:last-child {
  transform: rotate(-45deg) translate(5px, -5px);
}

@media (max-width: 991px) {
  .menu-toggle {
    display: block;
  }

  nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 300px;
    height: 100vh;
    background-color: var(--bg-secondary);
    box-shadow: var(--shadow-lg);
    z-index: 105;
    padding: var(--spacing-xl) var(--spacing-md);
    transition: var(--transition-normal);
  }

  nav.open {
    right: 0;
  }

  nav ul {
    flex-direction: column;
    align-items: flex-start;
    gap: var(--spacing-md);
  }

  nav a {
    font-size: 1.2rem;
  }

  .nav-buttons {
    display: none;
    /* cache pour la version mobile simplifiée, ou inséré dans le menu */
  }
}

/* Hero Section */
.hero {
  position: relative;
  overflow: hidden;
  padding: var(--spacing-xl) 0;
  display: flex;
  align-items: center;
  min-height: calc(85vh - 80px);
  background: linear-gradient(to right, rgba(10, 17, 28, 0.75) 25%, rgba(10, 17, 28, 0.25) 70%, rgba(10, 17, 28, 0.65) 100%),
    url('../img/vineyard_hero.png') no-repeat center center/cover;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 30% 30%, hsla(36, 62%, 52%, 0.12) 0%, transparent 50%);
  z-index: 1;
  pointer-events: none;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr;
  align-items: center;
  gap: var(--spacing-lg);
  position: relative;
  z-index: 5;
}

@media (min-width: 992px) {
  .hero-inner {
    grid-template-columns: 1.2fr 0.8fr;
  }
}

.hero-text h1 span {
  background: linear-gradient(135deg, var(--accent-gold), var(--accent-green));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: block;
}

.hero-text p {
  margin: var(--spacing-md) 0 var(--spacing-lg);
  font-size: 1.2rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--spacing-sm);
}

.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
}

.hero-image-wrapper {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--accent-gold);
  box-shadow: var(--shadow-lg);
}

.hero-image-wrapper::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, transparent 60%, var(--bg-primary));
}

/* Section titres stylisés */
.section-title-wrapper {
  margin-bottom: var(--spacing-lg);
  text-align: center;
}

.section-title-wrapper h2::after {
  content: '';
  display: block;
  width: 60px;
  height: 3px;
  background-color: var(--accent-gold);
  margin: var(--spacing-xs) auto 0;
  border-radius: var(--radius-full);
}

.section-title-wrapper p {
  max-width: 600px;
  margin: var(--spacing-xs) auto 0;
}

/* Section Solutions Phares */
#featured-solutions {
  position: relative;
  background: linear-gradient(180deg, rgba(10, 17, 28, 0.65) 0%, rgba(10, 17, 28, 0.3) 50%, rgba(10, 17, 28, 0.65) 100%),
    url('../img/vineyard_hero.png') no-repeat center center/cover;
  background-attachment: fixed;
  /* Parallax effect */
}

.product-featured-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: 2.2rem 2rem 2rem 2rem !important;
  border-radius: var(--radius-lg);
  background: rgba(12, 19, 32, 0.5);
  backdrop-filter: blur(25px);
  -webkit-backdrop-filter: blur(25px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: var(--transition-normal);
  text-align: left;
  align-items: flex-start;
  box-shadow: var(--shadow-glass);
}

.product-featured-card:hover {
  border-color: rgba(224, 169, 78, 0.45);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.6), 0 0 25px rgba(224, 169, 78, 0.12);
  transform: translateY(-5px);
}

.product-featured-visual {
  width: 100%;
  height: 200px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 2rem;
  border-radius: var(--radius-md);
  position: relative;
  overflow: hidden;
}

.visual-gold {
  background: radial-gradient(circle at center, rgba(142, 115, 60, 0.22) 0%, rgba(142, 115, 60, 0) 70%);
}

.visual-green {
  background: radial-gradient(circle at center, rgba(46, 117, 89, 0.22) 0%, rgba(46, 117, 89, 0) 70%);
}

.product-featured-img {
  max-width: 90%;
  max-height: 90%;
  object-fit: contain;
  filter: drop-shadow(0 12px 24px rgba(0, 0, 0, 0.6));
  transition: transform var(--transition-slow);
}

.product-featured-card:hover .product-featured-img {
  transform: scale(1.06) translateY(-4px);
}

.product-featured-desc {
  padding: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  width: 100%;
  flex-grow: 1;
}

.product-featured-desc h3 {
  font-size: 1.35rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--text-primary);
  margin: 0;
  font-family: 'Outfit', sans-serif;
}

.product-featured-subtitle {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--accent-gold);
  letter-spacing: 0.02em;
  margin-top: -4px;
}

.product-featured-desc p {
  font-size: 0.92rem;
  color: var(--text-secondary);
  margin: 0.2rem 0;
  line-height: 1.5;
  flex-grow: 1;
}

.product-featured-specs {
  font-size: 0.82rem;
  color: var(--text-muted);
  font-weight: 500;
  letter-spacing: 0.01em;
  margin-bottom: 0.5rem;
}

.btn-featured {
  background-color: var(--accent-gold);
  color: var(--bg-primary);
  border: 1px solid transparent;
  padding: 0.65rem 1.5rem;
  font-size: 0.88rem;
  border-radius: var(--radius-md);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  transition: var(--transition-normal);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: auto;
}

.btn-featured:hover {
  background-color: var(--accent-gold-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(224, 169, 78, 0.35);
}

/* Besoins / Catégories en grille */
#needs-section {
  position: relative;
  background-color: var(--bg-primary);
  /* Fond plat pour alternance */
}

.needs-grid {
  grid-template-columns: 1fr;
  position: relative;
  z-index: 2;
}

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

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

.need-card {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.need-card h3 {
  margin-bottom: var(--spacing-xs);
  display: flex;
  align-items: center;
  gap: var(--spacing-xs);
}

.need-card h3 i {
  color: var(--accent-gold);
}

.need-card p {
  flex-grow: 1;
  margin-bottom: var(--spacing-md);
  font-size: 0.95rem;
}

.need-card .card-link {
  color: var(--accent-gold);
  font-weight: 600;
  font-family: 'Outfit', sans-serif;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.need-card .card-link:hover {
  color: var(--accent-gold-hover);
}

.need-card .card-link:hover i {
  transform: translateX(4px);
}

.need-card .card-link i {
  transition: var(--transition-fast);
}

/* Fiche Produit dans le catalogue */
.product-card {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  height: 100%;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  transition: var(--transition-normal);
}

.product-card-image {
  height: 220px;
  background-color: rgba(0, 0, 0, 0.2);
  position: relative;
  overflow: hidden;
}

.product-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-slow);
}

.product-card:hover .product-card-image img {
  transform: scale(1.06);
}

.product-card-badge {
  position: absolute;
  top: var(--spacing-sm);
  left: var(--spacing-sm);
  z-index: 10;
}

.product-card-content {
  padding: var(--spacing-md);
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.product-card-content h3 {
  margin-bottom: var(--spacing-xs);
}

.product-card-content p {
  font-size: 0.95rem;
  margin-bottom: var(--spacing-md);
  flex-grow: 1;
}

.product-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid var(--border-color);
  padding-top: var(--spacing-sm);
  margin-top: auto;
}

.product-spec-preview {
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* Configurateur Interactif */
.configurator-wrapper {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--spacing-lg);
  margin-top: var(--spacing-lg);
}

@media (min-width: 992px) {
  .configurator-wrapper {
    grid-template-columns: 1.1fr 0.9fr;
  }
}

.configurator-visual {
  background-color: rgba(10, 18, 30, 0.5);
  border-radius: var(--radius-lg);
  border: 1px solid var(--glass-border);
  padding: var(--spacing-md);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: relative;
  min-height: 400px;
}

.configurator-visual-canvas {
  width: 100%;
  height: 320px;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.configurator-visual-canvas img {
  max-height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.5));
  transition: var(--transition-normal);
}

.configurator-specs-panel {
  width: 100%;
  border-top: 1px solid var(--border-color);
  padding-top: var(--spacing-sm);
  margin-top: var(--spacing-sm);
}

.spec-row {
  display: flex;
  justify-content: space-between;
  margin-bottom: 6px;
  font-size: 0.9rem;
}

.spec-label {
  color: var(--text-muted);
}

.spec-value {
  font-weight: 600;
  color: var(--accent-gold);
}

.configurator-options {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-md);
}

.configurator-section-title {
  font-size: 1.1rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--accent-gold);
  margin-bottom: var(--spacing-xs);
  border-bottom: 1px solid var(--border-color);
  padding-bottom: 4px;
}

.option-group {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-xs);
}

.option-cards {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(130px, 1fr));
  gap: var(--spacing-xs);
}

.option-card {
  background: var(--bg-secondary);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: var(--spacing-sm) var(--spacing-xs);
  text-align: center;
  cursor: pointer;
  transition: var(--transition-fast);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 4px;
}

.option-card:hover {
  border-color: var(--text-muted);
}

.option-card.selected {
  border-color: var(--accent-gold);
  background: var(--accent-gold-glow);
  box-shadow: 0 0 10px var(--accent-gold-glow);
}

.option-card-title {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-primary);
}

.option-card-desc {
  font-size: 0.75rem;
  color: var(--text-muted);
}

/* Formulaire Devis */
.quote-form-panel {
  margin-top: var(--spacing-xl);
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  padding: var(--spacing-lg);
}

.quote-summary-box {
  background-color: rgba(0, 0, 0, 0.2);
  border-radius: var(--radius-md);
  padding: var(--spacing-sm);
  margin-bottom: var(--spacing-md);
  border-left: 4px solid var(--accent-gold);
}

.quote-summary-title {
  font-weight: 600;
  font-size: 0.9rem;
  text-transform: uppercase;
  margin-bottom: 4px;
  color: var(--text-primary);
}

.quote-summary-text {
  font-size: 0.85rem;
  color: var(--text-secondary);
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--spacing-sm);
}

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

  .form-full {
    grid-column: span 2;
  }
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-group label {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-secondary);
}

.form-control {
  background: var(--bg-tertiary);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 0.75rem 1rem;
  color: var(--text-primary);
  font-family: inherit;
  font-size: 0.95rem;
  transition: var(--transition-fast);
}

.form-control:focus {
  outline: none;
  border-color: var(--accent-gold);
  box-shadow: 0 0 0 3px var(--accent-gold-glow);
}

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

/* Footer Section */
footer {
  background-color: rgba(8, 12, 20, 0.95);
  border-top: 1px solid var(--glass-border);
  padding: var(--spacing-xl) 0 var(--spacing-sm);
  margin-top: var(--spacing-xl);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--spacing-lg);
}

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

@media (min-width: 1024px) {
  .footer-grid {
    grid-template-columns: 2fr 1fr 1.2fr;
  }
}

.footer-brand p {
  margin-top: var(--spacing-sm);
  font-size: 0.95rem;
}

.footer-links h4,
.footer-contact h4 {
  font-size: 1.2rem;
  margin-bottom: var(--spacing-sm);
  position: relative;
  padding-bottom: 6px;
}

.footer-links h4::after,
.footer-contact h4::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 2px;
  background-color: var(--accent-gold);
}

.footer-links ul {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-links a {
  color: var(--text-secondary);
}

.footer-links a:hover {
  color: var(--accent-gold);
  padding-left: 4px;
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: var(--spacing-xs);
  margin-bottom: var(--spacing-sm);
  font-size: 0.95rem;
  color: var(--text-secondary);
}

.footer-contact-item i {
  color: var(--accent-gold);
  margin-top: 4px;
}

.footer-bottom {
  text-align: center;
  margin-top: var(--spacing-lg);
  padding-top: var(--spacing-sm);
  border-top: 1px solid var(--border-color);
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* Animations d'apparition de contenu (Scroll Effects) */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}