body {
  font-family: 'Poppins', sans-serif;
  margin: 0;

  background-image: url('assets/img/bgcontact.jpg'); 
  background-size: cover;         
  background-position: center;   
  background-repeat: no-repeat;   
  background-attachment: fixed;   

  color: #000;
}

body::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.75); 
  z-index: -1;
}

.contact-section {
  padding: 60px 60px;
}

.contact-container {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 50px;
}

h2 {
  font-family: 'Playfair Display', serif;
  font-size: 30px;
  text-align: center;
  margin-bottom: 25px;
}

.contact-form, .contact-map {
  flex: 1;
  min-width: 320px;
}

form label {
  display: block;
  margin-bottom: 5px;
  font-weight: 500;
}

form input, form textarea {
  width: 100%;
  padding: 10px 15px;
  border: 1.5px solid #ccc;
  border-radius: 10px;
  font-family: 'Poppins', sans-serif;
  margin-bottom: 15px;
  outline: none;
}

.form-row {
  display: flex;
  gap: 15px;
}

form button {
  background-color: #063c25;
  color: white;
  border: none;
  padding: 10px 25px;
  border-radius: 10px;
  cursor: pointer;
  font-family: 'Poppins', sans-serif;
  font-weight: 500;
}

form button:hover {
  background-color: #0b5c38;
}

.map-box {
  text-align: center;
  margin-bottom: 15px;
}

.address {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: #063c25;
  text-align: left;
  margin-left: 20px;
}

.pin-icon {
  width: 25px;
  height: auto;
  margin-top: 3px;
}
