/* ═══════════════════════════════════════════
   L'ESPACE REDOUTE — style.css
   Esthétique : Tropical Premium · Dark Gold Green
   ═══════════════════════════════════════════ */

/* ── Variables ── */
:root {
  --bg: #0d1117;
  --surface: #161b22;
  --surface2: #1c2330;
  --border: #2a3441;
  --gold: #f0a500;
  --gold-light: #f7c948;
  --gold-dim: rgba(240, 165, 0, 0.15);
  --green: #00c9a7;
  --green-deep: #1a3020;
  --red: #e05c5c;
  --text: #e6edf3;
  --text-soft: #b0bec5;
  --muted: #7d8590;
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'DM Sans', system-ui, sans-serif;
  --font-mono: 'DM Mono', monospace;
  --radius: 12px;
  --radius-sm: 8px;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ── Reset ── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
button { font-family: var(--font-body); border: none; background: none; cursor: pointer; }
input, select, textarea { font-family: var(--font-body); }

/* ── Typography ── */
h1, h2, h3, h4 { font-family: var(--font-display); line-height: 1.1; letter-spacing: -0.02em; }
em { font-style: italic; color: var(--gold); }
strong { font-weight: 600; color: var(--text); }

/* ── Container ── */
.container { max-width: 1140px; margin: 0 auto; padding: 0 40px; }

/* ══════════════════════════════
   NAVIGATION
══════════════════════════════ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  transition: background var(--transition), backdrop-filter var(--transition), border-bottom var(--transition);
}
.nav.scrolled {
  background: rgba(13, 17, 23, 0.92);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  max-width: 1140px;
  margin: 0 auto;
  padding: 20px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  display: flex;
  align-items: baseline;
  gap: 0;
  font-size: 22px;
  font-weight: 700;
}
.logo-mark {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 26px;
  color: var(--gold);
}
.logo-text {
  font-family: var(--font-display);
  font-size: 22px;
  color: var(--text);
  font-weight: 400;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
  list-style: none;
}
.nav-links a {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-soft);
  transition: color var(--transition);
  letter-spacing: 0.02em;
}
.nav-links a:hover { color: var(--text); }
.nav-cta {
  background: var(--gold) !important;
  color: #000 !important;
  padding: 10px 24px;
  border-radius: 100px;
  font-weight: 600 !important;
  font-size: 13px !important;
  transition: transform var(--transition), box-shadow var(--transition) !important;
}
.nav-cta:hover { transform: translateY(-1px); box-shadow: 0 8px 24px rgba(240,165,0,0.3); }
.nav-burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
  cursor: pointer;
}
.nav-burger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: var(--transition);
}
.nav-mobile {
  display: none;
  flex-direction: column;
  padding: 0 40px 20px;
  gap: 16px;
}
.nav-mobile.open { display: flex; }
.nav-mobile a {
  font-size: 15px;
  font-weight: 500;
  color: var(--text-soft);
  padding: 8px 0;
  border-bottom: 1px solid var(--border);
  transition: color var(--transition);
}
.nav-mobile a:hover { color: var(--gold); }

/* ══════════════════════════════
   HERO
══════════════════════════════ */
.hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 60px;
  padding: 120px 40px 80px;
  max-width: 1140px;
  margin: 0 auto;
  position: relative;
}
.hero-bg {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -1;
}
.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.18;
}
.hero-orb-1 {
  width: 600px; height: 600px;
  background: radial-gradient(circle, var(--gold), transparent);
  top: -100px; right: -100px;
}
.hero-orb-2 {
  width: 400px; height: 400px;
  background: radial-gradient(circle, var(--green), transparent);
  bottom: 100px; left: -100px;
  opacity: 0.12;
}
.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(240,165,0,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(240,165,0,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse at center, black 30%, transparent 80%);
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}
.dot-pulse {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--green);
  animation: dotPulse 2s infinite;
}
@keyframes dotPulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.4; transform: scale(0.8); }
}
.hero-title {
  font-size: clamp(42px, 6vw, 72px);
  font-weight: 900;
  color: var(--text);
  margin-bottom: 24px;
}
.title-accent {
  color: var(--gold);
  font-style: italic;
  position: relative;
}
.title-accent::after {
  content: '';
  position: absolute;
  left: 0; bottom: 4px;
  width: 100%; height: 3px;
  background: linear-gradient(90deg, var(--gold), transparent);
  border-radius: 2px;
}
.hero-desc {
  font-size: 17px;
  color: var(--text-soft);
  line-height: 1.7;
  margin-bottom: 36px;
  font-weight: 300;
}
.hero-actions {
  display: flex;
  gap: 16px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}
