/* ═══════════════════════════════════════════════════════
   CURIOSPHERE — Design System & Styles
   ═══════════════════════════════════════════════════════ */

/* ── Custom Properties ── */
:root {
  /* Accent colors for modal */
  --accent-gradient: linear-gradient(135deg, var(--gold), var(--gold-dark));
  --bg-card: rgba(15, 31, 58, 0.9);
  --border-color: rgba(201, 168, 76, 0.12);
  --glass-blur: blur(20px);
  /* Colors */
  --navy-900: #0a1628;
  --navy-800: #0f1f3a;
  --navy-700: #162a4a;
  --navy-600: #1e3a5f;
  --gold: #c9a84c;
  --gold-light: #dfc06a;
  --gold-dark: #a88a3a;
  --ivory: #f5f0e8;
  --ivory-muted: #e8e2d8;
  --sage: #7a8f7e;
  --sage-light: #9ab09e;
  --text-primary: #f5f0e8;
  --text-secondary: rgba(245, 240, 232, 0.65);
  --text-tertiary: rgba(245, 240, 232, 0.4);
  --glass-bg: rgba(15, 31, 58, 0.6);
  --glass-border: rgba(201, 168, 76, 0.12);
  --glass-shadow: rgba(0, 0, 0, 0.3);

  /* Typography */
  --font-heading: 'Outfit', sans-serif;
  --font-body: 'Inter', sans-serif;
  --fs-display: clamp(2.8rem, 6vw, 5.5rem);
  --fs-h2: clamp(2rem, 4vw, 3.2rem);
  --fs-h3: clamp(1.2rem, 2vw, 1.5rem);
  --fs-body: clamp(0.95rem, 1.2vw, 1.1rem);
  --fs-small: clamp(0.8rem, 1vw, 0.9rem);
  --fs-eyebrow: clamp(0.7rem, 0.9vw, 0.82rem);

  /* Spacing */
  --section-padding: clamp(80px, 12vh, 140px);
  --container-max: 1240px;
  --gap: clamp(1.5rem, 3vw, 2.5rem);

  /* Animation */
  --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-out-quint: cubic-bezier(0.22, 1, 0.36, 1);
  --duration-normal: 0.6s;
  --duration-slow: 1s;
}

/* ── Reset & Base ── */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-body);
  font-size: var(--fs-body);
  font-weight: 300;
  color: var(--text-primary);
  background-color: var(--navy-900);
  line-height: 1.7;
  overflow-x: hidden;
  
}

a {
  color: inherit;
  text-decoration: none;
}

img { max-width: 100%; display: block; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font: inherit; color: inherit; }
input, select, textarea { font: inherit; color: inherit; }

/* ── Accessibility ── */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: absolute;
  top: -100%;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gold);
  color: var(--navy-900);
  padding: 12px 24px;
  border-radius: 0 0 8px 8px;
  font-weight: 600;
  z-index: 10000;
  transition: top 0.3s ease;
}

.skip-link:focus {
  top: 0;
}

/* Focus styles */
*:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 2px;
}

button:focus-visible,
a:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 2px;
}

/* Required field indicator */
.required {
  color: #ef4444;
}

/* Form error styles */
.form-error {
  display: block;
  font-size: 0.8rem;
  color: #ef4444;
  margin-top: 4px;
  min-height: 1.2rem;
}

.form-group input.error,
.form-group select.error,
.form-group textarea.error {
  border-color: #ef4444;
}

.form-group input.error:focus,
.form-group select.error:focus,
.form-group textarea.error:focus {
  box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.15);
}

.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 clamp(1.5rem, 4vw, 3rem);
}

.section {
  padding: var(--section-padding) 0;
  position: relative;
}

/* ── Typography ── */
.section-eyebrow {
  font-family: var(--font-body);
  font-size: var(--fs-eyebrow);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--gold);
  margin-bottom: 1rem;
}

.section-title {
  font-family: var(--font-heading);
  font-size: var(--fs-h2);
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 1.5rem;
  color: var(--text-primary);
}

.section-subtitle {
  font-size: var(--fs-body);
  color: var(--text-primary);
  max-width: 600px;
  margin-bottom: 3rem;
  line-height: 1.8;
}

