.hero-section {
  background: var(--primary);
  color: var(--white);
  padding: 4rem 0;
  position: relative;
}

.hero-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.062), rgba(212, 175, 55, 0.06));
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 600px;
}

.hero-title {
  font-size: 3rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1rem;
}

.hero-description {
  font-size: 1.125rem;
  color: #cbd5e1;
}


.contact-container {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 40px;
    padding: 50px 20px;
    max-width: 1200px;
    margin: auto;
}

/* Bloc gauche */
.contact-form {
    flex: 1;
    background: #fff;
    padding: 25px;
    border-radius: 12px;
    border: 1px solid #ddd;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}

.contact-form h2 {
    margin-bottom: 20px;
    font-size: 24px;
    color: #333;
}

.contact-form label {
    font-weight: bold;
    margin-bottom: 5px;
    display: block;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    padding: 12px;
    margin-bottom: 15px;
    border-radius: 6px;
    border: 1px solid #ccc;
    font-size: 14px;
    background: #fdfdfd;
}

.contact-form button {
    background: #d4af37;
    color: white;
    padding: 12px;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    cursor: pointer;
    transition: 0.3s;
}

.contact-form button:hover {
    background: #d4af37;
}

/* Bloc droit */
.contact-info {
    flex: 1.2;
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.info-section {
    background: transparent;
}

.info-section h3 {
    font-size: 20px;
    color: #333;
    margin-bottom: 10px;
}

.info-section p {
    margin: 6px 0;
    font-size: 15px;
    color: #555;
    display: flex;
    align-items: center;
}

.info-section i {
    color: #d4af37;
    margin-right: 8px;
    
}

.map {
    width: 100%;
    height: 400px;
    border-radius: 12px;
    overflow: hidden;
}


.submit i{
    display:block;
    width:100%;
    height: 100%;
}


/* Responsive */
@media (max-width: 900px) {
    .contact-container {
        flex-direction: column;
    }
    .contact-info {
        flex: none;
    }
    }