/* ==================================== Modern Contact Page Styles ==================================== */

.contact-page-modern {
  max-width: 900px;
  margin: 0 auto;
  padding: 3rem 1.5rem;
  background: linear-gradient(180deg, #f8f9ff 0%, #ffffff 100%);
  min-height: 100vh;
}

/* Header */
.contact-header {
  margin-bottom: 3rem;
}

.contact-title {
  font-size: 3rem;
  font-weight: 800;
  color: #1a1a2e;
  margin-bottom: 1rem;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.contact-subtitle {
  font-size: 1.25rem;
  color: #6b7280;
  font-weight: 400;
}

/* Form Wrapper */
.contact-form-wrapper {
  background: white;
  border-radius: 24px;
  padding: 3rem;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
  border: 1px solid #e5e7eb;
}

/* Form Styles */
.contact-form-modern {
  max-width: 100%;
}

.form-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}

.form-group-modern {
  margin-bottom: 2rem;
}

.form-label-modern {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1rem;
  font-weight: 600;
  color: #374151;
  margin-bottom: 0.75rem;
}

.form-label-modern i {
  color: #6366f1;
  font-size: 1.1rem;
}

.form-input-modern,
.form-textarea-modern {
  width: 100%;
  padding: 1rem 1.25rem;
  font-size: 1rem;
  color: #1a1a2e;
  background: #f9fafb;
  border: 2px solid #e5e7eb;
  border-radius: 12px;
  transition: all 0.3s ease;
  font-family: inherit;
}

.form-input-modern:focus,
.form-textarea-modern:focus {
  outline: none;
  background: white;
  border-color: #6366f1;
  box-shadow: 0 0 0 4px rgba(99, 102, 241, 0.1);
}

.form-textarea-modern {
  resize: vertical;
  min-height: 180px;
  line-height: 1.6;
}

/* Error Messages */
.contact-errors {
  margin-bottom: 2rem;
}

.contact-alert {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 1.25rem;
  background: #fef2f2;
  border: 2px solid #fecaca;
  border-radius: 12px;
  color: #991b1b;
  margin-bottom: 1rem;
}

.contact-alert i {
  font-size: 1.25rem;
  flex-shrink: 0;
}

/* Submit Button */
.form-actions {
  margin-top: 2.5rem;
  display: flex;
  justify-content: flex-start;
}

.btn-contact-submit {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 2.5rem;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  border: none;
  border-radius: 12px;
  font-weight: 700;
  font-size: 1.1rem;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
  transition: all 0.3s ease;
}

.btn-contact-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(102, 126, 234, 0.4);
}

.btn-contact-submit:active {
  transform: translateY(0);
}

.btn-contact-submit i {
  transition: transform 0.3s ease;
}

.btn-contact-submit:hover i {
  transform: translateX(4px);
}

/* Contact Info Section */
.contact-info-section {
  margin-top: 3rem;
  padding-top: 3rem;
  border-top: 2px solid #e5e7eb;
}

.contact-info-card {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding: 1.5rem;
  background: linear-gradient(135deg, #f8f9ff 0%, #ffffff 100%);
  border-radius: 16px;
  border: 2px solid #e5e7eb;
  transition: all 0.3s ease;
}

.contact-info-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
  border-color: #6366f1;
}

.contact-info-icon {
  flex-shrink: 0;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #f0f4ff 0%, #e0e7ff 100%);
  border-radius: 12px;
}

.contact-info-icon i {
  font-size: 1.5rem;
  color: #6366f1;
}

.contact-info-content {
  flex: 1;
}

.contact-info-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: #1a1a2e;
  margin-bottom: 0.25rem;
}

.contact-info-text {
  font-size: 1rem;
  color: #6b7280;
  margin: 0;
}

/* Responsive */
@media (max-width: 768px) {
  .contact-page-modern {
    padding: 2rem 1rem;
  }

  .contact-title {
    font-size: 2.25rem;
  }

  .contact-subtitle {
    font-size: 1.1rem;
  }

  .contact-form-wrapper {
    padding: 2rem 1.5rem;
  }

  .form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .btn-contact-submit {
    width: 100%;
    justify-content: center;
  }

  .contact-info-card {
    flex-direction: column;
    text-align: center;
  }
}