.text-gradient {
  background: linear-gradient(135deg, blue, violet, var(--sage-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-grid {
  display: grid;
  gap: var(--gap);
  align-items: center;
}

/* ── Glass Card ── */
.glass-card {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 16px;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 8px 32px var(--glass-shadow);
  transition: border-color 0.4s ease, box-shadow 0.4s ease, transform 0.4s var(--ease-out-expo);
}

.glass-card:hover {
  border-color: rgba(138,43,226);
  box-shadow: 0 12px 48px rgba(201, 168, 76, 0.08), 0 8px 32px var(--glass-shadow);
}

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 32px;
  border-radius: 60px;
  font-family: var(--font-body);
  font-size: var(--fs-small);
  font-weight: 500;
  letter-spacing: 0.04em;
  transition: all 0.4s var(--ease-out-expo);
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--navy-900);
  box-shadow: 0 4px 24px rgba(201, 168, 76, 0.25);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(201, 168, 76, 0.4);
}

.btn-primary:active {
  transform: translateY(0);
}

.btn-outline {
  border: 1px solid rgba(201, 168, 76, 0.4);
  color: var(--gold);
}

.btn-outline:hover {
  background: rgba(201, 168, 76, 0.1);
  border-color: var(--gold);
  transform: translateY(-2px);
}

.btn-full {
  width: 100%;
}

/* ══════════════════════════════════════════════════════
   NAVIGATION
   ══════════════════════════════════════════════════════ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 20px 0;
  transition: all 0.4s ease;
}

.navbar.scrolled {
  background: rgba(10, 22, 40, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 14px 0;
  border-bottom: 1px solid rgba(201, 168, 76, 0.08);
}

/* ── EYEBROW STRIP ── */
.eyebrow-strip {
  position: fixed;
  top: 90px;
  left: 0;
  right: 0;
  z-index: 999;
  background: rgba(10, 22, 40, 0.90);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(201, 168, 76, 0.2);
  text-align: center;
  padding: 7px 0;
  font-family: 'Space Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--gold);
  transition: top 0.4s ease;
}

.nav-container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 clamp(1.5rem, 4vw, 3rem);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

/* Logo SVG Styles */
.logo-svg {
  width: 50px;
  height: 50px;
  overflow: visible;
}

.logo-ring {
  fill: none;
  stroke-width: 2;
  stroke-dasharray: 6 4;
  transform-origin: 90px 90px;
  animation: logo-spin 8s linear infinite;
}

.logo-sphere {
  filter: drop-shadow(0 0 10px rgba(0,245,212,0.4));
  animation: logo-pulse 3s ease-in-out infinite alternate;
}

.logo-dot {
  fill: #00f5d4;
  transform-origin: 90px 90px;
  animation: logo-spin 6s linear infinite;
}

@keyframes logo-spin {
  to { transform: rotate(360deg); }
}

@keyframes logo-pulse {
  from { opacity: 0.8; transform: scale(1); }
  to { opacity: 1; transform: scale(1.05); }
}

.logo-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.logo-name {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 12px;
  color: #ffffff;
  letter-spacing: -0.5px;
  line-height: 1.1;
}

.logo-accent {
  font-weight: 400;
  color: #00f5d4;
}

.logo-tagline {
  font-family: 'Space Mono', monospace;
  font-size: 8px;
  letter-spacing: 2px;
  color: rgba(255,255,255,0.5);
  text-transform: uppercase;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: clamp(1.5rem, 3vw, 2.5rem);
  flex-wrap: wrap; /* Évite la casse sur mobile */
}

/* Si Why et Djibouti sont deux éléments distincts */
.why-group {
  display: flex;
  gap: 0.25rem; /* Petit espace entre Why et Djibouti */
}

.nav-links a {
    font-size: var(--fs-small);
    font-weight: 400;
    color: var(--text-secondary);
    transition: all 0.3s ease;
    position: relative;
    padding: 8px 16px;
    border-radius: 30px;
}

.nav-links a::after {
    content: "";
    position: absolute;
    bottom: 0px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: var(--gold);
    transition: width 0.3s var(--ease-out-expo);
}

.nav-links a:hover {
    color: var(--gold);
    background: rgba(201, 168, 76, 0.1);
    text-shadow: 0 0 8px rgba(201, 168, 76, 0.5);
}

.nav-links a:hover::after {
    width: 70%;
}

.nav-cta {
    padding: 10px 24px !important;
    border: 1px solid rgb(201, 168, 76, 0.4) !important;
    border-radius: 60px !important;
    color: var(--gold) !important;
}

.nav-cta:hover {
    background: rgb(201, 168, 76, 0.1) !important;
    border-color: var(--gold) !important;
}

.nav-cta::after { display: none !important; }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text-primary);
  transition: all 0.3s ease;
  border-radius: 2px;
}

/* ══════════════════���═══════════════════════════════════
   HERO
   ══════════════════════════════════════════════════════ */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  padding-top: 120px; /* navbar(~90px) + eyebrow strip(~30px) */
}