.hero-badges {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.badge-item {
  display: flex;
  align-items: center;
  gap: 6px;
  background: var(--surface);
  border: 1px solid var(--border);
  padding: 6px 14px;
  border-radius: 100px;
  font-size: 13px;
  color: var(--text-soft);
  transition: border-color var(--transition);
}
.badge-item:hover { border-color: var(--gold); }
.badge-icon { font-size: 14px; }

/* Hero visual */
.hero-visual { display: flex; justify-content: center; align-items: center; }
.hero-card {
  width: 100%;
  max-width: 520px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 40px 80px rgba(0,0,0,0.4), 0 0 0 1px rgba(240,165,0,0.1);
  transition: transform var(--transition), box-shadow var(--transition);
}
.hero-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 60px 100px rgba(0,0,0,0.5), 0 0 0 1px rgba(240,165,0,0.2);
}
.hero-card-inner { display: flex; flex-direction: column; }
.room-preview { background: #0d1117; overflow: hidden; }
.room-svg-wrap { padding: 0; }
.room-svg { width: 100%; height: auto; display: block; }
.card-stat-row {
  display: flex;
  align-items: center;
  padding: 20px 28px;
  background: var(--surface2);
  border-top: 1px solid var(--border);
}
.card-stat {
  flex: 1;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
}
.stat-num {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 900;
  color: var(--gold);
  line-height: 1;
}
.stat-unit { font-size: 13px; color: var(--muted); font-weight: 400; }
.stat-label { font-size: 11px; color: var(--muted); text-transform: uppercase; letter-spacing: 0.08em; }
.card-stat-divider {
  width: 1px; height: 40px;
  background: var(--border);
}

/* ══════════════════════════════
   TICKER / RUBAN
══════════════════════════════ */
.ticker-wrap {
  overflow: hidden;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--surface);
  padding: 14px 0;
}
.ticker-track {
  display: flex;
  white-space: nowrap;
  animation: ticker 30s linear infinite;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
}
@keyframes ticker {
  from { transform: translateX(0); }
  to { transform: translateX(-33.333%); }
}

/* ══════════════════════════════
   BUTTONS
══════════════════════════════ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 100px;
  font-weight: 600;
  font-size: 15px;
  transition: all var(--transition);
  white-space: nowrap;
}
.btn-primary {
  background: var(--gold);
  color: #000;
  border: 2px solid var(--gold);
}
.btn-primary:hover {
  background: var(--gold-light);
  border-color: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(240,165,0,0.35);
}
.btn-ghost {
  background: transparent;
  color: var(--text);
  border: 2px solid var(--border);
}
.btn-ghost:hover {
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-2px);
}
.btn-outline {
  background: transparent;
  color: var(--gold);
  border: 1.5px solid rgba(240,165,0,0.4);
  padding: 11px 24px;
  font-size: 14px;
  width: 100%;
  justify-content: center;
  margin-top: 20px;
}
.btn-outline:hover {
  background: var(--gold-dim);
  border-color: var(--gold);
  transform: translateY(-1px);
}
.btn-green {
  background: var(--green);
  color: #000;
  border: 2px solid var(--green);
  width: 100%;
  justify-content: center;
  margin-top: 20px;
  font-size: 14px;
  padding: 11px 24px;
}
.btn-green:hover {
  background: #00e0bb;
  border-color: #00e0bb;
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(0,201,167,0.3);
}
.btn-full { width: 100%; justify-content: center; padding: 16px; font-size: 16px; }

/* ══════════════════════════════
   SECTION COMMON
══════════════════════════════ */
.section-head { text-align: center; margin-bottom: 60px; }
.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}
.section-tag::before { content: '—'; opacity: 0.5; }
.section-tag::after { content: '—'; opacity: 0.5; }
.section-title {
  font-size: clamp(36px, 5vw, 52px);
  font-weight: 900;
  margin-bottom: 16px;
}
.section-sub {
  font-size: 17px;
  color: var(--text-soft);
  max-width: 520px;
  margin: 0 auto;
  line-height: 1.7;
}

