/* Contact Sales Form Styles */
body {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

main {
  flex: 1 0 auto;
}

.form-wrapper {
  max-width: 680px;
  margin: 0 auto;
  padding: 60px 0;
}

.form-header {
  text-align: center;
  margin-bottom: 48px;
}

.form-header h1 {
  font-size: 36px;
  font-weight: 700;
  margin: 0 0 12px;
  color: var(--text);
}

.form-header p {
  font-size: 18px;
  color: var(--muted);
  margin: 0;
}

.sales-form {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 40px;
  margin-bottom: 40px;
}

.form-group {
  margin-bottom: 24px;
}

.form-group label {
  display: block;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--text);
  font-size: 14px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: var(--background);
  color: var(--text);
  font-size: 16px;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(25, 195, 125, 0.1);
}

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

.checkbox-group {
  display: flex;
  align-items: flex-start;
  margin-bottom: 32px;
}

.checkbox-label {
  display: flex;
  align-items: center;
  cursor: pointer;
  font-weight: 400;
  font-size: 14px;
  color: var(--muted);
}

.checkbox-label input[type="checkbox"] {
  width: auto;
  margin-right: 12px;
  accent-color: var(--accent);
}

.btn-full {
  width: 100%;
  padding: 14px 24px;
  font-size: 16px;
  font-weight: 600;
}

.contact-info {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 32px;
}

.contact-info h3 {
  font-size: 20px;
  font-weight: 600;
  margin: 0 0 24px;
  color: var(--text);
}

.contact-methods {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 24px;
}

.contact-method h4 {
  font-size: 14px;
  font-weight: 600;
  margin: 0 0 8px;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.contact-method a {
  color: var(--accent);
  text-decoration: none;
  font-weight: 500;
}

.contact-method a:hover {
  text-decoration: underline;
}

.contact-method p {
  margin: 0;
  color: var(--text);
  line-height: 1.5;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .form-wrapper {
    padding: 40px 0;
  }
  
  .sales-form {
    padding: 24px;
  }
  
  .contact-methods {
    grid-template-columns: 1fr;
  }
  
  .form-header h1 {
    font-size: 28px;
  }
  
  .form-header p {
    font-size: 16px;
  }
}

/* Dark mode adjustments */
body.theme-light .sales-form,
body.theme-light .contact-info {
  background: #ffffff;
  border-color: rgba(0, 0, 0, 0.08);
}

body.theme-light .form-group input,
body.theme-light .form-group select,
body.theme-light .form-group textarea {
  background: #ffffff;
  border-color: rgba(0, 0, 0, 0.12);
}

body.theme-light .form-group input:focus,
body.theme-light .form-group select:focus,
body.theme-light .form-group textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(25, 195, 125, 0.1);
}