/* ========================================
    HERO VERSION 1 - CINÉMATIQUE SOMBRE
    ======================================== */
.hero-1 {
  min-height: 100vh;
  background: var(--black);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 80px 5%;
}
.hero-1::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("/wp-content/themes/suki-child/assets/upload/heros/accueil/1.jpg")
    no-repeat center center/cover;
  opacity: 0.3;
  z-index: 1;
}
.hero-1 .container {
  position: relative;
  z-index: 2;
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: center;
  margin-top: 4rem;
}
.hero-1 .badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  background: var(--white-transparent);
  border: 1px solid var(--gray-light);
  border-radius: 50px;
  color: var(--white);
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 24px;
  animation: fadeInDown 0.8s ease;
}
.hero-1 .badge::before {
  content: "";
  width: 8px;
  height: 8px;
  background: var(--secondary);
  border-radius: 50%;
  animation: pulse 2s infinite;
}
.hero-1 h1 {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 4rem);
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 20px;
  animation: fadeInUp 0.8s ease 0.1s backwards;
}
.hero-1 h1 span {
  color: var(--secondary);
  font-style: italic;
}
.hero-1 .subtitle {
  font-size: 1.2rem;
  color: var(--white);
  margin-bottom: 16px;
  animation: fadeInUp 0.8s ease 0.2s backwards;
}
.hero-1 .description {
  font-size: 1.05rem;
  color: var(--white);
  line-height: 1.7;
  margin-bottom: 32px;
  max-width: 520px;
  animation: fadeInUp 0.8s ease 0.3s backwards;
}
.hero-1 .cta-group {
  display: flex;
  gap: 16px;
  margin-bottom: 48px;
  animation: fadeInUp 0.8s ease 0.4s backwards;
}
.hero-1 .btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 32px;
  background: var(--secondary);
  color: var(--white);
  font-size: 0.95rem;
  font-weight: 700;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
}
.hero-1 .btn-primary:hover {
  background: var(--white);
  color: var(--black);
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(201, 162, 39, 0.3);
}
.hero-1 .btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 32px;
  background: transparent;
  color: var(--white);
  font-size: 0.95rem;
  font-weight: 600;
  text-decoration: none;
  border: 2px solid rgba(255, 255, 255, 0.2);
  cursor: pointer;
  transition: all 0.3s ease;
}
.hero-1 .btn-secondary:hover {
  border-color: var(--secondary);
  color: var(--secondary);
}
.hero-1 .stats {
  display: flex;
  gap: 48px;
  animation: fadeInUp 0.8s ease 0.5s backwards;
}
.hero-1 .stat-value {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--white);
}
.hero-1 .stat-label {
  font-size: 0.9rem;
  color: var(--gray-light);
}
.hero-1 .form-wrapper {
  animation: fadeInRight 1s ease 0.3s backwards;
}
.hero-1 .form-card {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 40px;
}
.hero-1 .form-title {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--white);
  text-align: center;
  margin-bottom: 8px;
}
.hero-1 .form-subtitle {
  font-size: 0.9rem;
  color: var(--gray-light);
  text-align: center;
  margin-bottom: 28px;
}
.hero-1 .form-group {
  margin-bottom: 16px;
}
.hero-1 .form-input,
.hero-1 .form-select,
.hero-1 .form-textarea {
  width: 100%;
  padding: 14px 18px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.95rem;
  transition: all 0.3s ease;
}
.hero-1 .form-input::placeholder,
.hero-1 .form-select::placeholder,
.hero-1 .form-textarea::placeholder {
  color: var(--white);
  opacity: 0.6;
}
.hero-1 .form-input:focus,
.hero-1 .form-select:focus,
.hero-1 .form-textarea:focus {
  outline: none;
  border-color: var(--secondary);
  background: rgba(255, 255, 255, 0.12);
}
.hero-1 .form-select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='%23adb5bd' viewBox='0 0 16 16'%3E%3Cpath d='M8 11L3 6h10l-5 5z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
}
.hero-1 .form-select option {
  background: var(--primary);
  color: var(--white);
}
.hero-1 .form-textarea {
  min-height: 100px;
  resize: vertical;
}
.hero-1 .form-submit {
  width: 100%;
  padding: 16px;
  background: var(--secondary);
  color: var(--white);
  font-size: 1rem;
  font-weight: 700;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.hero-1 .form-submit:hover {
  background: var(--white);
  color: var(--black);
  transform: translateY(-2px);
}
.hero-1 .form-footer {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 16px;
  font-size: 0.8rem;
  color: var(--gray-dark);
}
.hero-1 .form-footer svg {
  width: 14px;
  height: 14px;
  color: var(--secondary);
}
@media (max-width: 1024px) {
  .hero-1 .container {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .hero-1 .description {
    max-width: 100%;
  }
  .hero-1 .cta-group {
    justify-content: center;
    flex-wrap: wrap;
  }
  .hero-1 .stats {
    justify-content: center;
  }
  .hero-1 .form-card {
    max-width: 480px;
    margin: 0 auto;
  }
}
@media (max-width: 640px) {
  .hero-1 {
    padding: 60px 5%;
  }
  .hero-1 .stats {
    flex-direction: column;
    gap: 24px;
  }
  .hero-1 .cta-group {
    flex-direction: column;
  }
  .hero-1 .btn-primary,
  .hero-1 .btn-secondary {
    width: 100%;
    justify-content: center;
  }
}