/* ══════════════════════════════
   SERVICES
══════════════════════════════ */
.services { padding: 100px 0; }
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.service-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 28px;
  position: relative;
  transition: all var(--transition);
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0;
  transition: opacity var(--transition);
}
.service-card:hover {
  border-color: rgba(240,165,0,0.3);
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}
.service-card:hover::before { opacity: 1; }
.service-icon {
  font-size: 32px;
  margin-bottom: 16px;
  display: block;
}
.service-card h3 {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--text);
}
.service-card p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.65;
}
.service-tag {
  position: absolute;
  top: 20px; right: 20px;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  background: var(--gold-dim);
  color: var(--gold);
  border: 1px solid rgba(240,165,0,0.3);
  padding: 3px 8px;
  border-radius: 100px;
}

/* ══════════════════════════════
   ATOUTS
══════════════════════════════ */
.atouts { padding: 100px 0; background: var(--surface); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.atouts-inner {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 40px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.atouts-text h2 { font-size: clamp(36px, 4vw, 52px); font-weight: 900; margin-bottom: 36px; }
.atouts-list { list-style: none; display: flex; flex-direction: column; gap: 4px; }
.atouts-list li {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 18px 0;
  border-bottom: 1px solid var(--border);
  transition: opacity var(--transition);
}
.atouts-list li:last-child { border-bottom: none; }
.atouts-list li:hover { opacity: 0.9; }
.atout-icon {
  font-size: 20px;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gold-dim);
  border-radius: var(--radius-sm);
  flex-shrink: 0;
  border: 1px solid rgba(240,165,0,0.2);
}
.atouts-list strong { display: block; font-size: 15px; font-weight: 600; margin-bottom: 3px; }
.atouts-list p { font-size: 13px; color: var(--muted); }

.atouts-visual { display: flex; justify-content: center; }
.atouts-mockup {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 40px 80px rgba(0,0,0,0.4);
  width: 100%;
  max-width: 420px;
}
.mockup-screen { padding: 0; background: #0d1117; }
.mockup-tag {
  padding: 12px 20px;
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--muted);
  background: var(--surface);
  border-top: 1px solid var(--border);
  text-align: center;
  letter-spacing: 0.08em;
}

/* ══════════════════════════════
   TARIFS
══════════════════════════════ */
.tarifs { padding: 100px 0; }
.tarifs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 32px;
}
.tarif-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: all var(--transition);
}
.tarif-card:hover {
  border-color: rgba(240,165,0,0.3);
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}
.tarif-card.featured {
  border-color: var(--gold);
  background: linear-gradient(135deg, var(--surface), rgba(240,165,0,0.05));
  box-shadow: 0 0 40px rgba(240,165,0,0.1);
}
.tarif-card.featured-green {
  border-color: var(--green);
  background: linear-gradient(135deg, var(--surface), rgba(0,201,167,0.05));
}
.tarif-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gold);
  color: #000;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 4px 12px;
  border-radius: 100px;
  white-space: nowrap;
}
.tarif-badge.green {
  background: var(--green);
}
.tarif-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}
.tarif-icon { font-size: 24px; }
.tarif-name {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
}
.tarif-price {
  display: flex;
  align-items: baseline;
  gap: 4px;
  margin-bottom: 4px;
}
.price-num {
  font-family: var(--font-display);
  font-size: 48px;
  font-weight: 900;
  color: var(--gold);
  line-height: 1;
}
.price-cur {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 700;
  color: var(--gold);
}
.tarif-unit {
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 20px;
}
.tarif-list {
  list-style: none;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.tarif-list li {
  font-size: 13px;
  color: var(--text-soft);
  padding: 8px 0;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: 8px;
}
.tarif-list li:last-child { border-bottom: none; }
.tarif-list li::before { content: '✓'; color: var(--green); font-weight: 700; font-size: 12px; }
.tarifs-note {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px 28px;
  display: flex;
  align-items: flex-start;
  gap: 16px;
  font-size: 14px;
  color: var(--muted);
}
.note-icon { font-size: 20px; flex-shrink: 0; }

/* ══════════════════════════════
   GALERIE
══════════════════════════════ */
.galerie { padding: 100px 0; }
.galerie .container { margin-bottom: 48px; }
.galerie-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto auto;
  gap: 16px;
  padding: 0 40px;
  max-width: 1140px;
  margin: 0 auto;
}
.galerie-item {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  transition: all var(--transition);
  cursor: pointer;
}
.galerie-item:hover { transform: scale(1.01); border-color: rgba(240,165,0,0.4); }
.galerie-item.big {
  grid-column: 1 / 3;
}
.galerie-inner {
  position: relative;
  background: var(--surface);
  height: 100%;
  min-height: 260px;
}
.galerie-label {
  position: absolute;
  bottom: 14px; left: 14px;
  background: rgba(13, 17, 23, 0.85);
  backdrop-filter: blur(8px);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 6px 12px;
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--text-soft);
  letter-spacing: 0.05em;
}

