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

:root {
  --bg:        #0a0a0a;
  --bg2:       #111111;
  --bg3:       #1a1a1a;
  --card:      #161616;
  --border:    #2a2a2a;
  --accent:    #f5c518;
  --accent2:   #e6b800;
  --text:      #f0f0f0;
  --muted:     #888888;
  --radius:    12px;
  --radius-lg: 20px;
}

html { scroll-behavior: smooth; }

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

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* =====================
   NEON EFFECTS
   ===================== */

@keyframes neonFlicker {
  0%, 18%, 20%, 50%, 52%, 100% {
    text-shadow:
      0 0 4px #fff,
      0 0 10px #fff,
      0 0 20px #f5c518,
      0 0 40px #f5c518,
      0 0 70px #f5c518,
      0 0 90px #e6b800;
  }
  19%, 51% {
    text-shadow: none;
  }
}

@keyframes neonPulse {
  0%, 100% {
    box-shadow:
      0 0 6px rgba(245,197,24,0.4),
      0 0 14px rgba(245,197,24,0.25),
      0 0 30px rgba(245,197,24,0.15),
      inset 0 0 8px rgba(245,197,24,0.05);
  }
  50% {
    box-shadow:
      0 0 10px rgba(245,197,24,0.7),
      0 0 25px rgba(245,197,24,0.45),
      0 0 55px rgba(245,197,24,0.25),
      inset 0 0 14px rgba(245,197,24,0.1);
  }
}

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

@keyframes waveDrift {
  0%, 100% { transform: translateX(0) translateY(0); }
  33%       { transform: translateX(-18px) translateY(4px); }
  66%       { transform: translateX(18px) translateY(-4px); }
}

/* =====================
   TYPOGRAPHY
   ===================== */
h1 { font-size: clamp(2.4rem, 5vw, 4.5rem); font-weight: 800; line-height: 1.1; }
h2 { font-size: clamp(1.8rem, 3vw, 2.8rem); font-weight: 700; }
h3 { font-size: 1.2rem; font-weight: 600; }

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

/* =====================
   SECTION HEADERS
   ===================== */
.section-header {
  text-align: center;
  margin-bottom: 56px;
}
.section-header.left { text-align: left; }

.section-tag {
  display: inline-block;
  background: rgba(245,197,24,0.12);
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 50px;
  margin-bottom: 14px;
}

.section-desc {
  color: var(--muted);
  font-size: 1rem;
  margin-top: 10px;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}

/* =====================
   NAVBAR
   ===================== */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(10,10,10,0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid transparent;
  transition: border-color .3s;
}
.navbar.scrolled { border-bottom-color: var(--border); }

.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  font-size: 1.4rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--text);
}
.logo span { color: var(--accent); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav-links a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--muted);
  transition: color .2s;
}
.nav-links a:hover { color: var(--text); }

.btn-nav {
  background: var(--accent) !important;
  color: #000 !important;
  padding: 8px 20px;
  border-radius: 8px;
  font-weight: 600 !important;
  transition: background .2s, transform .15s !important;
}
.btn-nav:hover { background: var(--accent2) !important; transform: translateY(-1px); }

.nav-socials {
  display: flex;
  align-items: center;
  gap: 6px;
}

.nav-social {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 8px;
  border: 1px solid var(--border);
  color: var(--muted);
  transition: color .2s, border-color .2s, background .2s;
}
.nav-social:hover {
  color: #e1306c;
  border-color: #e1306c;
  background: rgba(225,48,108,0.08);
}
.nav-social-fb:hover {
  color: #1877f2;
  border-color: #1877f2;
  background: rgba(24,119,242,0.08);
}

.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.burger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: transform .3s, opacity .3s;
}

.mobile-menu {
  display: none;
  flex-direction: column;
  padding: 16px 24px 24px;
  gap: 4px;
  border-top: 1px solid var(--border);
  background: var(--bg);
}
.mobile-menu.open { display: flex; }

