/* Professional Contact Section */
.contact-professional {
  padding: 5rem 0;
  background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
  position: relative;
}

.contact-header-section {
  text-align: center;
  margin-bottom: 4rem;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.contact-main-title {
  font-size: 3rem;
  font-weight: 800;
  color: #1e293b;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.contact-main-subtitle {
  font-size: 1.25rem;
  color: #374151;
  line-height: 1.6;
  margin-bottom: 0;
}

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

@media (min-width: 1024px) {
  .contact-content-grid {
    grid-template-columns: 1fr 1.2fr;
    gap: 4rem;
  }
}

/* Contact Info Panel */
.contact-info-panel {
  background: white;
  border-radius: 16px;
  padding: 2.5rem;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  border: 1px solid #e2e8f0;
  height: fit-content;
}

.info-panel-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 2rem;
  text-align: left;
}

.info-items {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}

.info-item-clean {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 0;
  border-bottom: 1px solid #f1f5f9;
}

.info-item-clean:last-child {
  border-bottom: none;
}

.info-icon-clean {
  width: 48px;
  height: 48px;
  background: #0ea5e9;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.info-icon-clean svg {
  width: 24px;
  height: 24px;
  color: white;
}

.info-details h4 {
  font-size: 1rem;
  font-weight: 600;
  color: #1e293b;
  margin: 0 0 0.25rem 0;
}

.info-details p {
  font-size: 0.95rem;
  color: #374151;
  margin: 0;
  word-break: break-word;
}

/* Contact CTA Section */
.contact-cta-section {
  padding-top: 2rem;
  border-top: 1px solid #e2e8f0;
}

.contact-cta-section h4 {
  font-size: 1.25rem;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 1rem;
}

.benefits-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.benefits-list li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.5rem 0;
  font-size: 0.95rem;
  color: #475569;
}

.benefits-list li::before {
  content: "✓";
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  background: #0ea5e9;
  color: white;
  border-radius: 50%;
  font-size: 12px;
  font-weight: 600;
  flex-shrink: 0;
}

/* Form Panel */
.contact-form-panel {
  background: white;
  border-radius: 16px;
  padding: 2.5rem;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  border: 1px solid #e2e8f0;
}

.form-container-clean {
  width: 100%;
}

.form-title-clean {
  font-size: 1.75rem;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 0.5rem;
  text-align: left;
}

.form-subtitle-clean {
  color: #374151;
  margin-bottom: 2rem;
  font-size: 1rem;
  text-align: left;
}

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

.form-row-clean {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

@media (max-width: 640px) {
  .form-row-clean {
    grid-template-columns: 1fr;
  }
}

.form-group-clean {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.form-group-clean label {
  font-weight: 600;
  color: #374151;
  font-size: 0.9rem;
}

.form-input-clean {
  padding: 0.75rem 1rem;
  border: 2px solid #e2e8f0;
  border-radius: 8px;
  font-size: 1rem;
  transition: all 0.2s ease;
  background: white;
  color: #1e293b;
}

.form-input-clean:focus {
  outline: none;
  border-color: #0ea5e9;
  box-shadow: 0 0 0 3px rgba(14, 165, 233, 0.1);
}

.form-input-clean::placeholder {
  color: #4b5563;
}

.btn-professional {
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.875rem 2rem !important;
  background: #0ea5e9 !important;
  color: white !important;
  border: none;
  border-radius: 8px !important;
  font-size: 1rem !important;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
  text-decoration: none;
  margin-top: 0.5rem;
  width: auto !important;
}

.btn-professional:hover:not(:disabled) {
  background: #0284c7 !important;
  transform: translateY(-1px) !important;
  box-shadow: 0 4px 12px rgba(14, 165, 233, 0.4) !important;
}

.btn-professional:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
  .contact-professional {
    padding: 3rem 0;
  }
  
  .contact-main-title {
    font-size: 2.25rem;
  }
  
  .contact-main-subtitle {
    font-size: 1.1rem;
  }
  
  .contact-header-section {
    margin-bottom: 2.5rem;
  }
  
  .contact-info-panel,
  .contact-form-panel {
    padding: 2rem;
  }
  
  .contact-content-grid {
    gap: 2rem;
  }
}

@media (max-width: 480px) {
  .contact-info-panel,
  .contact-form-panel {
    padding: 1.5rem;
  }
  
  .contact-main-title {
    font-size: 2rem;
  }
  
  .info-details p {
    font-size: 0.9rem;
    word-break: break-all;
  }
}