.contact-area {
  max-width: 1000px;
  padding-left: 20px;
  padding-right: 20px;
  margin: 20px auto 0;
}

.contact-form-section {
  justify-content: center;
  max-width: 600px;
  width: 95%; /* Increased from 90% for more mobile room */
  margin: 50px auto; 
  /* Responsive Padding: smaller on mobile, larger on desktop */
  padding: 40px 60px; 
  background: rgba(0, 0, 0, 0.6);
  border-left: 5px solid orange;
  border-bottom: 5px solid orange;

  /* Use relative values (like % or smaller px) for the clip-path */
  clip-path: polygon(
    30px 0, 
    100% 0, 
    100% calc(100% - 30px), 
    calc(100% - 30px) 100%, 
    0 100%, 
    0 30px
  );
  
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 0.6s ease forwards;
  box-sizing: border-box; /* Ensures padding doesn't add to width */
}


.contact-form-section h1 {
  font-family: "Nulshock", sans-serif;
  text-align: center;
  color: #ffffff;
  font-size: 32px;
  margin-bottom: 25px;
  text-shadow: 0 0 8px orange;
  position: relative;
}

.contact-form-section h1::after {
  content: "";
  display: block;
  width: 95%; /* change this */
  height: 2px;
  margin: 15px auto 25px;
  background: linear-gradient(90deg, orange, #ff00e1, orange);
  box-shadow: 0 0 10px orange, 0 0 10px #ff00e1;
}




.contact-form label {
  font-size: 14px;
  color: #aaa;
  margin-top: 15px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 12px 16px;
  margin-top: 5px;
  margin-bottom: 20px;
  background: rgba(0, 0, 0, 0.5);
  border: 2px solid orange;
  color: #fff;
  font-size: 16px;
  box-shadow: inset 0 0 10px rgba(255, 0, 234, 0.2);
  transition: 0.3s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: #ff00e1;
  box-shadow: 0 0 10px #ff00e1, inset 0 0 10px #ff00e1;
  background: rgba(0, 10, 20, 0.7);
}

/* Cyber Button */
.cyber-btn {
  font-family: "BebasNeue", sans-serif;
  display: inline-block;
  width: 100%;
  padding: 14px 20px;
  background: linear-gradient(90deg, #ff00e1, orange, #ff00e1);
  background-size: 400% 100%;
  color: white;
  font-size: 30px;
  border: none;
  cursor: pointer;
  letter-spacing: 5px;
  animation: flowNeon 5s linear infinite;
  text-transform: uppercase;
  text-shadow: 0 0 5px orange;
  box-shadow: 0 0 15px black;
  transition: 0.3s ease;
  border-radius: 5px;
}

.cyber-btn:hover {
  filter: brightness(1.1);
  box-shadow: 0 0 15px white, 0 0 20px #ff00e1;
  transform: translateY(-2px);
}


.urgent-box {
  text-align: center;
  color: #fff;
  font-size: 18px;
}


/* Fix for the email box getting cut off */
.email-highlight {
  margin: 20px auto;
  padding: 10px 15px;
  display: inline-block;
  max-width: 100%; /* Prevents it from pushing past the container */
  word-wrap: break-word; /* Breaks the email string if it's too long */
  border: 2px solid orange;
  border-radius: 4px;
  background: rgba(0, 0, 0, 0.7);
  font-size: 1.1rem; /* Scalable font size */
  transition: 0.3s ease;
}

/* Desktop specific adjustment */
@media (min-width: 768px) {
  .contact-form-section {
    padding: 40px 60px; /* Returns to your original spacious look on big screens */
    clip-path: polygon(50px 0, 100% 0, 100% calc(100% - 50px), calc(100% - 50px) 100%, 0 100%, 0 50px);
  }
}

.email-highlight:hover {
  box-shadow: 0 0 20px white, 0 0 25px #ff00e1;
  transform: translateY(-2px);
}
