/* Zendesk Email-to-Ticket Contact Form Styles */

.zendesk-email-contact {
  width: 100%;
  max-width: 600px;
  margin: 40px auto;
  padding: 0 20px;
}

.contact-card {
  background: #f8f9fa;
  border-radius: 8px;
  padding: 50px 40px;
  text-align: center;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.contact-card h3 {
  margin: 0 0 20px 0;
  font-size: 24px;
  font-weight: 600;
  color: #1a1a1a;
}

.contact-description {
  margin: 0 0 30px 0;
  font-size: 16px;
  line-height: 1.6;
  color: #4a4a4a;
  max-width: 450px;
  margin-left: auto;
  margin-right: auto;
}

.contact-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 32px;
  background: #000000;
  color: white !important;
  text-decoration: none;
  border-radius: 6px;
  font-size: 16px;
  font-weight: 600;
  transition: all 0.3s ease;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.contact-button:link,
.contact-button:visited,
.contact-button:hover,
.contact-button:active {
  color: white !important;
}

.contact-button:hover {
  background: #333333;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
  transform: translateY(-1px);
}

.contact-button:active {
  transform: translateY(0);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.email-icon {
  flex-shrink: 0;
}

.contact-note {
  margin: 20px 0 0 0;
  font-size: 14px;
  color: #666;
  font-style: italic;
}

/* Responsive adjustments */
@media (max-width: 640px) {
  .contact-card {
    padding: 40px 30px;
  }
  
  .contact-card h3 {
    font-size: 20px;
  }
  
  .contact-description {
    font-size: 15px;
  }
  
  .contact-button {
    padding: 14px 28px;
    font-size: 15px;
  }
}

@media (max-width: 480px) {
  .zendesk-email-contact {
    padding: 0 15px;
  }
  
  .contact-card {
    padding: 30px 20px;
  }
}