#hero-canvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 30% 50%, transparent 0%, var(--navy-900) 70%),
              linear-gradient(180deg, transparent 60%, var(--navy-900) 100%);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 860px;
  padding: 0 clamp(1.5rem, 4vw, 3rem);
}

.hero-eyebrow {
  font-size: var(--fs-eyebrow);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.35em;
  color: var(--gold);
  margin-bottom: 1.5rem;
  display: none;
}

.hero-title {
  font-family: var(--font-heading);
  font-size: var(--fs-display);
  font-weight: 800;
  line-height: 1.05;
  margin-bottom: 1.5rem;
  letter-spacing: -0.02em;
}

.hero-subtitle {
  font-size: clamp(1rem, 1.3vw, 1.15rem);
  color: var(--text-secondary);
  max-width: 640px;
  margin: 0 auto 2.5rem;
  line-height: 1.8;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 4rem;
}

.hero-stats {
  display: flex;
  justify-content: center;
  gap: clamp(2rem, 5vw, 4rem);
  padding-top: 3rem;
  border-top: 1px solid rgba(245, 240, 232, 0.08);
}

.stat {
  text-align: center;
}

.stat-number {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-weight: 700;
  color: var(--gold);
  display: inline;
}

.stat-suffix {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-weight: 700;
  color: var(--gold);
}

.stat-label {
  display: block;
  font-size: var(--fs-small);
  color: var(--text-tertiary);
  margin-top: 0.25rem;
}

/* Scroll indicator */
.scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  opacity: 0.5;
  animation: scrollFade 2s ease-in-out infinite;
}

.scroll-indicator span {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--text-tertiary);
}

.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scrollLine 2s ease-in-out infinite;
}

@keyframes scrollFade {
  0%, 100% { opacity: 0.3; }
  50% { opacity: 0.7; }
}

@keyframes scrollLine {
  0% { transform: scaleY(0); transform-origin: top; }
  50% { transform: scaleY(1); transform-origin: top; }
  51% { transform: scaleY(1); transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

/* ══════════════════════════════════════════════════════
   ABOUT
   ══════════════════════════════════════════════════════ */
.about {
  background: linear-gradient(180deg, var(--navy-900) 0%, var(--navy-800) 100%);
}

.about-grid {
  grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(3rem, 6vw, 6rem);
}

.about-description {
  color: var(--text-secondary);
  margin-bottom: 1.5rem;
  line-height: 1.85;
}

.about-values {
  margin-top: 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.value-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.value-icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 1.2rem;
  background: rgba(201, 168, 76, 0.08);
  border-radius: 10px;
  border: 1px solid rgba(201, 168, 76, 0.15);
}

.value-item h4 {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0.25rem;
}

.value-item p {
  font-size: var(--fs-small);
  color: var(--text-secondary);
  line-height: 1.6;
}

/* About visual */
.about-visual {
  position: relative;
  min-height: 400px;
}

.about-image-container {
  position: relative;
  width: 100%;
  height: 100%;
}

.about-pattern {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 1px 1px, rgba(201, 168, 76, 0.12) 1px, transparent 0);
  background-size: 24px 24px;
  border-radius: 16px;
  animation: patternPulse 8s ease-in-out infinite alternate;
}

@keyframes patternPulse {
  0% { opacity: 0.5; }
  100% { opacity: 1; }
}

.about-card {
  position: absolute;
  padding: 2rem;
  text-align: center;
  min-width: 200px;
}

.about-card:first-of-type {
  top: 15%;
  left: 10%;
}

.about-card.card-offset {
  bottom: 15%;
  right: 5%;
}

.about-card-icon {
  font-size: 2rem;
  margin-bottom: 0.5rem;
}

.about-card-stat {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--gold);
}

.about-card-label {
  font-size: var(--fs-small);
  color: var(--text-secondary);
  margin-top: 0.25rem;
}

/* ══════════════════════════════════════════════════════
   SERVICES
   ══════════════════════════════════════════════════════ */
.services {
  background: var(--navy-800);
  overflow: hidden;
}

.services::before {
  content: '';
  position: absolute;
  top: -200px;
  right: -200px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(201, 168, 76, 0.04) 0%, transparent 70%);
  pointer-events: none;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--gap);
  margin-top: 1rem;
}

.service-card {
  padding: clamp(2rem, 3vw, 2.5rem);
  position: relative;
  overflow: hidden;
}

.service-card:hover {
  transform: translateY(-4px);
}

