/* Contact Section */
.contact-header {
    background: linear-gradient(rgba(26, 61, 122, 0.8), rgba(26, 61, 122, 0.8)), 
                url('https://images.unsplash.com/photo-1560472354-b33ff0c44a43?ixlib=rb-4.0.3&auto=format&fit=crop&w=2070&q=80');
    background-size: cover;
    background-position: center;
    padding: 8rem 0 4rem;
    text-align: center;
    color: white;
}
.contact-header {
  text-align: center;
  margin-bottom: 40px;
}

.contact-header h1 {
  font-size: 36px;
  color: #d3dfd8;
  margin-bottom: 10px;
}

.contact-header p {
  font-size: 16px;
  color: #ece5e5;
  
}

.contact-book {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: center;
  padding: 0 20px 60px 20px;
}

.map-container {
  flex: 1 1 400px;
  min-width: 300px;
  height: 500px;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

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

.form-container {
  flex: 1 1 400px;
  min-width: 300px;
  background: #fff;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

.field {
  margin-bottom: 20px;
}

.field label {
  display: block;
  font-weight: bold;
  margin-bottom: 8px;
  color: #333;
}

.field input,
.field textarea {
  width: 100%;
  padding: 12px 15px;
  border-radius: 8px;
  border: 1px solid #ccc;
  font-size: 14px;
  outline: none;
  transition: all 0.3s ease;
}

.field input:focus,
.field textarea:focus {
  border-color: #292060;
  box-shadow: 0 0 5px rgba(46,139,87,0.3);
}

textarea {
  resize: vertical;
  min-height: 120px;
}

#button {
  background-color: #32267b;
  color: #fff;
  padding: 12px 25px;
  border: none;
  border-radius: 8px;
  font-size: 16px;
  cursor: pointer;
  transition: background 0.3s ease;
}

#button:hover {
  background-color: #246b45;
}

/* Responsive */
@media (max-width: 900px) {
  .contact-book {
    flex-direction: column;
    gap: 30px;
  }
}
