/* Contact Section Styles */

.contact-section {
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #2c3e50 0%, #1a252f 100%);
  padding: 4rem 1.5rem;
}

.contact-content {
  text-align: center;
  max-width: 600px;
}

.contact-title {
  font-family: var(--hero-font, system-ui);
  font-size: clamp(2rem, 5vw, 3rem);
  color: #ffffff;
  margin-bottom: 1rem;
  font-weight: 700;
}

.contact-subtitle {
  font-size: 1.1rem;
  color: var(--hero-text-muted, rgba(255, 255, 255, 0.78));
  margin-bottom: 2rem;
  line-height: 1.6;
}

.contact-button {
  display: inline-block;
  padding: 1rem 2.5rem;
  background: var(--hero-accent, #00ff66);
  color: #1a252f;
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  border-radius: 4px;
  transition: all 0.3s ease;
}

.contact-button:hover {
  background: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}