.service-number {
  font-family: var(--font-heading);
  font-size: 3.5rem;
  font-weight: 800;
  color: rgba(201, 168, 76, 0.06);
  position: absolute;
  top: 1rem;
  right: 1.5rem;
  line-height: 1;
}

.service-icon-wrap {
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  margin-bottom: 1.25rem;
  background: rgba(201, 168, 76, 0.06);
  border-radius: 12px;
  border: 1px solid rgba(201, 168, 76, 0.12);
}

.service-icon {
  width: 28px;
  height: 28px;
}

.service-card h3 {
  font-family: var(--font-heading);
  font-size: var(--fs-h3);
  font-weight: 600;
  margin-bottom: 0.75rem;
}

.service-card p {
  color: var(--text-secondary);
  font-size: var(--fs-small);
  line-height: 1.75;
  margin-bottom: 1.25rem;
}

.service-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.service-tags li {
  font-size: 0.72rem;
  padding: 4px 12px;
  border-radius: 20px;
  background: rgba(201, 168, 76, 0.08);
  border: 1px solid rgba(201, 168, 76, 0.15);
  color: var(--gold);
  font-weight: 500;
  letter-spacing: 0.02em;
}

/* ══════════════════════════════════════════════════════
   WHY DJIBOUTI
   ═════════════════════════════════════════════════════��� */
.djibouti {
  background: linear-gradient(180deg, var(--navy-800) 0%, var(--navy-900) 100%);
}

.djibouti-grid {
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(3rem, 6vw, 5rem);
}

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

.globe-svg {
  width: 100%;
  height: auto;
  filter: drop-shadow(0 0 40px rgba(201, 168, 76, 0.08));
}

.djibouti-description {
  color: var(--text-secondary);
  margin-bottom: 1.25rem;
  line-height: 1.85;
}

.djibouti-stats {
  margin-top: 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.djibouti-stat {
  display: flex;
  align-items: baseline;
  gap: 1rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid rgba(245, 240, 232, 0.06);
}

.djibouti-stat:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.djibouti-stat-number {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-weight: 700;
  color: var(--gold);
  flex-shrink: 0;
  min-width: 80px;
}

.djibouti-stat-label {
  font-size: var(--fs-small);
  color: var(--text-secondary);
  line-height: 1.6;
}

/* ══════════════════════════════════════════════════════
   INSIGHTS
   ══════════════════════════════════════════════════════ */
.insights {
  background: var(--navy-900);
}

.insights-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--gap);
}

.insight-card {
  padding: clamp(1.5rem, 2.5vw, 2rem);
  display: flex;
  flex-direction: column;
  transition: transform 0.4s var(--ease-out-expo), border-color 0.4s ease, box-shadow 0.4s ease;
}

.insight-card:hover {
  transform: translateY(-6px);
}

.insight-category {
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--gold);
  margin-bottom: 1rem;
  padding: 4px 10px;
  background: rgba(201, 168, 76, 0.1);
  border-radius: 4px;
  width: fit-content;
}

.insight-card h3 {
  font-family: var(--font-heading);
  font-size: clamp(1.05rem, 1.5vw, 1.2rem);
  font-weight: 600;
  line-height: 1.35;
  margin-bottom: 0.75rem;
}

.insight-card > p {
  font-size: var(--fs-small);
  color: var(--text-secondary);
  line-height: 1.7;
  flex-grow: 1;
  margin-bottom: 1.25rem;
}

.insight-meta {
  display: flex;
  gap: 1rem;
  font-size: 0.75rem;
  color: var(--text-tertiary);
  margin-bottom: 1rem;
}

.insight-link {
  font-size: var(--fs-small);
  font-weight: 500;
  color: var(--gold);
  transition: letter-spacing 0.3s ease;
}

.insight-link:hover {
  letter-spacing: 0.05em;
}

/* ══════════════════════════════════════════════════════
   TEAM
   ══════════════════════════════════════════════════════ */
.team {
  background: linear-gradient(180deg, var(--navy-900) 0%, var(--navy-800) 100%);
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--gap);
}

.team-card {
  text-align: center;
  padding: 2.5rem 2rem;
  border-radius: 16px;
  background: rgba(15, 31, 58, 0.3);
  border: 1px solid rgba(245, 240, 232, 0.04);
  transition: all 0.4s var(--ease-out-expo);
}

.team-card:hover {
  border-color: rgba(201, 168, 76, 0.15);
  background: rgba(15, 31, 58, 0.5);
  transform: translateY(-4px);
}

.team-avatar {
  margin-bottom: 1.5rem;
}