.mobile-link {
  padding: 12px 0;
  font-size: 1rem;
  font-weight: 500;
  color: var(--muted);
  border-bottom: 1px solid var(--border);
  transition: color .2s;
}
.mobile-link:last-child { border: none; }
.mobile-link:hover, .mobile-link.cta { color: var(--accent); }
.mobile-link-insta { color: #e1306c !important; }
.mobile-link-insta:hover { color: #c1145c !important; }
.mobile-link-fb { color: #1877f2 !important; }
.mobile-link-fb:hover { color: #0d5dbf !important; }

/* =====================
   HERO
   ===================== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding-top: 64px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 60% at 50% 0%, rgba(245,197,24,0.1) 0%, transparent 65%),
              radial-gradient(ellipse 40% 40% at 80% 80%, rgba(245,197,24,0.05) 0%, transparent 60%);
  overflow: hidden;
}


/* Vagues arc-en-ciel fond hero */
.hero-waves {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 58%;
  pointer-events: none;
  opacity: 0.28;
  -webkit-mask-image: linear-gradient(to bottom, black 45%, transparent 100%);
  mask-image: linear-gradient(to bottom, black 45%, transparent 100%);
  animation: waveDrift 22s ease-in-out infinite;
}

.grid-overlay {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.03) 1px, transparent 1px);
  background-size: 60px 60px;
}

.hero-content {
  position: relative;
  text-align: center;
  max-width: 820px;
  padding: 40px 24px;
}

/* Bannière hero */
.hero-banner {
  display: inline-flex;
  align-items: center;
  gap: 20px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(245,197,24,0.25);
  border-radius: 20px;
  padding: 14px 32px 14px 14px;
  margin-bottom: 36px;
  backdrop-filter: blur(10px);
  box-shadow: 0 0 30px rgba(245,197,24,0.07);
}

.banner-logo {
  width: 72px;
  height: 72px;
  object-fit: contain;
  border-radius: 14px;
  flex-shrink: 0;
}

.banner-text {
  display: flex;
  flex-direction: column;
  gap: 4px;
  text-align: left;
}

.banner-name {
  font-size: 1.9rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1;
  color: var(--text);
}

.banner-tagline {
  font-size: 0.82rem;
  color: var(--muted);
  letter-spacing: 0.04em;
}

.badge {
  display: inline-block;
  border: 1px solid var(--border);
  background: var(--bg2);
  font-size: 0.82rem;
  font-weight: 500;
  padding: 8px 18px;
  border-radius: 50px;
  margin-bottom: 28px;
  color: var(--muted);
}

.hero-sub {
  font-size: 1.15rem;
  color: var(--muted);
  margin: 20px auto 36px;
  max-width: 520px;
}

.hero-cta {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 56px;
}

.btn-primary {
  background: var(--accent);
  color: #000;
  font-weight: 700;
  font-size: 0.95rem;
  padding: 14px 28px;
  border-radius: var(--radius);
  transition: background .2s, transform .15s, box-shadow .2s;
  box-shadow: 0 4px 24px rgba(245,197,24,0.25);
}
.btn-primary:hover {
  background: var(--accent2);
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(245,197,24,0.35);
}

.btn-secondary {
  background: var(--bg2);
  color: var(--text);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 14px 28px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  transition: background .2s, border-color .2s, transform .15s;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.btn-secondary:hover {
  background: var(--bg3);
  border-color: #444;
  transform: translateY(-2px);
}
.icon-phone {
  color: #1a8fff;
  flex-shrink: 0;
}

.hero-stats {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
}
.stat {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.stat strong {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--accent);
}
.stat span {
  font-size: 0.8rem;
  color: var(--muted);
  margin-top: 2px;
}
.stat-sep {
  width: 1px;
  height: 40px;
  background: var(--border);
}

/* =====================
   DÉCO LATÉRALE HERO
   ===================== */
.hero-deco {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  z-index: 2;
}
.hero-deco-left  { left:  4%; }
.hero-deco-right { right: 4%; }

.deco-bolt {
  width: 56px;
  height: 112px;
  filter:
    drop-shadow(0 0 6px rgba(245,197,24,0.9))
    drop-shadow(0 0 18px rgba(245,197,24,0.5))
    drop-shadow(0 0 40px rgba(245,197,24,0.25));
  animation: neonFlicker 5s infinite;
}
.deco-bolt-sm {
  width: 36px;
  height: 72px;
  filter: none;
  opacity: 0.25;
  animation: none;
}

.deco-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 14px 16px;
  width: 90px;
  text-align: center;
  backdrop-filter: blur(8px);
  transition: border-color .3s;
}
.deco-card:hover { border-color: rgba(245,197,24,0.35); }

.deco-card-icon { font-size: 1.3rem; }

.deco-card-label {
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--muted);
  line-height: 1.4;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

@media (max-width: 1200px) {
  .hero-deco { display: none; }
}

.scroll-hint {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  color: var(--muted);
  font-size: 1.4rem;
  animation: bounce 2s infinite;
}
@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(8px); }
}

