/* ========================================
   PAGE CONTACT - Style unifié
   ======================================== */

/* ========================================
   SECTION URGENCE
   ======================================== */

.section-urgence {
  padding: 60px 0;
}

.urgence-banner-full {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  background: linear-gradient(135deg, rgba(95, 191, 171, 0.2) 0%, rgba(95, 191, 171, 0.1) 100%);
  border: 1px solid rgba(95, 191, 171, 0.3);
  border-radius: 20px;
  padding: 32px 48px;
}

.urgence-icon {
  width: 60px;
  height: 60px;
  background: rgba(95, 191, 171, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #5FBFAB;
  flex-shrink: 0;
}

.urgence-text {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.urgence-label {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #5FBFAB;
}

.urgence-phone {
  font-family: var(--font-body);
  font-size: 28px;
  font-weight: 600;
  color: #ffffff;
  text-decoration: none;
  transition: color 0.3s ease;
}

.urgence-phone:hover {
  color: #5FBFAB;
}

/* ========================================
   SECTION CONTACT FULL
   ======================================== */

.section-contact-full {
  padding: 40px 0 100px;
}

.contact-full-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

/* Info contact */
.contact-info-full {
  padding-right: 40px;
}

.contact-info-title {
  font-family: var(--font-body);
  font-size: 28px;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 32px;
}

.contact-cards {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 40px;
}

.contact-card-item {
  display: flex;
  align-items: center;
  gap: 16px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 16px;
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
}

.contact-card-item:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(95, 191, 171, 0.3);
}

.contact-card-icon {
  width: 48px;
  height: 48px;
  background: rgba(95, 191, 171, 0.15);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #5FBFAB;
  flex-shrink: 0;
}

.contact-card-content {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.contact-card-label {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
}

.contact-card-value {
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 500;
  color: #ffffff;
  text-decoration: none;
  transition: color 0.3s ease;
}

a.contact-card-value:hover {
  color: #5FBFAB;
}

/* Garanties */
.garanties-block {
  background: rgba(255, 255, 255, 0.03);
  border-radius: 16px;
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.garanties-title {
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 600;
  color: #5FBFAB;
  margin-bottom: 16px;
}

.garanties-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.garanties-list li {
  font-family: var(--font-body);
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
  padding-left: 20px;
  position: relative;
}

.garanties-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #5FBFAB;
  font-weight: bold;
}

/* Formulaire */
.contact-form-full {
  background: rgba(255, 255, 255, 0.03);
  border-radius: 20px;
  padding: 40px;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.contact-form-title {
  font-family: var(--font-body);
  font-size: 24px;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 32px;
}

.form-note {
  font-family: var(--font-body);
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 24px;
}

.form-note a {
  color: #5FBFAB;
  text-decoration: underline;
}

.form-note a:hover {
  text-decoration: none;
}

/* ========================================
   RESPONSIVE
   ======================================== */

@media (max-width: 1023px) {
  .section-urgence {
    padding: 40px 0;
  }

  .urgence-banner-full {
    padding: 24px 32px;
    gap: 20px;
  }

  .urgence-phone {
    font-size: 24px;
  }

  .section-contact-full {
    padding: 20px 0 80px;
  }

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

  .contact-info-full {
    padding-right: 0;
  }

  .garanties-list {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 767px) {
  .section-urgence {
    padding: 32px 0;
  }

  .urgence-banner-full {
    flex-direction: column;
    padding: 24px;
    text-align: center;
  }

  .urgence-phone {
    font-size: 22px;
  }

  .section-contact-full {
    padding: 16px 0 60px;
  }

  .contact-info-title,
  .contact-form-title {
    font-size: 22px;
  }

  .contact-card-item {
    padding: 16px;
  }

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

  .form-row {
    grid-template-columns: 1fr;
  }
}