.avatar-placeholder {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--navy-900);
  background: linear-gradient(
    135deg,
    hsl(var(--hue, 35), 45%, 55%),
    hsl(calc(var(--hue, 35) + 30), 50%, 65%)
  );
  box-shadow: 0 4px 20px hsla(var(--hue, 35), 45%, 55%, 0.3);
}

.team-card h3 {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 600;
  margin-bottom: 0.25rem;
}

.team-role {
  font-size: var(--fs-small);
  color: var(--gold);
  font-weight: 500;
  margin-bottom: 1rem;
}

.team-bio {
  font-size: var(--fs-small);
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 1.25rem;
}

.team-socials {
  display: flex;
  justify-content: center;
  gap: 0.75rem;
}

.team-socials a {
  width: 34px;
  height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 1px solid rgba(245, 240, 232, 0.1);
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--text-secondary);
  transition: all 0.3s ease;
}

.team-socials a:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(201, 168, 76, 0.1);
}

/* ══════════════════════════════════════════════════════
   CONTACT
   ══════════════════════════════════════════════════════ */
.contact {
  background: var(--navy-800);
}

.contact-grid {
  grid-template-columns: 1fr 1fr;
  gap: clamp(3rem, 6vw, 5rem);
}

.contact-description {
  color: var(--text-secondary);
  margin-bottom: 2.5rem;
  line-height: 1.8;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.contact-detail {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.contact-detail-icon {
  font-size: 1.2rem;
  flex-shrink: 0;
  margin-top: 2px;
}

.contact-detail-label {
  font-weight: 500;
  font-size: var(--fs-small);
  color: var(--gold);
  margin-bottom: 0.15rem;
}

.contact-detail p:not(.contact-detail-label) {
  font-size: var(--fs-small);
  color: var(--text-secondary);
  line-height: 1.6;
}

/* Contact form */
.contact-form {
  padding: clamp(2rem, 3vw, 2.5rem);
}

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

.form-group label {
  display: block;
  font-size: var(--fs-small);
  font-weight: 500;
  margin-bottom: 0.4rem;
  color: var(--text-secondary);
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  background: rgba(10, 22, 40, 0.6);
  border: 1px solid rgba(245, 240, 232, 0.08);
  border-radius: 10px;
  color: var(--text-primary);
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
  outline: none;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--text-tertiary);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: rgba(201, 168, 76, 0.4);
  box-shadow: 0 0 0 3px rgba(201, 168, 76, 0.08);
}

.form-group select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='%23c9a84c' viewBox='0 0 16 16'%3E%3Cpath d='M8 11L3 6h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
}

.form-group select option {
  background: var(--navy-800);
  color: var(--text-primary);
}

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

/* ══════════════════════════════════════════════════════
   FOOTER
   ══════════════════════════════════════════════════════ */
.footer {
  background: var(--navy-900);
  padding: clamp(3rem, 6vh, 5rem) 0 2rem;
  border-top: 1px solid rgba(245, 240, 232, 0.04);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr repeat(3, 1fr);
  gap: clamp(2rem, 4vw, 3rem);
  margin-bottom: 3rem;
}

.footer-tagline {
  font-size: var(--fs-small);
  color: var(--text-tertiary);
  margin-top: 1rem;
  max-width: 260px;
  line-height: 1.7;
}

.footer-links h4 {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--text-primary);
}

.footer-links ul {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.footer-links a {
  font-size: 0.95rem;;
  color: var(--text-tertiary);
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: var(--gold);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(245, 240, 232, 0.04);
}

.footer-bottom p {
  font-size: 0.78rem;
  color: var(--text-tertiary);
}

.footer-bottom-links {
  display: flex;
  gap: 1.5rem;
}

.footer-bottom-links a {
  font-size: 0.78rem;
  color: var(--text-tertiary);
  transition: color 0.3s ease;
}

.footer-bottom-links a:hover {
  color: var(--gold);
}

/* ══════════════════════════════════════════════════════
   SCROLL REVEAL ANIMATIONS
   ══════════════════════════════════════════════════════ */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity var(--duration-slow) var(--ease-out-expo),
              transform var(--duration-slow) var(--ease-out-expo);
}

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

/* Stagger children */
.reveal:nth-child(2) { transition-delay: 0.08s; }
.reveal:nth-child(3) { transition-delay: 0.16s; }
.reveal:nth-child(4) { transition-delay: 0.24s; }
.reveal:nth-child(5) { transition-delay: 0.32s; }