/* ══════════════════════════════
   TÉMOIGNAGES
══════════════════════════════ */
.temoignages {
  padding: 100px 0;
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.temoignages .container { }
.temoignages .section-tag { margin-bottom: 48px; display: block; text-align: center; }
.temo-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.temo-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  transition: all var(--transition);
}
.temo-card:hover {
  border-color: rgba(240,165,0,0.3);
  transform: translateY(-3px);
}
.temo-stars {
  color: var(--gold);
  font-size: 14px;
  margin-bottom: 16px;
  letter-spacing: 2px;
}
.temo-card p {
  font-size: 15px;
  color: var(--text-soft);
  line-height: 1.7;
  font-style: italic;
  margin-bottom: 20px;
  font-family: var(--font-display);
}
.temo-author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.temo-avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--gold-dim);
  border: 1px solid rgba(240,165,0,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 700;
  color: var(--gold);
  flex-shrink: 0;
}
.temo-author strong { font-size: 14px; display: block; margin-bottom: 2px; }
.temo-author span { font-size: 12px; color: var(--muted); }

/* ══════════════════════════════
   FAQ
══════════════════════════════ */
.faq { padding: 100px 0; }
.faq-list { max-width: 720px; margin: 0 auto; }
.faq-item {
  border-bottom: 1px solid var(--border);
}
.faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 0;
  font-size: 16px;
  font-weight: 500;
  color: var(--text);
  cursor: pointer;
  text-align: left;
  gap: 16px;
  transition: color var(--transition);
}
.faq-q:hover { color: var(--gold); }
.faq-arrow {
  font-size: 22px;
  font-weight: 300;
  color: var(--gold);
  flex-shrink: 0;
  transition: transform var(--transition);
  width: 24px;
  text-align: center;
}
.faq-item.open .faq-arrow { transform: rotate(45deg); }
.faq-a {
  overflow: hidden;
  max-height: 0;
  font-size: 15px;
  color: var(--muted);
  line-height: 1.7;
  transition: max-height 0.4s cubic-bezier(0.4,0,0.2,1), padding 0.3s;
  padding: 0;
}
.faq-item.open .faq-a {
  max-height: 300px;
  padding-bottom: 20px;
}

/* ══════════════════════════════
   CONTACT
══════════════════════════════ */
.contact {
  padding: 100px 0;
  background: linear-gradient(135deg, var(--surface) 0%, var(--bg) 100%);
  border-top: 1px solid var(--border);
}
.contact-inner {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 40px;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: start;
}
.contact-info h2 { font-size: clamp(36px, 4vw, 52px); font-weight: 900; margin-bottom: 16px; }
.contact-info > p { font-size: 16px; color: var(--text-soft); margin-bottom: 40px; }
.contact-details { display: flex; flex-direction: column; gap: 24px; }
.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}
.ci-icon {
  font-size: 20px;
  width: 44px; height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gold-dim);
  border: 1px solid rgba(240,165,0,0.2);
  border-radius: var(--radius-sm);
  flex-shrink: 0;
}
.contact-item strong { display: block; font-size: 14px; font-weight: 600; margin-bottom: 4px; }
.contact-item p { font-size: 13px; color: var(--muted); line-height: 1.6; }

