/* Contact Page Specific Styles */

/* Ensure consistent font family */
body {
  font-family: 'Poppins', sans-serif;
}

/* Form input styling */
.form-input {
  border: 1px solid #d1d5db;
  border-radius: 0.5rem;
  padding: 0.75rem 1rem;
  width: 100%;
  transition: all 0.2s ease-in-out;
}
iframe{
  width: 100%;
}
.form-input:focus {
  outline: none;
  border-color: #019cdc;
  box-shadow: 0 0 0 3px rgba(1, 156, 220, 0.1);
}

/* Form label styling */
.form-label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 500;
  color: #374151;
}

/* Button styling */
.submit-button {
  background-color: #019cdc;
  color: white;
  font-weight: 600;
  padding: 1rem 1.5rem;
  border-radius: 0.5rem;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  width: 100%;
}

.submit-button:hover {
  background-color: #0077D1;
  transform: translateY(-2px);
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.submit-button:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(1, 156, 220, 0.3);
}

/* Contact info card styling */
.contact-card {
  background: white;
  border-radius: 1rem;
  padding: 2rem;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

/* Map container styling */
.map-container {
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

/* Social media icons */
.social-icon {
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  background-color: #dbeafe;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #019cdc;
  transition: all 0.3s ease;
}

.social-icon:hover {
  background-color: #019cdc;
  color: white;
  transform: translateY(-3px);
}

/* Responsive adjustments */
@media (max-width: 1024px) {
  .contact-section {
    flex-direction: column;
  }
  
  .contact-info, .contact-form {
    width: 100%;
  }
}

/* Focus states for accessibility */
.form-input:focus, .submit-button:focus {
  outline: 2px solid transparent;
  outline-offset: 2px;
}