/* Contact Section Styles */
.contact-section {
  padding: 5rem 0;
  background: #1a2e1a;
  color: #fff;
}
.contact-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}
.contact-header {
  text-align: center;
  margin-bottom: 4rem;
  animation: fade-in 1.2s cubic-bezier(0.23, 1, 0.32, 1) both;
}
.contact-title {
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  font-weight: bold;
  margin-bottom: 1.5rem;
}
@media (min-width: 768px) {
  .contact-title { font-size: 3rem; }
}
.contact-title-underline {
  width: 6rem;
  height: 5px;
  background: #eab308;
  margin: 0 auto 2rem auto;
  border-radius: 2px;
}
.contact-lead {
  font-family: 'Poppins', sans-serif;
  font-size: 1.25rem;
  color: #e5e7eb;
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.6;
}
.contact-content {
  display: flex;
  flex-direction: column;
  gap: 3rem;
  align-items: stretch;
}
@media (min-width: 1000px) {
  .contact-content {
    flex-direction: row;
    gap: 4rem;
    align-items: flex-start;
  }
}
.contact-form-wrapper, .contact-info-wrapper {
  flex: 1 1 0;
  min-width: 320px;
  animation: fade-in 1.2s 0.2s cubic-bezier(0.23, 1, 0.32, 1) both;
}
.contact-form-title, .contact-info-title {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
}
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.contact-form-row {
  display: flex;
  gap: 1.5rem;
  flex-direction: column;
}
@media (min-width: 700px) {
  .contact-form-row {
    flex-direction: row;
  }
}
.contact-form-group {
  flex: 1 1 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.contact-form-group label {
  font-family: 'Poppins', sans-serif;
  font-weight: 500;
  margin-bottom: 0.2rem;
}
.contact-form-group input,
.contact-form-group textarea {
  width: 100%;
  padding: 0.9rem 1.2rem;
  background: #2d3a2e;
  border: 1px solid #374151;
  border-radius: 0.7rem;
  color: #fff;
  font-family: 'Poppins', sans-serif;
  font-size: 1rem;
  transition: border 0.3s, box-shadow 0.3s;
  outline: none;
  resize: none;
}
.contact-form-group input:focus,
.contact-form-group textarea:focus {
  border: 1.5px solid #eab308;
  box-shadow: 0 0 0 2px #eab30833;
}
.contact-btn {
  background: #eab308;
  color: #fff;
  padding: 0.9rem 2.5rem;
  border-radius: 999px;
  font-family: 'Poppins', sans-serif;
  font-weight: 500;
  font-size: 1.1rem;
  border: none;
  cursor: pointer;
  transition: background 0.3s, transform 0.3s;
  margin-top: 0.5rem;
}
.contact-btn:hover {
  background: #ca8a04;
  transform: scale(1.05);
}
.contact-toast {
  display: none;
  margin-top: 1.5rem;
  background: #2d3a2e;
  color: #eab308;
  padding: 1rem 1.5rem;
  border-radius: 0.7rem;
  font-family: 'Poppins', sans-serif;
  font-size: 1.1rem;
  align-items: center;
  gap: 0.5rem;
}
.contact-toast i {
  margin-right: 0.5rem;
}
.contact-info-list {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 1.2rem;
}
.contact-info-icon {
  width: 3rem;
  height: 3rem;
  background: #eab308;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  flex-shrink: 0;
  margin-top: 0.2rem;
}
.contact-info-item h4 {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 1.1rem;
  margin-bottom: 0.2rem;
  color: #fff;
}
.contact-info-item p {
  font-family: 'Poppins', sans-serif;
  color: #e5e7eb;
  font-size: 1rem;
  margin-bottom: 0.2rem;
}
.contact-whatsapp-link {
  background: none;
  border: none;
  color: #eab308;
  font-family: 'Poppins', sans-serif;
  font-size: 1rem;
  text-decoration: underline;
  cursor: pointer;
  padding: 0;
  margin-top: 0.2rem;
  transition: color 0.2s;
}
.contact-whatsapp-link:hover {
  color: #ca8a04;
}
/* Animations */
@keyframes fade-in {
  from { opacity: 0; transform: translateY(40px); }
  to { opacity: 1; transform: none; }
}
/* Responsive */
@media (max-width: 700px) {
  .contact-content {
    flex-direction: column;
    gap: 2rem;
  }
  .contact-form-title, .contact-info-title {
    font-size: 1.3rem;
  }
}