/* ══════════════════════════════════════════════════════
   RESPONSIVE
   ══════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .services-grid {
    grid-template-columns: 1fr 1fr;
  }

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

  .insights-grid .insight-card:last-child {
    grid-column: 1 / -1;
    max-width: 50%;
  }

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

@media (max-width: 768px) {
  .nav-toggle {
    display: flex;
    z-index: 1001;
  }

  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: var(--navy-800);
    flex-direction: column;
    justify-content: center;
    padding: 2rem;
    transition: right 0.4s var(--ease-out-expo);
    border-left: 1px solid rgba(201, 168, 76, 0.1);
  }

  .nav-links.active {
    right: 0;
  }

  .nav-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }

  .nav-toggle.active span:nth-child(2) {
    opacity: 0;
  }

  .nav-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
  }

  .about-grid,
  .djibouti-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .djibouti-visual {
    order: -1;
  }

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

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

  .insights-grid .insight-card:last-child {
    max-width: 100%;
  }

  .team-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin: 0 auto;
  }

  .hero-stats {
    flex-direction: column;
    gap: 1.5rem;
  }

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

  .footer-bottom {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }

  .about-visual {
    min-height: 300px;
  }
}

@media (max-width: 480px) {
  .hero-actions {
    flex-direction: column;
    align-items: center;
  }

  .btn {
    width: 100%;
    max-width: 300px;
  }
}
/*-------------------------------------------*/
  /* Styles existants à conserver */
  .insight-card {
    transition: all 0.3s ease;
    cursor: pointer;
  }
  
  .insight-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.15);
  }
  
  .read-more-btn {
    background: none;
    border: none;
    cursor: pointer;
    font-size: 1rem;
    margin-top: 15px;
    padding: 0;
    text-align: left;
    width: 100%;
    color: #0066cc;
    font-weight: 500;
    transition: all 0.3s ease;
  }
  
  .read-more-btn:hover {
    transform: translateX(5px);
    color: #004999;
  }
  
  /* Styles du Modal */
  .article-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1000;
    opacity: 0;
    transition: opacity 0.3s ease;
  }
  
  .article-modal.active {
    display: block;
    opacity: 1;
  }
  
  .modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(8px);
    animation: fadeIn 0.4s ease;
  }
  
  .modal-container {
    position: relative;
    width: 90%;
    max-width: 800px;
    max-height: 85vh;
    margin: 5vh auto;
    background: white;
    border-radius: 24px;
    box-shadow: 0 30px 60px rgba(0,0,0,0.3);
    overflow: hidden;
    animation: slideUp 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    transform-origin: center;
  }
  
  .modal-content {
    padding: 40px;
    overflow-y: auto;
    max-height: 85vh;
    scrollbar-width: thin;
    scrollbar-color: #0066cc #f0f0f0;
  }
  
  .modal-content::-webkit-scrollbar {
    width: 6px;
  }
  
  .modal-content::-webkit-scrollbar-track {
    background: #f0f0f0;
    border-radius: 10px;
  }
  
  .modal-content::-webkit-scrollbar-thumb {
    background: #0066cc;
    border-radius: 10px;
  }
  
  .modal-close-btn {
    position: absolute;
    top: 20px;
    right: 25px;
    background: white;
    border: none;
    font-size: 32px;
    cursor: pointer;
    color: #333;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 10;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    line-height: 1;
    padding: 0;
  }
  
  .modal-close-btn:hover {
    transform: rotate(90deg);
    background: #f0f0f0;
    color: #0066cc;
  }
  
  /* Style du contenu dans le modal */
  .modal-article {
    animation: fadeInUp 0.6s ease;
  }
  
  .modal-article .insight-category {
    display: inline-block;
    padding: 6px 12px;
    background: linear-gradient(135deg, #0066cc, #00aaff);
    color: white;
    border-radius: 20px;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
  }
  
  .modal-article h2 {
    font-size: 2.2rem;
    line-height: 1.3;
    margin-bottom: 20px;
    color: #1a1a1a;
  }
  
  .modal-article .modal-meta {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 2px solid #f0f0f0;
    color: #666;
  }
  
  .modal-article .article-content {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #333;
  }
  
  .modal-article .article-content p {
    margin-bottom: 25px;
    animation: fadeIn 0.6s ease;
    animation-fill-mode: both;
  }
  
  .modal-article .article-content p:nth-child(1) { animation-delay: 0.1s; }
  .modal-article .article-content p:nth-child(2) { animation-delay: 0.2s; }
  .modal-article .article-content p:nth-child(3) { animation-delay: 0.3s; }
  .modal-article .article-content p:nth-child(4) { animation-delay: 0.4s; }
  .modal-article .article-content p:nth-child(5) { animation-delay: 0.5s; }
  
  .modal-back-btn {
    display: inline-block;
    margin-top: 30px;
    padding: 12px 24px;
    background: linear-gradient(135deg, #0066cc, #00aaff);
    color: white;
    border: none;
    border-radius: 30px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    border: none;
  }
  
  .modal-back-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0,102,204,0.3);
  }
  
  /* Animations */
  @keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
  }
  
  @keyframes slideUp {
    from {
      opacity: 0;
      transform: translateY(50px) scale(0.95);
    }
    to {
      opacity: 1;
      transform: translateY(0) scale(1);
    }
  }
  
  @keyframes fadeInUp {
    from {
      opacity: 0;
      transform: translateY(30px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
  
  /* Responsive */
  @media (max-width: 768px) {
    .modal-container {
      width: 95%;
      margin: 2.5vh auto;
      max-height: 95vh;
    }
    
    .modal-content {
      padding: 30px 20px;
    }
    
    .modal-article h2 {
      font-size: 1.8rem;
    }
    
    .modal-close-btn {
      top: 10px;
      right: 15px;
      width: 40px;
      height: 40px;
      font-size: 28px;
    }
  }

/* ══════════════════════════════════════════════════════
   PAGE LOADER
   ══════════════════════════════════════════════════════ */
.page-loader {
  position: fixed;
  inset: 0;
  background: var(--navy-900);
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}

.page-loader.hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

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

.loader-logo {
  width: 80px;
  height: 80px;
  animation: loader-pulse 1.5s ease-in-out infinite;
}

.loader-ring {
  fill: none;
  stroke-width: 2;
  stroke-dasharray: 6 4;
  transform-origin: 90px 90px;
  animation: logo-spin 2s linear infinite;
}

.loader-sphere {
  animation: loader-pulse 1.5s ease-in-out infinite;
}

@keyframes loader-pulse {
  0%, 100% { opacity: 0.6; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.05); }
}

.loader-text {
  margin-top: 1.5rem;
  font-size: 0.9rem;
  color: var(--text-tertiary);
  letter-spacing: 0.1em;
  animation: loader-text-pulse 1.5s ease-in-out infinite;
}

@keyframes loader-text-pulse {
  0%, 100% { opacity: 0.5; }
  50% { opacity: 1; }
}

/* ══════════════════════════════════════════════════════
   BACK TO TOP BUTTON
   ══════════════════════════════════════════════════════ */
.back-to-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 48px;
  height: 48px;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: all 0.3s ease;
  z-index: 900;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.back-to-top:hover {
  background: var(--gold);
  color: var(--navy-900);
  border-color: var(--gold);
  transform: translateY(-4px);
}

.back-to-top:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 4px;
}

/* ══════════════════════════════════════════════════════
   COOKIE CONSENT BANNER
   ══════════════════════════════════════════════════════ */
.cookie-consent {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--navy-800);
  border-top: 1px solid var(--glass-border);
  padding: 1.25rem;
  z-index: 9999;
  transform: translateY(100%);
  transition: transform 0.4s var(--ease-out-expo);
}

