@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@500;700&display=swap");

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Poppins", sans-serif;
  background: linear-gradient(to bottom, #0f0c29, #302b63, #24243e);
  color: white;
  user-select: none;
}

header {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 1rem 0;
  position: sticky;
  top: 0;
  z-index: 10;
  backdrop-filter: blur(12px);
  background-color: rgba(26, 26, 46, 0.7);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  width: 100%;
}

nav {
  width: 100%;
  display: flex;
  justify-content: center;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 5rem;
  padding: 0;
  margin: 0;
  justify-content: center;
  align-items: center;
}

nav li {
  text-align: center;
}

nav a {
  text-decoration: none;
  color: white;
  font-size: 1.1rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s ease;
  font-weight: 500;
}

nav a:hover {
  color: #eb59bd;
  transform: scale(1.05);
}

@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap");

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  scroll-behavior: smooth;
}

body {
  font-family: "Poppins", sans-serif;
  background: linear-gradient(to bottom, #0f0c29, #302b63, #24243e);
  color: white;
  user-select: none;
  line-height: 1.6;
}

header {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 1rem 0;
  position: sticky;
  top: 0;
  z-index: 10;
  backdrop-filter: blur(12px);
  background-color: rgba(26, 26, 46, 0.7);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  width: 100%;
}

nav {
  width: 100%;
  display: flex;
  justify-content: center;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 5rem;
  padding: 0;
  margin: 0;
  justify-content: center;
  align-items: center;
}

nav li {
  text-align: center;
}

nav a {
  text-decoration: none;
  color: white;
  font-size: 1.1rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s ease;
  font-weight: 500;
}

nav a:hover {
  color: #eb59bd;
  transform: scale(1.05);
}

/* ------------ CONTACT CONTAINER ------------ */
.contact-container {
  padding: 2rem;
  max-width: 1200px;
  margin: 0 auto;
  animation: fadeIn 1s ease-in-out;
}

/* ------------ HERO SECTION ------------ */
.contact-hero {
  text-align: center;
  margin-bottom: 4rem;
  padding: 3rem 2rem;
  background: rgba(26, 26, 46, 0.6);
  border-radius: 25px;
  border: 1px solid rgba(235, 89, 189, 0.2);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.hero-content h1 {
  font-size: 3rem;
  color: #eb59bd;
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.hero-content h1 i {
  margin-right: 1rem;
  color: #00f2ff;
}

.hero-subtitle {
  font-size: 1.4rem;
  color: white;
  margin-bottom: 1rem;
  font-weight: 600;
}

.hero-description {
  font-size: 1.1rem;
  color: #ccc;
  max-width: 600px;
  margin: 0 auto;
}

/* ------------ CONTACT METHODS ------------ */
.contact-methods {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-bottom: 4rem;
}

.method-card {
  background: rgba(26, 26, 46, 0.6);
  border-radius: 20px;
  padding: 2.5rem;
  text-align: center;
  border: 1px solid rgba(235, 89, 189, 0.2);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.method-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(235, 89, 189, 0.2);
}

.method-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 1.5rem;
  background: linear-gradient(45deg, #eb59bd, #00f2ff);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.method-icon i {
  font-size: 2rem;
  color: white;
}

.method-card h3 {
  font-size: 1.5rem;
  color: white;
  margin-bottom: 1rem;
  text-transform: uppercase;
}

.method-card p {
  color: #ccc;
  margin-bottom: 1.5rem;
  font-size: 1rem;
}

.method-link {
  display: inline-block;
  background: linear-gradient(45deg, #eb59bd, #00f2ff);
  color: white;
  text-decoration: none;
  padding: 0.8rem 1.5rem;
  border-radius: 25px;
  font-weight: 600;
  transition: transform 0.3s ease;
}

.method-link:hover {
  transform: scale(1.05);
}

.social-links {
  display: flex;
  justify-content: center;
  gap: 1rem;
}

.social-btn {
  width: 50px;
  height: 50px;
  background: rgba(15, 12, 41, 0.8);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #eb59bd;
  text-decoration: none;
  font-size: 1.5rem;
  transition: all 0.3s ease;
  border: 2px solid rgba(235, 89, 189, 0.3);
}

.social-btn:hover {
  background: #eb59bd;
  color: white;
  transform: scale(1.1);
}

/* ------------ FORM SECTION ------------ */
.form-section {
  background: rgba(26, 26, 46, 0.6);
  border-radius: 25px;
  padding: 3rem;
  margin-bottom: 3rem;
  border: 1px solid rgba(0, 242, 255, 0.2);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.form-header {
  text-align: center;
  margin-bottom: 3rem;
}

.form-header h2 {
  font-size: 2.2rem;
  color: #00f2ff;
  margin-bottom: 1rem;
  text-transform: uppercase;
}

.form-header h2 i {
  margin-right: 1rem;
  color: #eb59bd;
}

.form-header p {
  color: #ccc;
  font-size: 1.1rem;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

.form-group {
  display: flex;
  flex-direction: column;
}

.form-group label {
  margin-bottom: 0.8rem;
  color: #eb59bd;
  font-weight: 600;
  font-size: 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.form-group label i {
  color: #00f2ff;
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 1rem 1.5rem;
  border-radius: 15px;
  border: 2px solid rgba(235, 89, 189, 0.2);
  background: rgba(15, 12, 41, 0.6);
  color: white;
  font-size: 1rem;
  font-family: "Poppins", sans-serif;
  outline: none;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: #eb59bd;
  box-shadow: 0 0 15px rgba(235, 89, 189, 0.3);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: #888;
}

.form-group select {
  cursor: pointer;
}

.form-group select option {
  background: #1a1a2e;
  color: white;
}

.form-group textarea {
  resize: vertical;
  min-height: 150px;
}

.send-button {
  align-self: center;
  background: linear-gradient(45deg, #eb59bd, #00f2ff);
  color: white;
  border: none;
  padding: 1.2rem 3rem;
  font-size: 1.1rem;
  font-weight: 600;
  border-radius: 30px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
  display: flex;
  align-items: center;
  gap: 0.8rem;
  box-shadow: 0 10px 25px rgba(235, 89, 189, 0.3);
}

.send-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 30px rgba(235, 89, 189, 0.4);
}

.send-button i {
  font-size: 1.2rem;
}

/* ------------ INFO SECTION ------------ */
.info-section {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}

.info-card {
  background: rgba(15, 12, 41, 0.6);
  border-radius: 15px;
  padding: 2rem;
  text-align: center;
  border: 1px solid rgba(0, 242, 255, 0.2);
  transition: transform 0.3s ease;
}

.info-card:hover {
  transform: translateY(-5px);
}

.info-icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 1rem;
  background: linear-gradient(45deg, #00f2ff, #0066cc);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.info-icon i {
  font-size: 1.5rem;
  color: white;
}

.info-card h4 {
  color: white;
  margin-bottom: 0.8rem;
  font-size: 1.2rem;
  text-transform: uppercase;
}

.info-card p {
  color: #ccc;
  font-size: 0.95rem;
}

/* ------------ LOADING & BACK TO TOP ------------ */
#loading-screen {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, #0f0c29, #302b63, #24243e);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  transition: opacity 0.6s ease;
}

#loading-screen img {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  animation: pulse 2s infinite;
  filter: drop-shadow(0 0 10px #eb59bd);
}

#backToTop {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 20;
  background: linear-gradient(135deg, #eb59bd, #d946a8);
  color: white;
  border: none;
  padding: 1rem;
  border-radius: 50%;
  font-size: 1.2rem;
  box-shadow: 0 8px 25px rgba(235, 89, 189, 0.4);
  cursor: pointer;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
}

#backToTop.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

#backToTop:hover {
  background: linear-gradient(135deg, #f06bc9, #e951b8);
  transform: translateY(-3px) scale(1.1);
  box-shadow: 0 15px 35px rgba(235, 89, 189, 0.6);
}

/* ------------ FOOTER ------------ */
footer {
  text-align: center;
  padding: 2rem;
  background-color: #1a1a2e;
  color: #ccc;
  font-size: 1.2rem;
}

footer .socials {
  margin-bottom: 2rem;
  margin-top: 20px;
}

footer .socials a {
  color: #eb59bd;
  text-decoration: none;
  margin: 0 1.5rem;
  font-size: 1.9rem;
  transition: transform 0.3s ease, color 0.3s ease;
}

footer .socials a:hover {
  color: #eb59bdb0;
  transform: scale(2.5);
}

/* ------------ ANIMATIONS ------------ */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes pulse {
  0% {
    transform: scale(1);
    opacity: 0.8;
  }
  50% {
    transform: scale(1.05);
    opacity: 1;
  }
  100% {
    transform: scale(1);
    opacity: 0.8;
  }
}

/* ------------ RESPONSIVE ------------ */
@media (max-width: 768px) {
  nav ul {
    flex-direction: column;
    gap: 1rem;
  }

  .contact-hero {
    padding: 2rem;
  }

  .hero-content h1 {
    font-size: 2.2rem;
  }

  .contact-methods {
    grid-template-columns: 1fr;
  }

  .form-row {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .form-section {
    padding: 2rem;
  }

  .info-section {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 500px) {
  .contact-container {
    padding: 1rem;
  }

  .hero-content h1 {
    font-size: 1.8rem;
  }

  .method-card {
    padding: 2rem;
  }

  .form-section {
    padding: 1.5rem;
  }
}
