/* Reset and base styles */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
.section-contact {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  background: linear-gradient(135deg, #1e1e2f, #2c2c3e);
  color: #fff;
  align-items: center;
  justify-content: center;
}
/* Glassmorphism container */
.contact-container {
  background: rgba(230, 190, 59, 0.05);
  backdrop-filter: blur(20px);
  border-radius: 15px;
  padding: 40px;
  margin-left: 10%;
  width: 80%;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.37);
  align-items: center;
}

/* Form styles */
.contact-form h2 {
  text-align: center;
  margin-bottom: 20px;
  color: #ffffff;
}

.form-group {
  margin-bottom: 20px;
  position: relative;
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  color: #ffffff;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 12px 15px;
  border: none;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.1);
  color: #ffffff;
  font-size: 16px;
  transition: background 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
  background: rgba(255, 255, 255, 0.2);
  outline: none;
}

/* Button styles */
button[type="submit"] {
  width: 100%;
  padding: 12px;
  border: none;
  border-radius: 8px;
  background-color: #a2ac4e;
  color: #ffffff;
  font-size: 16px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

button[type="submit"]:hover {
  background-color: #45a049;
}

/* Form message */
.form-message {
  margin-top: 15px;
  text-align: center;
  font-size: 14px;
}

/* Office info styling */
.office-info {
  margin: 10px;
}
.office-info .officeHeader h3 {
  margin: 10px;
  font-size: 2rem;
  justify-items: center;
  color: #a2ac4e;
}
.office-info address {
  font-style: normal; /* default is italic; override if desired */
  line-height: 1.5;
  margin-bottom: 1rem;
}

/* Responsive map container (16:9 ratio) */
.map-responsive {
  position: relative;
  overflow: hidden;
  /* 16:9 aspect ratio (9/16 = 0.5625 = 56.25%) */
  padding-bottom: 56.25%;
  height: 0;
}
.map-responsive iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/* Note text (optional styling) */
.office-info .note {
  font-size: 0.9rem;
  color: #555;
}