.cookie-consent.visible {
  transform: translateY(0);
}

.cookie-consent.hidden {
  transform: translateY(100%);
}

.cookie-content {
  max-width: var(--container-max);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}

.cookie-content p {
  flex: 1;
  font-size: var(--fs-small);
  color: var(--text-secondary);
  line-height: 1.6;
  min-width: 280px;
}

.cookie-actions {
  display: flex;
  gap: 0.75rem;
  flex-shrink: 0;
}

.cookie-actions .btn {
  padding: 10px 20px;
  font-size: 0.85rem;
}

@media (max-width: 640px) {
  .cookie-content {
    flex-direction: column;
    text-align: center;
  }
  
  .cookie-content p {
    min-width: auto;
  }
  
  .cookie-actions {
    width: 100%;
    justify-content: center;
  }
}

/* ══════════════════════════════════════════════════════
   BUTTON LOADING STATE
   ══════════════════════════════════════════════════════ */
.btn .btn-loading {
  display: none;
}

.btn.loading .btn-text {
  display: none;
}

.btn.loading .btn-loading {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.spinner {
  animation: spin 1s linear infinite;
}

@keyframes spin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

/* ══════════════════════════════════════════════════════
   FORM SUCCESS STATE
   ══════════════════════════════════════════════════════ */
.form-success {
  text-align: center;
  padding: 3rem 2rem;
  animation: fadeInUp 0.6s ease;
}

.form-success-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 1.5rem;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--navy-900);
}

