
/* CONTACT PAGE SPECIFIC */

* { box-sizing: border-box; }
body {
  margin: 0;
  font-family: 'Poppins', sans-serif;
  background: #05050A;
  color: white;
}

.contact-hero {
  height: 45vh;
  min-height: 320px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;

  background:
    radial-gradient(circle at 50% 60%, rgba(255,47,214,0.25), transparent 55%),
    radial-gradient(circle at 30% 30%, rgba(124,58,237,0.22), transparent 50%),
    linear-gradient(to bottom, #05050A, #0B0B15);
  overflow: hidden;
}

.contact-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 55%, #05050A 95%);
  pointer-events: none;
}

.contact-hero h1 {
    font-size: 3rem;
    color: #FF2FD6;
    text-shadow: 0 0 20px #FF2FD6;
}

.contact-section {
    padding: 80px 20px;
    max-width: 900px;
    margin: 0 auto;
}

.contact-card {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(124,58,237,0.3);
    padding: 40px;
    border-radius: 20px;
    backdrop-filter: blur(15px);
}

.contact-card h2 {
    margin-bottom: 20px;
    color: #7C3AED;
}

.form-group {
    margin-bottom: 20px;
}

label {
    display: block;
    margin-bottom: 6px;
    font-weight: 300;
}

input, textarea, select {
    width: 100%;
    padding: 12px;
    background: #0F0F18;
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 10px;
    color: white;
    font-family: 'Poppins', sans-serif;
}

input:focus, textarea:focus, select:focus {
    outline: none;
    border-color: #FF2FD6;
    box-shadow: 0 0 10px #FF2FD6;
}

.contact-btn {
    margin-top: 10px;
    padding: 12px 30px;
    border: 2px solid #FF2FD6;
    color: #FF2FD6;
    background: transparent;
    border-radius: 30px;
    cursor: pointer;
    transition: 0.3s;
}

.contact-btn:hover {
    background: #FF2FD6;
    color: black;
    box-shadow: 0 0 20px #FF2FD6;
}

.socials {
    margin-top: 40px;
    text-align: center;
}

.socials a {
    margin: 0 15px;
    text-decoration: none;
    color: #7C3AED;
    font-weight: 600;
    transition: 0.3s;
}

.socials a:hover {
    color: #FF2FD6;
}

.footer {
    padding: 30px;
    text-align: center;
    border-top: 1px solid rgba(255,255,255,0.1);
    font-size: 0.9rem;
    margin-top: 60px;
    color: rgba(255,255,255,0.6);
}

/*NAVBAR*/

.nav{
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 999;
  display: flex; justify-content: space-between; align-items: center;
  padding: 16px 22px;
  background: rgba(5,5,10,0.35);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.nav-logo{ color: #FF2FD6; text-decoration: none; font-weight: 800; letter-spacing: 2px; }
.nav-links a{ color: rgba(255,255,255,0.85); text-decoration: none; margin-left: 18px; }
.nav-links a:hover{ color: #FF2FD6; }