/* ============================================================
   APROPOS-DE-NOUS.CSS - Page À propos
   Version : V2.0 - Glass Ready
   ============================================================ */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Inter', -apple-system, system-ui, sans-serif;
}

body {
  background: var(--bg-primary, #0a0a0f);
  color: var(--text-primary, #e0e0e0);
  line-height: 1.7;
  padding: 20px;
  min-height: 100vh;
}

/* ── Header ── */
header {
  text-align: center;
  margin-bottom: 40px;
  padding: 40px 20px 20px;
}

header h1 {
  font-size: clamp(2.2rem, 5vw, 3.2rem);
  background: linear-gradient(135deg, #6cf2c2, #4cc9f0, #9b5de5, #f15bb5);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

header .subtitle {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.5);
  margin-top: 8px;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}

/* ── Cards ── */
.card {
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.04);
  border-radius: var(--radius-lg, 24px);
  padding: 28px 32px;
  margin-bottom: 24px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
  transition: var(--transition-base, 0.3s ease);
  opacity: 0;
  transform: translateY(30px);
}

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

.card:hover {
  transform: translateY(-4px);
  border-color: rgba(139, 92, 246, 0.08);
  box-shadow: 0 12px 48px rgba(0, 0, 0, 0.3);
}

.card h2 {
  margin-bottom: 12px;
  font-size: 1.5rem;
  font-weight: 700;
  background: linear-gradient(135deg, #6cf2c2, #4cc9f0, #9b5de5);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.card p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.95rem;
  line-height: 1.8;
}

.card ul {
  margin: 10px 0 14px 20px;
  list-style: none;
}

.card ul li {
  position: relative;
  padding-left: 24px;
  margin-bottom: 6px;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9rem;
}

.card ul li::before {
  content: "✦";
  position: absolute;
  left: 0;
  color: var(--neon-cyan, #06b6d4);
  font-size: 0.8rem;
}

blockquote {
  margin: 12px 0 8px 20px;
  padding: 12px 20px;
  border-left: 3px solid rgba(139, 92, 246, 0.2);
  font-style: italic;
  color: rgba(255, 255, 255, 0.5);
  background: rgba(255, 255, 255, 0.02);
  border-radius: var(--radius-sm, 8px);
}

/* ── Footer contact ── */
.footer-contact {
  text-align: center;
  padding: 32px 24px;
  max-width: 600px;
  margin: 40px auto;
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.04);
  border-radius: var(--radius-lg, 24px);
}

.footer-contact h2 {
  font-size: 1.4rem;
  margin-bottom: 8px;
  background: linear-gradient(135deg, #6cf2c2, #4cc9f0, #9b5de5);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.footer-contact p {
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.9rem;
}

.footer-contact-icons {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-top: 16px;
}

.footer-contact-icons a {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-md, 16px);
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.04);
  color: rgba(255, 255, 255, 0.4);
  font-size: 20px;
  transition: var(--transition-base, 0.3s ease);
  text-decoration: none;
}

.footer-contact-icons a:hover {
  color: var(--neon-cyan, #06b6d4);
  background: rgba(6, 182, 212, 0.05);
  border-color: rgba(6, 182, 212, 0.1);
  transform: translateY(-2px);
}

/* ── Chat button ── */
.chat-btn {
  display: inline-block;
  margin-top: 12px;
  padding: 10px 24px;
  border-radius: 50px;
  background: linear-gradient(135deg, #6cf2c2, #2ecc71);
  color: #0a0a0f;
  font-weight: 700;
  text-decoration: none;
  transition: var(--transition-base, 0.3s ease);
}

.chat-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(46, 204, 113, 0.2);
}

/* ── Social ── */
.social-btn-outside {
  display: flex;
  justify-content: center;
  margin: 16px 0 30px;
  font-size: 28px;
  color: rgba(255, 255, 255, 0.2);
  transition: var(--transition-base, 0.3s ease);
}

.social-btn-outside:hover {
  color: #fff;
  transform: scale(1.1);
}

/* ── Footer ── */
footer {
  text-align: center;
  padding: 20px;
  color: rgba(255, 255, 255, 0.2);
  font-size: 0.85rem;
}

/* ── Responsive ── */
@media (max-width: 600px) {
  .card {
    padding: 20px;
    border-radius: var(--radius-md, 16px);
  }

  .card h2 {
    font-size: 1.2rem;
  }

  .footer-contact {
    padding: 24px 16px;
  }

  .footer-contact-icons a {
    width: 40px;
    height: 40px;
    font-size: 16px;
  }
}