/* Contact Section */
.contact-container {
  display: flex;
  flex-wrap: wrap;
  gap: 3rem;
  padding: 4rem 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.contact-info, .contact-form {
  flex: 1;
  min-width: 320px;
  background-color: white;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  opacity: 0;
  animation: fadeInUp 0.8s ease-out forwards;
  animation-delay: calc(var(--order) * 0.15s);
}

.contact-info:hover, .contact-form:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.contact-info h2, .contact-form h2 {
  font-size: 2rem;
  font-weight: 700;
  color: #0B2545;
  margin-top: 0;
  margin-bottom: 2rem;
  padding-bottom: 0.5rem;
  border-bottom: 3px solid #F97316;
  display: inline-block;
}

.contact-method {
  display: flex;
  align-items: flex-start;
  margin-bottom: 2rem;
}

.contact-icon {
  font-size: 1.5rem;
  color: #1E3A8A;
  margin-right: 1.5rem;
  width: 40px;
  text-align: center;
}

.contact-details h3 {
  font-size: 1.1rem;
  font-weight: 600;
  margin: 0 0 0.25rem 0;
}

.contact-details p {
  margin: 0;
  color: #4B5563;
}

.contact-details a {
  color: #1E3A8A;
  text-decoration: none;
  transition: color 0.3s;
}

.contact-details a:hover {
  color: #F97316;
}

/* Form Styles */
.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.form-control {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid #D1D5DB;
  border-radius: 8px;
  font-size: 1rem;
  transition: border-color 0.3s, box-shadow 0.3s;
}

.form-control:focus {
  outline: none;
  border-color: #1E3A8A;
  box-shadow: 0 0 0 3px rgba(30, 58, 138, 0.2);
}

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

.submit-btn {
  display: block;
  width: 100%;
  padding: 0.8rem 2rem;
  background-color: #F97316;
  color: white;
  border: none;
  border-radius: 8px;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: background-color 0.3s, transform 0.3s;
}

.submit-btn:hover {
  background-color: #EA580C;
  transform: translateY(-2px);
}

/* Map Section */
.map-container {
  padding: 4rem 2rem;
  background-color: #F3F4F6;
  text-align: center;
}

.map-container h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: #0B2545;
  margin-bottom: 2rem;
}

.map-wrapper {
  max-width: 1200px;
  margin: 0 auto;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.map-wrapper iframe {
  width: 100%;
  height: 450px;
  border: 0;
}

/* Responsive Styles */
@media (max-width: 768px) {
  .contact-container, .map-container {
    padding: 3rem 1rem;
  }

  .contact-info h2, .contact-form h2, .map-container h2 {
    font-size: 1.75rem;
  }
}