/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}

body {
  background: #0c0c0c;
  color: #fff;
  scroll-behavior: smooth;
}

/* Header */
header {
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
  background: rgba(0,0,0,0.8);
  backdrop-filter: blur(5px);
}

header .header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 0;
}

header nav ul {
  display: flex;
  list-style: none;
}

header nav ul li {
  margin-left: 25px;
}

header nav ul li a {
  color: #fff;
  text-decoration: none;
  font-weight: 500;
  transition: 0.3s;
}

header nav ul li a:hover {
  color: #00c3ff;
}

/* Contact Hero */
.contact-hero {
  height: 60vh;
  background: url('../images/contact-hero.webp') center/cover no-repeat;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  position: relative;
  overflow: hidden;
  margin-top: 80px;
}

.contact-hero::before {
  content: '';
  position: absolute;
  top:0; left:0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.7);
}

.hero-content {
  position: relative;
  z-index: 2;
  animation: fadeIn 2s ease-out;
}

.hero-content h1 {
  font-size: 3rem;
  background: linear-gradient(90deg,#ff00cc,#00c3ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 2px 2px 20px rgba(0,195,255,0.5);
}

.hero-content p {
  font-size: 1.2rem;
  margin-top: 20px;
  color: #fff;
}

/* Contact Form */
.contact-section {
  padding: 100px 0;
  display: flex;
  justify-content: center;
}

.contact-form {
  width: 100%;
  max-width: 600px;
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.input-group input,
.input-group textarea {
  width: 100%;
  padding: 15px;
  border: none;
  border-radius: 12px;
  background: rgba(255,255,255,0.05);
  color: #fff;
  font-size: 16px;
  outline: none;
  transition: 0.3s;
  box-shadow: 0 0 10px rgba(0,195,255,0.2);
}

.input-group input:focus,
.input-group textarea:focus {
  background: rgba(255,255,255,0.1);
  box-shadow: 0 0 20px rgba(0,195,255,0.5);
}

textarea {
  min-height: 150px;
  resize: none;
}

.btn {
  padding: 15px;
  border: none;
  border-radius: 12px;
  background: linear-gradient(90deg,#ff00cc,#00c3ff);
  color: #fff;
  font-size: 18px;
  cursor: pointer;
  transition: transform 0.3s, box-shadow 0.3s;
}

.btn:hover {
  transform: scale(1.05);
  box-shadow: 0 0 25px rgba(0,195,255,0.5);
}

/* Footer */
footer {
  background: #111;
  padding: 40px 0;
  color: #fff;
  text-align: center;
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 1rem;
  list-style: none;
  margin-top: 0.5rem;
}

.footer-links a {
  color: #fff;
  text-decoration: none;
}

.footer-links a:hover {
  color: #00c3ff;
}

footer .socials a {
  color: #fff;
  margin: 0 10px;
  font-size: 22px;
  transition: 0.3s;
}

footer .socials a:hover {
  color: #00c3ff;
  transform: scale(1.3);
}

/* Animations */
@keyframes fadeIn {
  from {opacity: 0; transform: translateY(50px);}
  to {opacity:1; transform: translateY(0);}
}

/* Responsive */
@media (max-width:768px){
  .hero-content h1 { font-size: 2rem; }
  .hero-content p { font-size: 1rem; }
}
