.contact-section {
  max-width: 800px;
  margin: 120px auto;
  padding: 50px;
  background: #111; 
  color: #f5f5f5;
  border-radius: 16px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.6);
  text-align: center;
  font-family: 'Poppins', sans-serif;
}

.contact-section h1 {
  font-size: 2.5rem;
  margin-bottom: 15px;
  font-weight: 700;
  color: #ff9800; /* accent orange */
}

.contact-section p {
  font-size: 1.1rem;
  margin-bottom: 30px;
  color: #ccc;
}

/* Form Styling */
.contact-section form {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.contact-section input,
.contact-section textarea {
  width: 100%;
  padding: 14px 18px;
  border: 1px solid #333;
  border-radius: 10px;
  background: #1a1a1a;
  color: #f5f5f5;
  font-size: 1rem;
  transition: all 0.3s ease;
  resize: none;
}

.contact-section input:focus,
.contact-section textarea:focus {
  border-color: #ff9800;
  outline: none;
  box-shadow: 0 0 8px rgba(255,152,0,0.6);
}

/* Button */
.contact-section .btn {
  background: #ff9800;
  color: #111;
  border: none;
  padding: 14px 20px;
  border-radius: 10px;
  font-size: 1.1rem;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.3s ease;
}

.contact-section .btn:hover {
  background: #e68900;
  transform: translateY(-2px);
}

/* ================== RESPONSIVE ================== */
@media (max-width: 768px) {
  .contact-section {
    margin: 80px 20px;
    padding: 30px;
  }

  .contact-section h1 {
    font-size: 2rem;
  }
}
