/* ============================
   MXBZH - CONTACT & FOOTER
   ============================ */

/* ============================
   CONTACT SECTION - BLEU NUIT
   ============================ */

.contact-section {
  background: linear-gradient(145deg, 
    rgba(15, 23, 42, 0.98) 0%, 
    rgba(25, 35, 55, 0.97) 50%,
    rgba(15, 23, 42, 0.98) 100%);
  padding: 6rem 0;
  position: relative;
  overflow: hidden;
}

/* Effet de brillance subtil */
.contact-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 0.03) 50%, transparent 100%);
  animation: contactShimmer 10s infinite;
  pointer-events: none;
  z-index: 0;
}

/* Lueur bleue subtile en haut */
.contact-section::after {
  content: '';
  position: absolute;
  top: -50%;
  left: 50%;
  transform: translateX(-50%);
  width: 80%;
  height: 100px;
  background: radial-gradient(ellipse, rgba(59, 130, 246, 0.1) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

@keyframes contactShimmer {
  0% { left: -100%; }
  50% { left: 100%; }
  100% { left: 100%; }
}

.contact-header {
  margin-bottom: 3rem;
  position: relative;
  z-index: 1;
}

.contact-title {
  font-family: 'Sora', sans-serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: #ffffff;
  letter-spacing: -0.02em;
  margin: 0 0 1rem;
}

.contact-subtitle {
  font-family: 'Sora', sans-serif;
  background: linear-gradient(135deg, #60a5fa 0%, #a78bfa 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-size: 1rem;
  max-width: 400px;
  line-height: 1.6;
  font-weight: 500;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
  position: relative;
  z-index: 1;
}

.contact-form {
  display: grid;
  gap: 1rem;
}

.contact-input-group {
  /* Pas de bordure, les champs ont leurs propres bordures */
}

.contact-input-group label {
  font-family: 'Sora', sans-serif;
  display: block;
  font-size: 0.85rem;
  font-weight: 500;
  color: #e2e8f0;
  margin-bottom: 0.5rem;
}

.contact-form input,
.contact-form textarea {
  font-family: 'Sora', sans-serif;
  width: 100%;
  background: rgba(30, 41, 59, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 14px 16px;
  color: #f1f5f9;
  font-size: 0.95rem;
  transition: all 0.25s ease;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  font-family: 'Sora', sans-serif;
  color: #64748b;
}

.contact-form input:hover,
.contact-form textarea:hover {
  border-color: rgba(255, 255, 255, 0.15);
  background: rgba(30, 41, 59, 0.8);
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: #3b82f6;
  background: rgba(30, 41, 59, 0.8);
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.2);
}

.contact-form textarea {
  resize: vertical;
  min-height: 100px;
}

.contact-btn-dark {
  font-family: 'Sora', sans-serif;
  margin-top: 2rem;
  padding: 1rem 2rem;
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.95) 0%,
    rgba(255, 255, 255, 0.80) 50%,
    rgba(255, 255, 255, 0.90) 100%
  );
  color: #0f172a;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 12px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  width: 100%;
  box-shadow: 
    0 8px 32px rgba(255, 255, 255, 0.15),
    0 4px 16px rgba(0, 0, 0, 0.1),
    inset 0 2px 0 rgba(255, 255, 255, 1),
    inset 0 -2px 4px rgba(0, 0, 0, 0.05);
  position: relative;
  overflow: hidden;
}

/* Effet de brillance liquide */
.contact-btn-dark::before {
  content: '';
  position: absolute;
  top: 0;
  left: -150%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(255, 255, 255, 0.4) 50%,
    transparent 100%
  );
  transition: left 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  transform: skewX(-20deg);
}

.contact-btn-dark:hover::before {
  left: 150%;
}

/* Reflet en haut du bouton */
.contact-btn-dark::after {
  content: '';
  position: absolute;
  top: 0;
  left: 10%;
  right: 10%;
  height: 50%;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.8) 0%,
    rgba(255, 255, 255, 0) 100%
  );
  border-radius: 12px 12px 50% 50%;
  pointer-events: none;
  opacity: 0.5;
}

.contact-btn-dark:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 
    0 12px 40px rgba(255, 255, 255, 0.25),
    0 8px 24px rgba(0, 0, 0, 0.15),
    inset 0 2px 0 rgba(255, 255, 255, 1),
    inset 0 -2px 4px rgba(0, 0, 0, 0.05);
}

.contact-btn-dark:active {
  transform: translateY(-1px) scale(0.98);
}

.contact-info {
  padding-top: 1rem;
}

.contact-info-block {
  margin-bottom: 2rem;
}

.contact-info-block h4 {
  font-family: 'Sora', sans-serif;
  color: #ffffff;
  font-size: 1rem;
  font-weight: 500;
  margin: 0 0 0.5rem;
}

.contact-info-block p {
  font-family: 'Sora', sans-serif;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.95rem;
  margin: 0;
  line-height: 1.5;
}

.contact-socials {
  display: flex;
  gap: 1rem;
  margin-top: 2rem;
}

.contact-social-link {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.6);
  background: rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  transition: all 0.3s ease;
}

.contact-social-link:hover {
  color: #ffffff;
  background: rgba(59, 130, 246, 0.3);
  transform: translateY(-2px);
}

.contact-social-link svg {
  width: 20px;
  height: 20px;
}

.contact-section .form-status {
  display: none;
}

/* ============================
   FOOTER - BLEU NUIT
   ============================ */

.footer {
  padding: 2.8rem 0;
  background: linear-gradient(145deg, 
    rgba(15, 23, 42, 0.98) 0%, 
    rgba(20, 30, 50, 0.97) 100%);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-flex {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: center;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.7rem;
}
