/* Styles spécifiques à la page Contact */

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

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

/* Formulaire de contact */
.contact-form {
  background: white;
  padding: 40px;
  border-radius: 15px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.contact-form h2 {
  font-size: 28px;
  margin-bottom: 30px;
  color: var(--secondary-dark);
}

.form-group {
  margin-bottom: 25px;
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 600;
  color: var(--secondary-dark);
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 15px;
  border: 2px solid var(--bg-light);
  border-radius: 8px;
  font-size: 16px;
  font-family: inherit;
  transition: all 0.3s;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(200, 16, 46, 0.1);
}

.form-group textarea {
  resize: vertical;
  min-height: 150px;
}

/* Checkboxes de prestations - VERSION SIMPLE */
.prestations-checkboxes {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}

.checkbox-option {
  display: block;
  cursor: pointer;
  position: relative;
}

.checkbox-option input[type="checkbox"] {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}

.checkbox-label {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 24px;
  padding-left: 50px;
  background: var(--bg-light);
  border: 2px solid var(--bg-light);
  border-radius: 10px;
  transition: all 0.3s ease;
  font-size: 15px;
  color: var(--text);
  font-weight: 500;
  position: relative;
}

/* Case à cocher */
.checkbox-label::before {
  content: '';
  position: absolute;
  left: 20px;
  width: 20px;
  height: 20px;
  border: 2px solid #ddd;
  border-radius: 4px;
  background: white;
  transition: all 0.3s ease;
}

.checkbox-option:hover .checkbox-label {
  background: white;
  border-color: var(--primary);
  transform: translateX(5px);
}

.checkbox-option:hover .checkbox-label::before {
  border-color: var(--primary);
}

/* État coché */
.checkbox-option input[type="checkbox"]:checked + .checkbox-label {
  background: white;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(200, 16, 46, 0.1);
}

.checkbox-option input[type="checkbox"]:checked + .checkbox-label::before {
  background: var(--primary);
  border-color: var(--primary);
  content: '✓';
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: bold;
  font-size: 14px;
}

.form-note {
  font-size: 14px;
  color: var(--text-light);
  margin-bottom: 20px;
  padding: 15px;
  background: var(--bg-light);
  border-radius: 8px;
  border-left: 3px solid var(--primary);
}

.submit-btn {
  width: 100%;
  padding: 15px;
  background: var(--primary);
  color: white;
  border: none;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s;
}

.submit-btn:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(200, 16, 46, 0.3);
}

.success-message {
  background: #d4edda;
  color: #155724;
  padding: 15px;
  border-radius: 8px;
  margin-bottom: 20px;
  border: 1px solid #c3e6cb;
  display: none;
}

.success-message.show {
  display: block;
}

/* Informations de contact */
.contact-info-box {
  background: white;
  padding: 40px;
  border-radius: 15px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.contact-info-box h2 {
  font-size: 28px;
  margin-bottom: 30px;
  color: var(--secondary-dark);
}

.info-item {
  display: flex;
  gap: 20px;
  margin-bottom: 25px;
  padding: 20px;
  background: var(--bg-light);
  border-radius: 10px;
  transition: all 0.3s;
}

.info-item:hover {
  background: #e8f4f8;
  transform: translateX(5px);
}

.info-icon {
  width: 50px;
  height: 50px;
  background: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 24px;
  flex-shrink: 0;
}

.info-text strong {
  display: block;
  margin-bottom: 5px;
  color: var(--secondary-dark);
  font-size: 16px;
}

.info-text a {
  color: var(--primary);
  text-decoration: none;
}

.info-text a:hover {
  text-decoration: underline;
}

.highlight-section {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  color: white;
  padding: 40px;
  border-radius: 15px;
  margin-top: 30px;
  text-align: center;
}

.highlight-section h3 {
  font-size: 24px;
  margin-bottom: 15px;
}

.highlight-section p {
  font-size: 16px;
  opacity: 0.95;
  line-height: 1.8;
}

/* Section carte */
.map-section {
  padding: 60px 0;
  background: var(--bg-light);
}

.map-section h2 {
  text-align: center;
  font-size: 36px;
  margin-bottom: 40px;
  color: var(--secondary-dark);
}

.map-container {
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0,0,0,0.1);
  height: 450px;
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: none;
}

/* Responsive */
@media (max-width: 968px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }
}