/* Contact Page Styles */
body.contact-page {
  background: #f8f9fa !important;
}

.contact-section {
  padding: 100px 0 100px 0;
  background: #fff;
}
.contact-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3rem;
  max-width: 900px;
  margin: 0 auto;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.07);
  padding: 3rem 2rem 3rem 2rem;
}
.contact-info {
  width: 100%;
  max-width: 400px;
  align-self: center;
  text-align: center;
  margin-top: 0;
}
.contact-info address {
  font-style: normal;
  line-height: 1.7;
  color: #333;
  font-size: 1.1rem;
}
.contact-info .contact-label {
  font-weight: bold;
  color: #c0392b;
}
.contact-info a {
  color: #c0392b;
  text-decoration: none;
}
.contact-form-wrapper {
  width: 100%;
  max-width: 800px;
  align-self: center;
  margin-bottom: 0;
  overflow-x: hidden;
}
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.contact-form h3 {
  font-family: "Bellefair", serif;
  color: #c0392b;
  margin-bottom: 0.5rem;
  font-size: 1.5rem;
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.form-group label {
  font-family: "Belleza", sans-serif;
  color: #333;
  font-size: 1rem;
}
.form-group input,
.form-group textarea {
  padding: 0.75rem 1rem;
  border: 1px solid #ddd;
  border-radius: 8px;
  font-size: 1rem;
  font-family: "Belleza", sans-serif;
  background: #f8f9fa;
  color: #333;
  transition: border 0.2s;
}
.form-group input:focus,
.form-group textarea:focus {
  border-color: #c0392b;
  outline: none;
}
.form-status {
  margin-top: 1rem;
  font-size: 1rem;
  color: #fff;
  background: #c0392b;
  padding: 0.75rem 1rem;
  border-radius: 8px;
  text-align: center;
  display: none;
}
.form-status.success {
  background: #27ae60;
}
.contact-form-wrapper iframe {
  width: 100% !important;
  min-width: 0;
  max-width: 100%;
  min-height: 600px;
  height: auto;
  aspect-ratio: 4/3;
  border: none;
  border-radius: 12px;
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.07);
  background: #fff;
  display: block;
  overflow-x: hidden;
}
@media (max-width: 900px) {
  .contact-form-wrapper iframe {
    min-height: 400px;
    aspect-ratio: 1/1;
  }
}
@media (max-width: 600px) {
  .contact-form-wrapper iframe {
    min-height: 320px;
    aspect-ratio: 1/1.2;
  }
}
html,
body {
  overflow-x: hidden;
}
