/* Additional styles for KarriereMentor website */

/* Service request form */
.service-request-form {
  background-color: #fff;
  border-radius: 10px;
  padding: 2rem;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  margin-top: 2rem;
}

.service-request-form h3 {
  margin-bottom: 1.5rem;
}

/* Thank you page styles */
.thank-you-section {
  text-align: center;
  padding: 5rem 0;
}

.thank-you-icon {
  font-size: 4rem;
  color: #10b981;
  margin-bottom: 2rem;
}

.thank-you-title {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
}

.thank-you-message {
  font-size: 1.125rem;
  color: #64748b;
  max-width: 700px;
  margin: 0 auto 2rem;
}

/* Legal pages styles */
.legal-content {
  background-color: #fff;
  border-radius: 10px;
  padding: 3rem;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  margin: 2rem 0;
}

.legal-content h1 {
  margin-bottom: 2rem;
}

.legal-content h2 {
  margin-top: 2.5rem;
  margin-bottom: 1.5rem;
  font-size: 1.5rem;
}

.legal-content p {
  margin-bottom: 1.5rem;
}

.legal-content ul, 
.legal-content ol {
  margin-bottom: 1.5rem;
  padding-left: 2rem;
}

.legal-content li {
  margin-bottom: 0.5rem;
}

.legal-content a {
  color: #2563eb;
  text-decoration: underline;
}

.legal-content a:hover {
  color: #1e40af;
}

/* Error message styles */
.error-message {
  background-color: #fee2e2;
  color: #b91c1c;
  padding: 1rem;
  border-radius: 6px;
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
}

.error-message i {
  margin-right: 0.75rem;
  font-size: 1.25rem;
}

/* Success message styles */
.success-message {
  background-color: #d1fae5;
  color: #065f46;
  padding: 1rem;
  border-radius: 6px;
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
}

.success-message i {
  margin-right: 0.75rem;
  font-size: 1.25rem;
}

/* Service form specific styles */
.service-form {
  background-color: #fff;
  border-radius: 10px;
  padding: 2rem;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}

.service-form h3 {
  margin-bottom: 1.5rem;
}

.service-selection {
  margin-bottom: 1.5rem;
}

.service-selection label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 500;
}

.service-selection select {
  width: 100%;
  padding: 0.75rem;
  border: 1px solid #e2e8f0;
  border-radius: 6px;
  font-family: inherit;
  font-size: 1rem;
  background-color: #fff;
  transition: border-color 0.3s ease;
}

.service-selection select:focus {
  outline: none;
  border-color: #2563eb;
}

/* Enhanced mobile navigation */
@media (max-width: 768px) {
  .mobile-menu-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 4px;
    transition: background-color 0.3s ease;
  }
  
  .mobile-menu-btn:hover {
    background-color: #f0f9ff;
  }
  
  .mobile-menu-btn.active {
    background-color: #e0f2fe;
  }
  
  .mobile-menu-btn.active i::before {
    content: "\f00d"; /* Change to X icon when active */
  }
}

/* Print styles */
@media print {
  header, footer, .btn, .mobile-menu-btn {
    display: none !important;
  }
  
  body {
    background-color: #fff;
    color: #000;
  }
  
  .container {
    width: 100%;
    max-width: none;
    padding: 0;
  }
  
  section {
    padding: 1rem 0;
    page-break-inside: avoid;
  }
  
  a {
    color: #000;
    text-decoration: none;
  }
  
  .gradient-text {
    color: #000;
    background: none;
  }
}
