/* Section */
.contact-section {
  padding: 60px 20px;
  background: #f9fafc;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  color: #333;
}

.contact-container {
  max-width: 1200px;
  margin: auto;
}

.contact-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  background: #fff;
  padding: 40px;
  border-radius: 12px;
  box-shadow: 0px 4px 15px rgba(0,0,0,0.1);
}

/* Left - Form */
.contact-form {
  flex: 1 1 55%;
}

.contact-form h2 {
  margin-bottom: 10px;
  color: #004d4d;
}

.contact-form p {
  margin-bottom: 25px;
  color: #555;
}

.contact-form form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.form-row {
  display: flex;
  gap: 15px;
}

.form-row input,
.form-row select {
  flex: 1;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid #ddd;
  border-radius: 8px;
  font-size: 14px;
  transition: all 0.2s;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: #004d4d;
  outline: none;
  box-shadow: 0 0 6px rgba(0, 77, 77, 0.2);
}

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

.btn-submit {
  padding: 14px;
  background: #004d4d;
  border: none;
  color: #fff;
  font-size: 16px;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.3s;
}

.btn-submit:hover {
  background: #007373;
}

/* Right - Contact Info */
.contact-info {
  flex: 1 1 35%;
  background: #f1f8f8;
  padding: 30px;
  border-radius: 12px;
}

.contact-info h2 {
  margin-bottom: 15px;
  color: #004d4d;
}

.contact-info p {
  margin-bottom: 12px;
  line-height: 1.6;
  color: #444;
}

/* Success Modal */
.success-modal {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.5);
  justify-content: center;
  align-items: center;
}

.success-modal-content {
  background: #fff;
  padding: 25px 35px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0px 4px 12px rgba(0,0,0,0.2);
}

.success-modal-content p {
  margin-bottom: 20px;
  font-size: 16px;
  color: #333;
}

.success-modal-content button {
  padding: 10px 20px;
  border: none;
  background: #28a745;
  color: white;
  border-radius: 6px;
  cursor: pointer;
  transition: background 0.3s;
}

.success-modal-content button:hover {
  background: #218838;
}

/* Responsive */
@media (max-width: 768px) {
  .contact-wrapper {
    flex-direction: column;
    padding: 25px;
  }

  .form-row {
    flex-direction: column;
  }
}
.map-container {
  margin-top: 20px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0px 4px 10px rgba(0,0,0,0.15);
}

.map-container iframe {
  width: 100%;
  height: 250px;
  border: none;
  display: block;
}