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

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Tahoma", "Arial", sans-serif;
  background: #070707;
  color: #fff;
  line-height: 1.8;
  overflow-x: hidden;
}

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

button {
  font-family: inherit;
  cursor: pointer;
}

::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-track {
  background: #111;
}
::-webkit-scrollbar-thumb {
  background: var(--gold);
  border-radius: 10px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--gold-light);
}

/* ============================================================ */
/* 2. VARIABLES                                                 */
/* ============================================================ */
:root {
  --gold: #d4af37;
  --gold-light: #f5d76e;
  --gold-dark: #b8960f;
  --dark: #070707;
  --dark-2: #111;
  --dark-3: #181818;
  --gray: #aaa;
  --white: #fff;
  --border: rgba(212, 175, 55, 0.25);
  --shadow-gold: 0 0 30px rgba(212, 175, 55, 0.15);
  --transition: 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --header-height: 75px;
}

/* ============================================================ */
/* 3. LOADER                                                    */
/* ============================================================ */
#loader {
  position: fixed;
  inset: 0;
  background: #050505;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  transition: opacity 0.8s ease, visibility 0.8s ease;
}
#loader.hidden {
  opacity: 0;
  visibility: hidden;
}

.loader-content { text-align: center; }
.loader-symbol {
  font-size: 70px;
  animation: float 2s ease-in-out infinite;
  display: inline-block;
}
.loader-ring {
  width: 80px;
  height: 80px;
  margin: 0 auto 20px;
  border: 3px solid transparent;
  border-top-color: var(--gold);
  border-radius: 50%;
  animation: spin 1s linear infinite;
  position: relative;
}
.loader-ring::before {
  content: "";
  position: absolute;
  top: 5px; left: 5px; right: 5px; bottom: 5px;
  border: 3px solid transparent;
  border-bottom-color: var(--gold-light);
  border-radius: 50%;
  animation: spin 1.5s linear infinite reverse;
}
.loader-content h2 {
  color: var(--gold);
  margin-top: 15px;
  letter-spacing: 6px;
  font-size: 28px;
  animation: pulse-text 1.5s ease-in-out infinite;
}

@keyframes spin { to { transform: rotate(360deg); } }
@keyframes float {
  0%, 100% { transform: translateY(0) scale(1); }
  50% { transform: translateY(-15px) scale(1.05); }
}
@keyframes pulse-text {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.5; }
}

