/* Contact/CTA Section Styles */
.contact-section {
  background: linear-gradient(120deg, #181818 60%, #232526 100%);
  padding: 4rem 2rem 3rem 2rem;
  text-align: center;
  color: #fff;
}
.contact-section h2 {
  font-size: 2rem;
  margin-bottom: 1.2rem;
  color: #ff4d4f;
}
.contact-section p {
  font-size: 1.1rem;
  margin-bottom: 2rem;
}
.contact-btn {
  background: #ff4d4f;
  color: #fff;
  border: none;
  padding: 1rem 2.5rem;
  font-size: 1.1rem;
  border-radius: 8px;
  cursor: pointer;
  font-weight: bold;
  box-shadow: 0 4px 16px rgba(255,77,79,0.15);
  transition: background 0.2s, transform 0.18s;
}
.contact-btn:hover {
  background: #e13c3e;
  transform: translateY(-2px) scale(1.04);
}