/* Form */
.contact-form-wrap {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 40px;
}
.contact-form h3 {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 28px;
  color: var(--text);
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 16px;
}
.form-group label {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--muted);
}
.form-group input,
.form-group select,
.form-group textarea {
  background: var(--bg);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 12px 16px;
  font-size: 15px;
  color: var(--text);
  transition: border-color var(--transition);
  outline: none;
  width: 100%;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(240,165,0,0.1);
}
.form-group select { appearance: none; cursor: pointer; }
.form-group textarea { resize: vertical; min-height: 80px; }
.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--muted);
}
.btn-text, .btn-icon { transition: transform var(--transition); }
.btn-full:hover .btn-icon { transform: translateX(4px); }
.form-success {
  display: none;
  text-align: center;
  padding: 16px;
  background: rgba(0,201,167,0.1);
  border: 1px solid rgba(0,201,167,0.3);
  border-radius: var(--radius-sm);
  color: var(--green);
  font-size: 14px;
  margin-top: 12px;
}

/* ══════════════════════════════
   FOOTER
══════════════════════════════ */
.footer {
  background: #080c10;
  border-top: 1px solid var(--border);
  padding: 60px 0 0;
}
.footer-inner {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 40px 40px;
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 60px;
  border-bottom: 1px solid var(--border);
}
.footer-brand .footer-logo {
  font-size: 28px;
  margin-bottom: 12px;
}
.footer-brand p { font-size: 14px; color: var(--muted); max-width: 320px; line-height: 1.6; }
.footer-links { display: flex; gap: 48px; }
.footer-col { display: flex; flex-direction: column; gap: 12px; }
.footer-col h4 { font-family: var(--font-mono); font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.12em; color: var(--muted); margin-bottom: 4px; }
.footer-col a { font-size: 14px; color: var(--text-soft); transition: color var(--transition); }
.footer-col a:hover { color: var(--gold); }
.footer-bottom {
  max-width: 1140px;
  margin: 0 auto;
  padding: 20px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.footer-bottom p { font-size: 13px; color: var(--muted); }
.footer-socials { display: flex; gap: 12px; }
.social-btn {
  font-size: 13px;
  color: var(--muted);
  background: var(--surface);
  border: 1px solid var(--border);
  padding: 6px 14px;
  border-radius: 100px;
  transition: all var(--transition);
}
.social-btn:hover { color: var(--gold); border-color: var(--gold); }

/* ══════════════════════════════
   REVEAL ANIMATIONS
══════════════════════════════ */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s cubic-bezier(0.4,0,0.2,1), transform 0.7s cubic-bezier(0.4,0,0.2,1);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }
.delay-5 { transition-delay: 0.5s; }

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

@media (max-width: 900px) {
  .hero { grid-template-columns: 1fr; gap: 48px; padding-top: 100px; text-align: center; }
  .hero-eyebrow, .hero-actions, .hero-badges { justify-content: center; }
  .hero-visual { order: -1; }
  .atouts-inner { grid-template-columns: 1fr; gap: 48px; }
  .contact-inner { grid-template-columns: 1fr; gap: 48px; }
  .temo-grid { grid-template-columns: 1fr; }
  .galerie-grid { grid-template-columns: 1fr; padding: 0 20px; }
  .galerie-item.big { grid-column: 1; }
  .footer-inner { grid-template-columns: 1fr; gap: 40px; }
}

@media (max-width: 768px) {
  .container { padding: 0 20px; }
  .nav-inner { padding: 16px 20px; }
  .nav-links { display: none; }
  .nav-burger { display: flex; }
  .services-grid { grid-template-columns: 1fr; }
  .tarifs-grid { grid-template-columns: 1fr; }
  .temo-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .contact-form-wrap { padding: 24px 20px; }
  .footer-links { flex-direction: column; gap: 32px; }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
  .hero-title { font-size: 40px; }
  .atouts-inner { padding: 0 20px; }
  .contact-inner { padding: 0 20px; }
  .footer-inner { padding: 0 20px 32px; }
}

@media (max-width: 480px) {
  .hero { padding: 90px 20px 60px; }
  .hero-title { font-size: 34px; }
  .hero-actions { flex-direction: column; }
  .btn { padding: 12px 22px; }
}