/* =====================
   SERVICES
   ===================== */
.services {
  padding: 100px 0;
  background: var(--bg2);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}

.service-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: border-color .25s, transform .2s, box-shadow .25s;
}
.service-card:hover {
  border-color: rgba(245,197,24,0.4);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.4);
}

.service-icon {
  font-size: 2rem;
  margin-bottom: 16px;
}
.service-card h3 {
  margin-bottom: 10px;
}
.service-card p {
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.6;
}

/* =====================
   RÉALISATIONS
   ===================== */
.realisations {
  padding: 100px 0;
  background: var(--bg);
}

.apropos-text {
  background: var(--card);
  border: 1px solid var(--border);
  border-left: 3px solid var(--accent);
  border-radius: var(--radius-lg);
  padding: 36px 40px;
  margin-bottom: 48px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.apropos-text p {
  font-size: 0.97rem;
  color: #bbb;
  line-height: 1.8;
}
.apropos-text p:first-child {
  color: #d5d5d5;
  font-size: 1rem;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 24px;
  margin-bottom: 32px;
}

.gallery-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: border-color .25s, transform .2s;
}
.gallery-card:hover {
  border-color: rgba(245,197,24,0.35);
  transform: translateY(-3px);
}

.gallery-img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.placeholder-img {
  background: var(--bg3);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.placeholder-img::before {
  content: '📷';
  font-size: 2.5rem;
  opacity: 0.25;
}
.placeholder-img::after {
  content: 'Photo à venir';
  position: absolute;
  bottom: 12px;
  left: 0; right: 0;
  text-align: center;
  font-size: 0.75rem;
  color: var(--muted);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.img1 { background: linear-gradient(135deg, #1a1a2e, #16213e); }
.img2 { background: linear-gradient(135deg, #0f3460, #533483); }
.img3 { background: linear-gradient(135deg, #1b262c, #0f3460); }
.img4 { background: linear-gradient(135deg, #2d132c, #1b1b2f); }
.img5 { background: linear-gradient(135deg, #162447, #1f4068); }
.img6 { background: linear-gradient(135deg, #1a1a2e, #e43f5a22); }

.gallery-info {
  padding: 20px 24px;
}
.gallery-info h4 {
  font-weight: 600;
  margin-bottom: 4px;
}
.gallery-info p {
  font-size: 0.85rem;
  color: var(--muted);
}

/* Carte pleine largeur avant/après */
.gallery-card-wide {
  grid-column: 1 / -1;
}

/* Slider Avant / Après */
.before-after {
  position: relative;
  width: 100%;
  height: 300px;
  overflow: hidden;
  cursor: ew-resize;
  user-select: none;
  touch-action: pan-y;
}

.ba-after {
  position: absolute;
  inset: 0;
}
.ba-after img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ba-before {
  position: absolute;
  inset: 0;
  clip-path: inset(0 50% 0 0);
}
.ba-before img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ba-handle {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 48px;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  z-index: 10;
  pointer-events: none;
}
.ba-line {
  flex: 1;
  width: 2px;
  background: #fff;
  opacity: 0.9;
}
.ba-circle {
  width: 44px;
  height: 44px;
  background: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  color: #000;
  font-weight: 800;
  box-shadow: 0 2px 16px rgba(0,0,0,0.4);
  flex-shrink: 0;
}

.ba-placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  text-align: center;
  padding: 20px;
}
.ba-placeholder-before { background: linear-gradient(135deg, #1a1005, #3a2a0a); }
.ba-placeholder-after  { background: linear-gradient(135deg, #031a0a, #0a3018); }

.ba-placeholder-icon { font-size: 2rem; opacity: 0.4; }

.ba-placeholder-text {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.45);
  line-height: 1.6;
}
.ba-placeholder-text strong { color: rgba(255,255,255,0.7); display: block; font-size: 0.9rem; }
.ba-placeholder-text em     { font-size: 0.75rem; font-style: normal; color: var(--accent); opacity: 0.6; }

.ba-label {
  position: absolute;
  top: 14px;
  background: rgba(0,0,0,0.55);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 50px;
  backdrop-filter: blur(6px);
  pointer-events: none;
}
.ba-label-left  { left: 16px; }
.ba-label-right { right: 16px; color: #4ade80; }

/* Visiophone placeholder */
.img-visiophone {
  background: linear-gradient(135deg, #1a1f35, #2d3561);
}

.gallery-note {
  text-align: center;
  color: var(--muted);
  font-size: 0.9rem;
}
.gallery-note a {
  color: var(--accent);
  text-decoration: underline;
}

/* =====================
   TARIFS
   ===================== */
.tarifs {
  padding: 100px 0;
  background: var(--bg2);
}

.tarifs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
  margin-bottom: 24px;
}

.tarif-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  position: relative;
  transition: border-color .25s, transform .2s, box-shadow .25s;
}
.tarif-card:hover {
  border-color: rgba(245,197,24,0.35);
  transform: translateY(-4px);
}

.tarif-card.featured {
  border-color: var(--accent);
  box-shadow: 0 0 0 1px var(--accent), 0 16px 48px rgba(245,197,24,0.12);
}
.tarif-card.featured:hover {
  box-shadow: 0 0 0 1px var(--accent), 0 20px 60px rgba(245,197,24,0.18);
}

.tarif-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: #000;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 4px 16px;
  border-radius: 50px;
  white-space: nowrap;
}

.tarif-header h3 {
  font-size: 1.1rem;
  margin-bottom: 8px;
}
.tarif-price {
  font-size: 0.95rem;
  color: var(--muted);
}
.tarif-price strong {
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--text);
}
.tarif-price span {
  font-size: 0.8rem;
  color: var(--muted);
  margin-left: 4px;
}

.tarif-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}
.tarif-list li {
  font-size: 0.9rem;
  color: var(--muted);
}
.tarif-list li::first-letter { color: var(--accent); }

.btn-tarif {
  display: block;
  text-align: center;
  background: var(--bg3);
  border: 1px solid var(--border);
  color: var(--text);
  padding: 12px;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 0.9rem;
  transition: background .2s, border-color .2s, transform .15s;
}
.btn-tarif:hover {
  background: rgba(245,197,24,0.1);
  border-color: var(--accent);
  transform: translateY(-1px);
}
.featured .btn-tarif {
  background: var(--accent);
  color: #000;
  border-color: var(--accent);
}
.featured .btn-tarif:hover {
  background: var(--accent2);
}

.tarifs-note {
  text-align: center;
  font-size: 0.85rem;
  color: var(--muted);
  max-width: 600px;
  margin: 0 auto;
}

/* =====================
   AVIS CLIENTS
   ===================== */
.avis {
  padding: 100px 0;
  background: var(--bg);
}

.avis-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}

.avis-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: border-color .25s, transform .2s;
}
.avis-card:hover {
  border-color: rgba(245,197,24,0.3);
  transform: translateY(-3px);
}

.stars { color: var(--accent); font-size: 1.1rem; letter-spacing: 2px; }

.avis-card p {
  font-size: 0.92rem;
  color: #ccc;
  line-height: 1.65;
  flex: 1;
  font-style: italic;
}
.avis-card p::before { content: '"'; font-size: 1.5rem; color: var(--accent); line-height: 0; vertical-align: -0.3em; margin-right: 4px; }

.avis-author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.avis-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(245,197,24,0.15);
  border: 1px solid rgba(245,197,24,0.3);
  color: var(--accent);
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
}
.avis-author strong { display: block; font-size: 0.9rem; }
.avis-author span { font-size: 0.8rem; color: var(--muted); }

/* =====================
   FORMS
   ===================== */
.devis {
  padding: 100px 0;
  background: var(--bg2);
}

.devis-form, .contact-form {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 48px;
  max-width: 740px;
  margin: 0 auto;
}

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

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 20px;
}

label {
  font-size: 0.85rem;
  font-weight: 500;
  color: #aaa;
}

input, select, textarea {
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  color: var(--text);
  font-family: inherit;
  font-size: 0.95rem;
  padding: 12px 16px;
  transition: border-color .2s, box-shadow .2s;
  outline: none;
  width: 100%;
}
input::placeholder, textarea::placeholder { color: #555; }
input:focus, select:focus, textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(245,197,24,0.1);
}
select { cursor: pointer; }
select option { background: var(--bg3); }

textarea { resize: vertical; }

.btn-submit {
  width: 100%;
  background: var(--accent);
  color: #000;
  border: none;
  border-radius: var(--radius);
  font-family: inherit;
  font-size: 1rem;
  font-weight: 700;
  padding: 16px;
  cursor: pointer;
  transition: background .2s, transform .15s, box-shadow .2s;
  box-shadow: 0 4px 20px rgba(245,197,24,0.2);
}
.btn-submit:hover {
  background: var(--accent2);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(245,197,24,0.3);
}

.form-success {
  display: none;
  margin-top: 16px;
  background: rgba(0,200,100,0.08);
  border: 1px solid rgba(0,200,100,0.25);
  border-radius: var(--radius);
  padding: 14px 20px;
  color: #4ade80;
  font-size: 0.9rem;
  text-align: center;
}

/* =====================
   CONTACT
   ===================== */
.contact {
  padding: 100px 0;
  background: var(--bg);
}

.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 64px;
  align-items: start;
}

.contact-items {
  display: flex;
  flex-direction: column;
  gap: 28px;
  margin-top: 16px;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}
.contact-icon {
  font-size: 1.4rem;
  width: 48px;
  height: 48px;
  background: rgba(245,197,24,0.1);
  border: 1px solid rgba(245,197,24,0.2);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-item strong {
  display: block;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--muted);
  margin-bottom: 4px;
}
.contact-item a, .contact-item span {
  font-size: 0.95rem;
  color: var(--text);
}
.contact-item a:hover { color: var(--accent); }

.contact-form {
  max-width: 100%;
  margin: 0;
}
.contact-form h3 {
  margin-bottom: 24px;
  font-size: 1.2rem;
}

/* =====================
   FOOTER
   ===================== */
.footer {
  background: #050505;
  border-top: 1px solid var(--border);
  padding-top: 64px;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
}

.footer-brand p {
  margin-top: 12px;
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.6;
}
.footer-brand .logo {
  font-size: 1.5rem;
}

.footer-links, .footer-contact {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.footer-links strong, .footer-contact strong {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--muted);
  margin-bottom: 4px;
}
.footer-links a, .footer-contact a, .footer-contact span {
  font-size: 0.9rem;
  color: #666;
  transition: color .2s;
}
.footer-links a:hover, .footer-contact a:hover { color: var(--accent); }

.footer-social {
  margin-top: 20px;
}
.social-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 16px;
  border: 1px solid var(--border);
  border-radius: 8px;
  color: var(--muted);
  font-size: 0.9rem;
  transition: color .2s, border-color .2s, background .2s;
}
.social-link-insta:hover {
  color: #e1306c;
  border-color: #e1306c;
  background: rgba(225,48,108,0.08);
}
.social-link-fb:hover {
  color: #1877f2;
  border-color: #1877f2;
  background: rgba(24,119,242,0.08);
}

.footer-social {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.contact-icon-insta {
  background: linear-gradient(135deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
  color: #fff !important;
  border-radius: 10px;
}
.contact-icon-fb {
  background: #1877f2;
  color: #fff !important;
  border-radius: 10px;
}

.footer-bottom {
  border-top: 1px solid var(--border);
  padding: 20px 24px;
  text-align: center;
}
.footer-bottom p {
  font-size: 0.82rem;
  color: #444;
}

/* =====================
   REVEAL ANIMATIONS
   ===================== */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity .6s ease, transform .6s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* =====================
   RESPONSIVE
   ===================== */
@media (max-width: 900px) {
  .nav-links { display: none; }
  .burger { display: flex; }

  .contact-inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .footer-inner {
    grid-template-columns: 1fr 1fr;
  }
  .footer-brand {
    grid-column: 1 / -1;
  }
}

@media (max-width: 640px) {
  .form-row { grid-template-columns: 1fr; }

  .devis-form, .contact-form {
    padding: 28px 20px;
  }

  .hero-stats { gap: 20px; }
  .stat-sep { display: none; }

  .footer-inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .tarifs-grid, .services-grid, .gallery-grid, .avis-grid {
    grid-template-columns: 1fr;
  }
}