.form-success h3 {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  margin-bottom: 0.75rem;
  color: var(--text-primary);
}

.form-success p {
  font-size: var(--fs-body);
  color: var(--text-secondary);
  line-height: 1.7;
}

/* ══════════════════════════════════════════════════════
   ENHANCED MODAL STYLES (Dark Theme)
   ══════════════════════════════════════════════════════ */
.article-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2000;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.article-modal.active {
  display: block;
  opacity: 1;
}

.modal-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(10, 22, 40, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.modal-container {
  position: relative;
  width: 90%;
  max-width: 800px;
  max-height: 85vh;
  margin: 5vh auto;
  background: var(--bg-card);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border: 1px solid var(--border-color);
  border-radius: 24px;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5);
  overflow: hidden;
  animation: modalSlideUp 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes modalSlideUp {
  from {
    opacity: 0;
    transform: translateY(60px) scale(0.95);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.modal-content {
  padding: 48px;
  overflow-y: auto;
  max-height: 85vh;
  scrollbar-width: thin;
  scrollbar-color: var(--gold) var(--navy-800);
  color: var(--text-primary);
}

.modal-content::-webkit-scrollbar {
  width: 6px;
}

.modal-content::-webkit-scrollbar-track {
  background: var(--navy-800);
  border-radius: 10px;
}

.modal-content::-webkit-scrollbar-thumb {
  background: var(--gold);
  border-radius: 10px;
}

.modal-close-btn {
  position: absolute;
  top: 20px;
  right: 20px;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-primary);
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 10;
}

.modal-close-btn:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--navy-900);
  transform: rotate(90deg);
}

.modal-article {
  animation: fadeInUp 0.6s ease;
}

.modal-article .insight-category {
  display: inline-block;
  padding: 8px 16px;
  background: var(--accent-gradient);
  color: var(--navy-900);
  border-radius: 30px;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 24px;
}

.modal-article h2 {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 24px;
  color: var(--text-primary);
}

.modal-article .modal-meta {
  display: flex;
  gap: 24px;
  margin-bottom: 32px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--border-color);
  color: var(--text-secondary);
  font-size: 0.9rem;
}

.modal-article .article-content {
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--text-secondary);
}

.modal-article .article-content p {
  margin-bottom: 24px;
}

.modal-back-btn {
  display: inline-block;
  margin-top: 32px;
  padding: 14px 28px;
  background: var(--accent-gradient);
  color: var(--navy-900);
  border: none;
  border-radius: 40px;
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.modal-back-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(201, 168, 76, 0.3);
}

@media (max-width: 768px) {
  .back-to-top {
    bottom: 1.5rem;
    right: 1.5rem;
    width: 44px;
    height: 44px;
  }
  
  .modal-content {
    padding: 32px 24px;
  }
  
  .modal-article h2 {
    font-size: 1.6rem;
  }
}
/* ====================== SPIDER CURSOR BACKGROUND ====================== */
#spider-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    pointer-events: none;
    opacity: 0.85;
    mix-blend-mode: screen;
}

/* Version plus légère sur mobile */
@media (max-width: 768px) {
    #spider-canvas {
        opacity: 0.55;
    }
}
/* Magnetic Button */
.btn-magnetic {
    transition: transform 0.2s ease-out;
    will-change: transform;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.btn-magnetic:active {
    transform: scale(1);
}

/* Read More button styling - Gold border + light gold background */
.insight-link.read-more-btn {
    border: 1px solid rgba(201, 168, 76, 0.4);
    border-radius: 60px;
    padding: 10px 24px;
    background: rgba(201, 168, 76, 0.3);
    color: var(--gold);
    font-weight: 500;
    font-size: 0.85rem;
    transition: all 0.3s ease;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: auto;
    margin-top: 15px;
}

.insight-link.read-more-btn:hover {
    background: rgba(201, 168, 76, 0.45);
    border-color: var(--gold);
    transform: translateY(-2px);
}

.insight-link.read-more-btn:active {
    transform: translateY(0);
}
/* Footer links with gold light effect - with background */
.footer-links a {
    transition: all 0.3s ease;
    display: inline-block;
    padding: 6px 12px;
    border-radius: 30px;
    margin: 2px 0;
}

.footer-links a:hover {
    color: var(--gold);
    background: rgba(201, 168, 76, 0.15);
    transform: translateX(5px);
    text-shadow: 0 0 8px rgba(201, 168, 76, 0.5);
    box-shadow: 0 0 12px rgba(201, 168, 76, 0.2);
}
