/* Contact Page Styles */
.contact-section {
  padding: 120px 0 80px;
  background: #f8fafc;
}

.contact-header {
  text-align: center;
  margin-bottom: 4rem;
}

.contact-header h2 {
  font-size: 2.5rem;
  color: #1f2937;
  margin-bottom: 1rem;
  font-weight: 800;
}

.contact-header p {
  font-size: 1.2rem;
  color: #6b7280;
  font-weight: 500;
}

.contact-content {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 4rem;
  max-width: 1200px;
  margin: 0 auto;
}

.contact-form-container {
  background: white;
  padding: 3rem;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.form-group {
  display: flex;
  flex-direction: column;
}

.form-group label {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 8px;
  font-weight: 700;
  color: #1f2937;
  font-size: 0.9rem;
}

.form-group label i {
  color: #2563eb;
  width: 16px;
}

.form-group input,
.form-group textarea {
  padding: 12px 16px;
  border: 2px solid #e5e7eb;
  border-radius: 10px;
  font-size: 1rem;
  font-family: "Nunito", sans-serif;
  transition: border-color 0.3s;
  background: #f9fafb;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #2563eb;
  background: white;
}

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

.submit-btn {
  background: #2563eb;
  color: white;
  border: none;
  padding: 16px 24px;
  border-radius: 10px;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: "Nunito", sans-serif;
}

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

.submit-btn:disabled {
  opacity: 0.7;
  cursor: not-allowed;
  transform: none;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.info-card {
  background: white;
  padding: 2rem;
  border-radius: 15px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  display: flex;
  align-items: center;
  gap: 1rem;
}

.info-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #2563eb, #1d4ed8);
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.5rem;
  flex-shrink: 0;
}

.info-content h4 {
  font-size: 1.1rem;
  font-weight: 800;
  color: #1f2937;
  margin-bottom: 0.5rem;
}

.info-content p {
  color: #6b7280;
  font-weight: 500;
  line-height: 1.4;
}

.alert {
  padding: 1rem 1.5rem;
  border-radius: 10px;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
}

.alert-success {
  background: #dcfce7;
  color: #16a34a;
  border: 1px solid #bbf7d0;
}

.alert-error {
  background: #fef2f2;
  color: #dc2626;
  border: 1px solid #fecaca;
}

/* Categories List Page Styles */
.categories-list-section {
  padding: 120px 0 80px;
  background: #f8fafc;
}

.categories-header {
  text-align: center;
  margin-bottom: 3rem;
}

.categories-header h2 {
  font-size: 2.5rem;
  color: #1f2937;
  margin-bottom: 1rem;
  font-weight: 800;
}

.categories-header p {
  font-size: 1.2rem;
  color: #6b7280;
  font-weight: 500;
}

.search-categories {
  max-width: 600px;
  margin: 0 auto 3rem;
}

.search-box-categories {
  background: white;
  border: 2px solid #e5e7eb;
  border-radius: 15px;
  padding: 16px 20px;
  display: flex;
  align-items: center;
  gap: 15px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.search-box-categories i {
  color: #2563eb;
  font-size: 1.2rem;
}

.search-box-categories input {
  border: none;
  outline: none;
  flex: 1;
  font-size: 1rem;
  font-family: "Nunito", sans-serif;
  font-weight: 600;
  color: #1f2937;
}

.search-box-categories input::placeholder {
  color: #9ca3af;
}

.categories-list-container {
  max-width: 800px;
  margin: 0 auto;
}

.categories-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.category-item {
  background: white;
  padding: 1.5rem 2rem;
  border-radius: 15px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  transition: all 0.3s;
  border: 2px solid transparent;
}

.category-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
  border-color: #2563eb;
}

.category-name h3 {
  font-size: 1.3rem;
  font-weight: 800;
  color: #1f2937;
  margin: 0;
}

.category-stats {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.professional-count {
  display: flex;
  align-items: center;
  gap: 8px;
  background: #f3f4f6;
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: 700;
  color: #374151;
}

.professional-count i {
  color: #2563eb;
}

.category-item .fas.fa-chevron-right {
  color: #9ca3af;
  font-size: 1rem;
}

/* Responsive for Contact and Categories */
@media (max-width: 768px) {
  .contact-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .contact-form-container {
    padding: 2rem;
  }

  .category-item {
    padding: 1rem 1.5rem;
  }

  .category-name h3 {
    font-size: 1.1rem;
  }

  .category-stats {
    flex-direction: column;
    gap: 0.5rem;
    align-items: flex-end;
  }
}
