/* Contact Section */
.contact-section {
  padding: 80px 0;
}

.contact-grid {
  display: grid;
  gap: 48px;
  grid-template-columns: repeat(2, 1fr);
}

/* Contact Info */
.contact-info h2 {
  font-size: 1.875rem;
  margin-bottom: 24px;
  color: #141f40;
}

.contact-info p {
  margin-bottom: 0;
  color: #141f40;
  font-size: 16px;
  line-height: 24px;
}

.contact-details {
  margin-top: 32px;
  margin-bottom: 48px;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 24px;
}

.contact-icon {
  color: #3b82f6;
  font-size: 1.5rem;
  margin-top: 4px;
  flex-shrink: 0;
}

.contact-item h3 {
  font-size: 16px;
  font-weight: 600;
  line-height: 24px;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
  margin-bottom: 4px;
}

.company-details {
  margin-top: 24px;
}

.company-details h3 {
  font-size: 16px;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
  font-weight: 600;
  margin-bottom: 8px;
}

/* Social Links */
.social-links {
  margin-top: 48px;
}

.social-links h3 {
  font-size: 16px;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
  font-weight: 600;
  margin-bottom: 16px;
}

.social-icons {
  display: flex;
  gap: 16px;
}

.social-icon {
  background-color: #f5f7fa;
  padding: 12px;
  border-radius: 9999px;
  transition: all 0.3s ease;
}

.social-icon:hover {
  background-color: #3b82f6;
  color: white;
}

/* Contact Form */
.contact-form-container {
  background-color: #f5f7fa;
  padding: 32px;
  border-radius: 16px;
}

.contact-form-container h2 {
  font-family: "Fredoka One", sans-serif;
  font-size: 1.5rem;
  margin-bottom: 24px;
  color: #141f40;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.form-group label {
  display: block;
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: 8px;
  color: #141f40;
}

.form-control {
  width: 100%;
  padding: 8px 16px;
  border-radius: 8px;
  border: 1px solid #d1d5db;
  outline: none;
  height: 42px;
}

.form-control:focus {
  border-color: #3b82f6;
  box-shadow: 0 0 0 2px rgba(59, 130, 246, 0.5);
}

textarea.form-control {
  min-height: 150px;
  resize: vertical;
}

.submit-btn {
  background-color: #ff4136;
  color: white;
  padding: 16px 32px;
  border-radius: 9999px;
  display: inline-flex;
  align-items: center;
  font-size: 16px;
  gap: 8px;
  border: none;
  cursor: pointer;
  font-weight: 600;
  transition: all 0.3s ease;
  max-width: max-content;
}

.submit-btn:hover {
  background-color: rgba(255, 65, 54, 0.9);
  transform: scale(1.05);
}