/* ============================================================ */
/* 4. HEADER                                                    */
/* ============================================================ */
header {
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(0, 0, 0, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  transition: var(--transition);
  height: var(--header-height);
}
header.scrolled {
  background: rgba(0, 0, 0, 0.97);
  box-shadow: 0 5px 30px rgba(0, 0, 0, 0.5);
}

.navbar {
  max-width: 1200px;
  margin: auto;
  height: var(--header-height);
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.logo {
  font-size: 24px;
  font-weight: bold;
  color: var(--gold);
  letter-spacing: 3px;
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}
.logo i { font-size: 28px; color: var(--gold-light); }
.logo span { color: #fff; }

.menu-btn {
  display: none;
  align-items: center;
  justify-content: center;
  background: none;
  border: 2px solid var(--border);
  color: var(--gold);
  font-size: 24px;
  cursor: pointer;
  padding: 8px 12px;
  border-radius: 8px;
  transition: var(--transition);
  min-width: 44px;
  min-height: 44px;
  flex-shrink: 0;
}
.menu-btn:hover {
  border-color: var(--gold);
  background: rgba(212, 175, 55, 0.1);
}

.nav-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.7);
  z-index: 998;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
}
.nav-overlay.active,
.nav-overlay.open {
  opacity: 1;
  visibility: visible;
}

nav {
  display: flex;
  gap: 20px;
  align-items: center;
}
nav a {
  color: #ddd;
  font-size: 14px;
  transition: var(--transition);
  position: relative;
  padding: 5px 0;
  font-weight: 500;
  letter-spacing: 0.5px;
}
nav a:hover { color: var(--gold); }
nav a::after {
  content: "";
  position: absolute;
  bottom: -4px;
  right: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(to left, var(--gold), var(--gold-light));
  transition: var(--transition);
  border-radius: 2px;
}
nav a:hover::after { width: 100%; }
nav a.active { color: var(--gold); }
nav a.active::after { width: 100%; }

/* ============================================================ */
/* 5. MARQUEE                                                   */
/* ============================================================ */
.marquee-section {
  background: var(--dark-3);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 12px 0;
  overflow: hidden;
  position: relative;
  margin-top: var(--header-height);
}
.marquee-content {
  display: flex;
  gap: 50px;
  animation: marquee 30s linear infinite;
  white-space: nowrap;
  will-change: transform;
}
.particle { will-change: transform, opacity; }
.marquee-content span { color: #ccc; font-size: 14px; }
.marquee-content span:first-child { color: var(--gold); font-weight: bold; }
.marquee-content .highlight { color: var(--gold-light); }

@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.marquee-section:hover .marquee-content {
  animation-play-state: paused;
}

/* ============================================================ */
/* 6. HERO                                                      */
/* ============================================================ */
.hero {
  min-height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 100px 20px 60px;
  position: relative;
  overflow: hidden;
  background: radial-gradient(circle at 50% 30%, rgba(212, 175, 55, 0.12), transparent 40%),
              linear-gradient(180deg, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.92)),
              url("css/themasterofillusion.jpeg") center/cover no-repeat;
  background-color: #0a0a0a;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(255, 255, 255, 0.6) 1px, transparent 1px);
  background-size: 60px 60px;
  opacity: 0.06;
  animation: stars 20s linear infinite;
}

@keyframes stars {
  from { transform: translateY(0); }
  to { transform: translateY(-60px); }
}

.hero-particles {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}
.particle {
  position: absolute;
  width: 4px;
  height: 4px;
  background: var(--gold);
  border-radius: 50%;
  opacity: 0;
  animation: particle-float linear infinite;
  box-shadow: 0 0 10px var(--gold);
}

@keyframes particle-float {
  0% { opacity: 0; transform: translateY(100vh) scale(0); }
  10% { opacity: 1; }
  90% { opacity: 1; }
  100% { opacity: 0; transform: translateY(-10vh) scale(1); }
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
}

.hero-icon {
  font-size: 75px;
  margin-bottom: 10px;
  animation: float 3s ease-in-out infinite;
  display: inline-block;
}

.hero h1 {
  font-size: clamp(50px, 9vw, 100px);
  color: var(--gold);
  text-shadow: 0 0 50px rgba(212, 175, 55, 0.2);
  margin-bottom: 5px;
  letter-spacing: 4px;
  background: linear-gradient(to right, var(--gold), var(--gold-light), var(--gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero h2 {
  font-size: clamp(22px, 4vw, 36px);
  margin-bottom: 10px;
  color: #fff;
  font-weight: 300;
  letter-spacing: 2px;
}
.hero h2 span { color: var(--gold); font-weight: bold; }

.hero .subtitle {
  color: var(--gold-light);
  font-size: 18px;
  font-weight: 500;
  margin-bottom: 10px;
}

.hero p {
  color: #ccc;
  font-size: 18px;
  max-width: 700px;
  margin: auto;
  line-height: 1.9;
}

.hero-badges {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 20px;
}
.hero-badge {
  background: rgba(212, 175, 55, 0.1);
  border: 1px solid var(--border);
  padding: 5px 18px;
  border-radius: 30px;
  font-size: 13px;
  color: var(--gold-light);
}

.hero-achievement {
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(10px);
  border: 1px solid var(--border);
  padding: 8px 18px;
  border-radius: 40px;
  font-size: 14px;
  color: #fff;
}

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

.hero-buttons {
  margin-top: 35px;
  display: flex;
  justify-content: center;
  gap: 18px;
  flex-wrap: wrap;
}

.hero-scroll {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  color: var(--gold);
  font-size: 14px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
  opacity: 0.7;
  animation: bounce 2s infinite;
}
.hero-scroll i { font-size: 20px; }

@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(-8px); }
}

/* ============================================================ */
/* 7. BOUTONS                                                   */
/* ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 35px;
  border-radius: 50px;
  border: 1px solid var(--gold);
  transition: var(--transition);
  cursor: pointer;
  font-weight: bold;
  font-size: 15px;
  letter-spacing: 0.5px;
}
.btn-primary {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: #000;
  border: none;
  box-shadow: 0 5px 25px rgba(212, 175, 55, 0.3);
}
.btn-primary:hover {
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 10px 40px rgba(212, 175, 55, 0.4);
}
.btn-outline {
  color: var(--gold);
  background: transparent;
  backdrop-filter: blur(5px);
}
.btn-outline:hover {
  background: var(--gold);
  color: #000;
  transform: translateY(-4px);
  box-shadow: 0 10px 30px rgba(212, 175, 55, 0.2);
}
.btn-sm { padding: 10px 22px; font-size: 13px; }

.btn-whatsapp,
.cta-buttons .btn-whatsapp {
  background: #075E54 !important;
  color: #ffffff !important;
  border: 1px solid #25D366 !important;
  box-shadow: 0 4px 15px rgba(7, 94, 84, 0.3);
  transition: all 0.3s ease;
}
.btn-whatsapp:hover,
.cta-buttons .btn-whatsapp:hover {
  background: #25D366 !important;
  color: #000000 !important;
  box-shadow: 0 8px 30px rgba(37, 211, 102, 0.4);
  transform: translateY(-3px);
}

.btn-read-more,
.read-more {
  display: inline-block !important;
  padding: 10px 25px;
  background: var(--gold);
  color: #000;
  border: none;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  text-align: center;
  font-family: inherit;
  margin-top: 10px;
}
.btn-read-more:hover,
.read-more:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(212, 175, 55, 0.4);
}

/* ============================================================ */
/* 8. GENERAL                                                   */
/* ============================================================ */
section {
  padding: 100px 20px;
  position: relative;
}
.container {
  max-width: 1150px;
  margin: auto;
}

.section-title {
  text-align: center;
  margin-bottom: 60px;
}
.section-title .small {
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 5px;
  font-size: 12px;
  font-weight: 600;
  display: inline-block;
  padding: 5px 15px;
  border: 1px solid var(--border);
  border-radius: 30px;
  margin-bottom: 10px;
}
.section-title h2 {
  font-size: 40px;
  margin: 10px 0;
  letter-spacing: 1px;
}
.section-title h2 span { color: var(--gold); }
.section-title p {
  color: var(--gray);
  max-width: 650px;
  margin: auto;
  font-size: 16px;
}

/* ============================================================ */
/* 9. PAGE HERO (pour pages internes)                           */
/* ============================================================ */
.page-hero {
  padding: 100px 20px 50px;
  background: linear-gradient(180deg, #0a0a0a 0%, #070707 100%);
  text-align: center;
  border-bottom: 1px solid rgba(212, 175, 55, 0.08);
  margin-top: var(--header-height, 75px);
}
.page-hero .container { max-width: 800px; margin: 0 auto; }
.page-hero-icon { font-size: 56px; margin-bottom: 16px; display: block; }
.page-hero h1 {
  font-size: 44px;
  color: #fff;
  margin-bottom: 12px;
  font-weight: 300;
  letter-spacing: 2px;
}
.page-hero h1 span { color: var(--gold, #d4af37); font-weight: 700; }
.page-hero p {
  font-size: 18px;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.8;
  text-align: center;
  color: #d4d4d4;
}

/* ============================================================ */
/* 10. ABOUT                                                    */
/* ============================================================ */
.about { background: #0b0b0b; }
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
  align-items: center;
}

.about-image {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-gold);
}
.about-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: var(--transition);
}
.about-image:hover img { transform: scale(1.03); }
.about-image .badge {
  position: absolute;
  bottom: -10px;
  right: 25px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: #000;
  padding: 10px 25px;
  border-radius: 30px;
  font-weight: bold;
  font-size: 14px;
  letter-spacing: 1px;
  box-shadow: 0 5px 20px rgba(212, 175, 55, 0.3);
}
.about-image .floating-icons {
  position: absolute;
  top: 20px;
  left: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.about-image .floating-icons span {
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(10px);
  padding: 8px 12px;
  border-radius: 10px;
  font-size: 20px;
  border: 1px solid var(--border);
}

.about-text h3 {
  font-size: 32px;
  color: var(--gold);
  margin-bottom: 20px;
  letter-spacing: 1px;
}
.about-text p {
  color: #ccc;
  margin-bottom: 15px;
  font-size: 15px;
  line-height: 1.9;
}
.about-text .highlight-text {
  color: var(--gold-light);
  font-weight: 500;
}

.facts {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px;
  margin-top: 30px;
}
.fact {
  background: var(--dark-3);
  border: 1px solid var(--border);
  padding: 20px;
  border-radius: 12px;
  text-align: center;
  transition: var(--transition);
}
.fact:hover {
  border-color: var(--gold);
  transform: translateY(-3px);
}
.fact strong {
  display: block;
  color: var(--gold);
  font-size: 26px;
  font-weight: bold;
}
.fact span { color: #aaa; font-size: 13px; }

.read-more-link {
  color: var(--gold);
  font-weight: 600;
  font-size: 14px;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 5px;
  margin-top: 10px;
}
.read-more-link:hover {
  gap: 10px;
  color: var(--gold-light);
}

/* ============================================================ */
/* 11. STATS                                                    */
/* ============================================================ */
.stats-section {
  background: linear-gradient(135deg, #0b0b0b, #141414);
  padding: 80px 20px;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}
.stat-item { text-align: center; padding: 20px; }
.stat-number {
  font-size: 52px;
  font-weight: bold;
  font-family: "Georgia", serif;
  background: linear-gradient(to right, var(--gold), var(--gold-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.stat-number::after {
  content: "+";
  -webkit-text-fill-color: var(--gold);
}
.stat-number.no-plus::after { content: ""; }
.stat-label {
  color: #c0c0c0;
  font-size: 15px;
  margin-top: 8px;
  font-weight: 500;
}

/* ============================================================ */
/* 12. PORTFOLIO                                                */
/* ============================================================ */
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}
.portfolio-item {
  background: var(--dark-3);
  border: 1px solid var(--border);
  border-radius: 18px;
  overflow: hidden;
  transition: var(--transition);
}
.portfolio-item:hover {
  transform: translateY(-5px);
  border-color: var(--gold);
  box-shadow: var(--shadow-gold);
}
.portfolio-icon {
  height: 180px;
  background: linear-gradient(135deg, #111, #222);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 60px;
  color: var(--gold);
  opacity: 0.6;
}
.portfolio-icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.portfolio-content { padding: 25px; flex: 1; display: flex; flex-direction: column; }
.portfolio-content h3 { color: var(--gold); margin-bottom: 5px; font-size: 18px; }
.portfolio-content .date { color: #999; font-size: 13px; }
.portfolio-content p { color: #ccc; margin: 10px 0; font-size: 14px; flex: 1; }
.portfolio-content .tags { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 8px; }
.portfolio-content .tags span {
  background: rgba(212, 175, 55, 0.1);
  border: 1px solid var(--border);
  padding: 3px 12px;
  border-radius: 20px;
  font-size: 12px;
  color: var(--gold-light);
}

/* ============================================================ */
/* 13. BLOG                                                     */
/* ============================================================ */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}
.blog-card {
  background: var(--dark-3);
  border: 1px solid var(--border);
  border-radius: 18px;
  overflow: hidden;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}
.blog-card:hover {
  transform: translateY(-5px);
  border-color: var(--gold);
  box-shadow: var(--shadow-gold);
}
.blog-image {
  height: 200px;
  background: linear-gradient(135deg, #111, #222);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 50px;
  color: var(--gold);
  opacity: 0.6;
  position: relative;
}
.blog-image .category-tag {
  position: absolute;
  bottom: 15px;
  right: 15px;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(10px);
  padding: 4px 16px;
  border-radius: 30px;
  border: 1px solid var(--border);
  font-size: 12px;
  color: var(--gold-light);
}
.blog-content { padding: 25px; flex: 1; display: flex; flex-direction: column; }
.blog-content .meta {
  color: #999;
  font-size: 13px;
  display: flex;
  gap: 15px;
  margin-bottom: 5px;
  flex-wrap: wrap;
}
.blog-content .meta i { color: var(--gold); margin-left: 4px; }
.blog-content h3 { color: #fff; font-size: 20px; margin-bottom: 8px; line-height: 1.4; }
.blog-content h3 a { color: #fff; text-decoration: none; transition: var(--transition); }
.blog-content h3 a:hover { color: var(--gold); }
.blog-content p { color: #aaa; font-size: 14px; margin-bottom: 12px; flex: 1; }
.blog-content .read-more {
  color: var(--gold);
  text-decoration: none;
  font-weight: 600;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  width: fit-content;
}
.blog-content .read-more:hover { color: var(--gold-light); gap: 12px; }

/* ============================================================ */
/* 14. CONTACT INFO                                             */
/* ============================================================ */
.contact-info-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
}
.contact-info-card {
  background: var(--dark-3);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 30px;
  text-align: center;
  transition: var(--transition);
}
.contact-info-card:hover {
  border-color: var(--gold);
  transform: translateY(-5px);
  box-shadow: var(--shadow-gold);
}
.contact-info-card i {
  font-size: 40px;
  color: var(--gold);
  margin-bottom: 10px;
}
.contact-info-card h3 { color: var(--gold); margin-bottom: 5px; font-size: 18px; }
.contact-info-card p { color: #aaa; }
.contact-info-card a { color: #ccc; transition: var(--transition); }
.contact-info-card a:hover { color: var(--gold); }

/* ============================================================ */
/* 15. FILTERS & PAGINATION                                     */
/* ============================================================ */
.filters {
  display: flex;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}
.filters button {
  padding: 8px 20px;
  border-radius: 30px;
  border: 1px solid var(--border);
  background: transparent;
  color: #aaa;
  font-size: 14px;
  cursor: pointer;
  transition: var(--transition);
  font-family: inherit;
  min-height: 44px;
}
.filters button:hover,
.filters button.active {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(212, 175, 55, 0.1);
}
.filters button.active {
  background: var(--gold);
  color: #000;
}

.pagination {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 40px;
  flex-wrap: wrap;
}
.pagination a,
.pagination span {
  padding: 8px 16px;
  border-radius: 8px;
  border: 1px solid var(--border);
  transition: var(--transition);
  color: #ddd;
  font-size: 14px;
  min-width: 40px;
  text-align: center;
}
.pagination a:hover { border-color: var(--gold); color: var(--gold); }
.pagination .active {
  background: var(--gold);
  color: #000;
  border-color: var(--gold);
}

/* ============================================================ */
/* 16. FOOTER                                                   */
/* ============================================================ */
footer {
  background: #030303;
  border-top: 1px solid var(--border);
  padding: 40px 20px;
  text-align: center;
}
footer .logo {
  margin-bottom: 10px;
  display: inline-flex;
  justify-content: center;
}
footer .footer-links {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  margin: 15px 0;
}
footer .footer-links a {
  color: #d4d4d4;
  font-size: 14px;
  transition: var(--transition);
  text-decoration: underline;
  text-underline-offset: 2px;
}
footer .footer-links a:hover { color: #ffffff; }
footer .social-links {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin: 15px 0;
}
footer .social-links a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  color: #999;
}
footer .social-links a:hover {
  background: var(--gold);
  color: #000;
  border-color: var(--gold);
  transform: translateY(-3px);
}
footer p { color: #cccccc; font-size: 13px; letter-spacing: 0.5px; }
footer p a { color: var(--gold); transition: var(--transition); }
footer p a:hover { color: var(--gold-light); }

/* ============================================================ */
/* 17. BACK TO TOP                                              */
/* ============================================================ */
#topBtn {
  position: fixed;
  bottom: 30px;
  left: 30px;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: 2px solid #d4af37;
  background: rgba(10, 10, 10, 0.92);
  color: #d4af37;
  cursor: pointer;
  display: none;
  z-index: 999;
  font-size: 22px;
  transition: var(--transition);
  backdrop-filter: blur(10px);
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 20px rgba(212, 175, 55, 0.1);
}
#topBtn:hover {
  background: #d4af37;
  color: #000;
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(212, 175, 55, 0.3);
}

/* ============================================================ */
/* 18. REVEAL ANIMATIONS                                        */
/* ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(50px);
  transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.reveal.active { opacity: 1; transform: translateY(0); }
.reveal-left {
  opacity: 0;
  transform: translateX(-50px);
  transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.reveal-left.active { opacity: 1; transform: translateX(0); }
.reveal-right {
  opacity: 0;
  transform: translateX(50px);
  transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.reveal-right.active { opacity: 1; transform: translateX(0); }

/* ============================================================ */
/* 19. SKIP LINK (Accessibilité)                                */
/* ============================================================ */
.skip-link {
  position: fixed;
  top: -100%;
  left: 50%;
  transform: translateX(-50%);
  background: #d4af37;
  color: #000;
  padding: 12px 24px;
  border-radius: 0 0 8px 8px;
  z-index: 99999;
  font-weight: 700;
  transition: top 0.3s ease;
  text-decoration: none !important;
  font-size: 16px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}
.skip-link:focus { top: 0 !important; }

/* ============================================================ */
/* 20. ACCESSIBILITÉ                                            */
/* ============================================================ */
a:not(.btn):not(.logo):not(.btn-service):not(.btn-event):not(.btn-whatsapp):not(.btn-contact):not(.btn-gold):not(.btn-primary):not(.btn-outline):not(.btn-read-more):not(.read-more):not(.social-links a):not(.skip-link) {
  text-decoration: underline !important;
  text-underline-offset: 3px !important;
  text-decoration-thickness: 1.5px !important;
}

*:focus-visible {
  outline: 3px solid #d4af37 !important;
  outline-offset: 4px !important;
  border-radius: 4px !important;
}

.page-hero p,
.service-card p,
.event-detail-card p,
.event-card p,
.about-text p,
.testimonial-card .review-text,
.blog-content p,
.press-card p,
.cert-card p {
  color: #e0e0e0 !important;
}

/* ============================================================ */
/* 21. EVENTS PROMO SECTION                                     */
/* ============================================================ */
.events-promo {
  padding: 70px 20px;
  background: linear-gradient(145deg, #0a0a0a 0%, #141414 100%);
  border-top: 2px solid rgba(212, 175, 55, 0.3);
  border-bottom: 2px solid rgba(212, 175, 55, 0.3);
  position: relative;
  overflow: hidden;
}
.events-promo::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle at 30% 50%, rgba(212, 175, 55, 0.03), transparent 60%);
  animation: promo-glow 15s ease-in-out infinite alternate;
  pointer-events: none;
}
@keyframes promo-glow {
  0% { transform: translate(0, 0); }
  100% { transform: translate(5%, 5%); }
}
.events-promo-container {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.events-promo-content { text-align: center; }
.events-promo-icon {
  font-size: 60px;
  display: block;
  margin-bottom: 15px;
  animation: promo-float 3s ease-in-out infinite;
}
@keyframes promo-float {
  0%, 100% { transform: translateY(0) scale(1); }
  50% { transform: translateY(-10px) scale(1.05); }
}
.events-promo-title {
  color: var(--gold);
  font-size: 34px;
  font-weight: 300;
  letter-spacing: 1px;
  margin-bottom: 12px;
}
.events-promo-title span { color: #fff; font-weight: 700; }
.events-promo-text {
  color: #ccc;
  font-size: 17px;
  line-height: 1.9;
  max-width: 650px;
  margin: 0 auto 30px;
}
.events-promo-btn {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: #000;
  padding: 16px 40px;
  border-radius: 50px;
  font-size: 18px;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  border: none;
  cursor: pointer;
  box-shadow: 0 5px 30px rgba(212, 175, 55, 0.2);
}
.events-promo-btn:hover {
  transform: translateY(-4px);
  box-shadow: 0 15px 50px rgba(212, 175, 55, 0.4);
  gap: 20px;
}

/* ============================================================ */
/* 22. YOUTUBE FACADE — Chargement au clic (RGPD + Performance) */
/* ============================================================ */
.yt-facade {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%;
  background: #000;
  overflow: hidden;
  cursor: pointer;
}

.yt-facade img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease, opacity 0.3s ease;
}

.yt-facade:hover img {
  transform: scale(1.05);
  opacity: 0.85;
}

.yt-facade .yt-play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80px;
  height: 80px;
  background: rgba(212, 175, 55, 0.95);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease, background 0.3s ease;
  z-index: 2;
  pointer-events: none;
}

.yt-facade .yt-play::before {
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 14px 0 14px 24px;
  border-color: transparent transparent transparent #000;
  margin-left: 6px;
}

.yt-facade:hover .yt-play {
  transform: translate(-50%, -50%) scale(1.15);
  background: #d4af37;
}

.yt-facade iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}

@media (max-width: 480px) {
  .yt-facade .yt-play {
    width: 60px;
    height: 60px;
  }
  .yt-facade .yt-play::before {
    border-width: 10px 0 10px 18px;
  }
}

/* ============================================================ */
/* 23. RESPONSIVE                                               */
/* ============================================================ */

/* Tablette moyenne */
@media (max-width: 1024px) {
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
}

/* ============================================================ */
/* MENU MOBILE — Compatible 'active' ET 'open'                  */
/* ============================================================ */
@media (max-width: 900px) {
  .menu-btn { display: flex; }

  nav {
    position: fixed;
    top: var(--header-height);
    right: -100%;
    width: 80%;
    max-width: 320px;
    height: calc(100vh - var(--header-height));
    background: rgba(9, 9, 9, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    flex-direction: column;
    padding: 20px;
    border-left: 1px solid var(--border);
    transition: right 0.4s ease;
    gap: 5px;
    z-index: 999;
    align-items: stretch;
    overflow-y: auto;
  }

  /* ✅ Support des DEUX classes : active ET open */
  nav.active,
  nav.open {
    right: 0 !important;
  }

  nav a {
    padding: 12px 15px;
    border-radius: 10px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    width: 100%;
    font-size: 16px;
  }
  nav a::after { display: none; }

  .nav-overlay {
    display: none;
  }
  .nav-overlay.active,
  .nav-overlay.open {
    display: block;
    opacity: 1;
    visibility: visible;
  }

  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .portfolio-grid,
  .blog-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-info-grid { grid-template-columns: repeat(2, 1fr); }
}

/* Mobile */
@media (max-width: 768px) {
  section { padding: 70px 15px; }

  .hero {
    min-height: 85vh;
    padding: 80px 15px 50px;
    background-position: 50% 25% !important;
    background-size: cover !important;
  }
  .hero h1 { font-size: 42px; }
  .hero p { font-size: 15px; }
  .hero-scroll { display: none; }

  .hero-achievement {
    font-size: 11px !important;
    padding: 5px 12px !important;
    gap: 5px !important;
  }
  .hero-achievement i { font-size: 13px !important; }

  .facts { grid-template-columns: repeat(3, 1fr); gap: 10px; }
  .fact strong { font-size: 20px; }
  .stat-number { font-size: 38px; }
  .section-title h2 { font-size: 30px; }
  .about-text h3 { font-size: 26px; }

  .portfolio-grid,
  .blog-grid { grid-template-columns: 1fr; }
  .contact-info-grid { grid-template-columns: 1fr 1fr; }
  .stats-grid { grid-template-columns: 1fr 1fr; gap: 15px; }

  .hero-badges { gap: 10px; }
  .hero-badge { font-size: 11px; padding: 4px 12px; }

  .page-hero {
    padding: 80px 16px 30px !important;
    margin-top: 60px !important;
  }
  .page-hero h1 { font-size: 28px !important; }
  .page-hero p { font-size: 16px !important; }

  .btn {
    padding: 12px 28px !important;
    font-size: 14px !important;
    min-height: 48px;
    justify-content: center;
  }
  .hero-buttons { gap: 12px; }

  footer .footer-links { gap: 12px; }
  footer .footer-links a { font-size: 12px; }

  #topBtn {
    width: 44px;
    height: 44px;
    font-size: 18px;
    bottom: 20px;
    left: 20px;
  }
}

/* Très petits mobiles */
@media (max-width: 480px) {
  .hero h1 { font-size: 34px; }
  .hero h2 { font-size: 18px; }
  .hero-icon { font-size: 50px; }
  .btn { padding: 12px 25px; font-size: 13px; }

  .facts { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
  .stat-number { font-size: 30px; }
  .contact-info-grid { grid-template-columns: 1fr; }

  .page-hero h1 { font-size: 22px !important; }
  .page-hero-icon { font-size: 40px !important; }

  .logo { font-size: 18px; }
  .logo i { font-size: 20px; }

  .marquee-content span { font-size: 12px; }
}

/* ============================================================ */
/* 24. NAVIGATION DESKTOP (éviter le wrap)                      */
/* ============================================================ */
@media (min-width: 901px) {
  nav { flex-wrap: nowrap !important; }
  nav a {
    white-space: nowrap !important;
    font-size: 13px !important;
    padding: 5px 10px !important;
  }
}
@media (min-width: 901px) and (max-width: 1200px) {
  nav { gap: 10px !important; }
  nav a { font-size: 12px !important; padding: 5px 8px !important; }
}
@media (min-width: 1201px) {
  nav a { font-size: 14px !important; padding: 5px 0 !important; }
}