/* RESET & BASE */
* { margin: 0; padding: 0; box-sizing: border-box; }
body {
  background: #111;
  color: #eaeaea;
  font-family: 'Inter', sans-serif;
  display: flex;
  flex-direction: column;
  align-items: center;
  min-height: 100vh;
}

/* HEADER */
.contact-header {
  text-align: center;
  padding: 5rem 1rem 2rem;
}
.contact-header h1 {
  font-size: clamp(2.5rem, 6vw, 4rem);
  text-transform: uppercase;
  letter-spacing: 2px;
}
.contact-header p {
  font-size: 1.2rem;
  color: #bbb;
  margin-top: 0.5rem;
  letter-spacing: 1px;
}

/* MAIN CARD */
.contact-main {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
  padding: 2rem;
  width: 90%;
  max-width: 600px;
  margin-bottom: 3rem;
}

.contact-card {
  background: linear-gradient(180deg, #1b1b1b 0%, #101010 100%);
  border-radius: 16px;
  padding: 2.5rem;
  width: 100%;
  text-align: center;
  box-shadow: 0 6px 25px rgba(0, 0, 0, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.05);
  animation: fadeIn 0.8s ease both;
}

.contact-card h2 {
  color: #fff;
  font-size: 1.6rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 1.5rem;
}

.contact-item {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.8rem;
  margin: 0.8rem 0;
  color: #c9c9c9;
  font-size: 1rem;
}

.contact-item i {
  color: #eaeaea;
  font-size: 1.2rem;
}

/* LINKS */
a {
  color: #eaeaea;
  text-decoration: none;
  transition: color 0.3s ease;
}
a:hover {
  color: #fff;
  text-decoration: underline;
}

/* SOCIAL ICONS */
.socials {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  margin-top: 1.8rem;
}
.socials a {
  color: #aaa;
  font-size: 1.8rem;
  transition: color 0.3s ease, transform 0.3s ease;
}
.socials a:hover {
  color: #fff;
  transform: scale(1.1);
}

/* NOTE SECTION */
.contact-note {
  text-align: center;
  color: #aaa;
  max-width: 600px;
  line-height: 1.6;
  font-size: 1rem;
  font-weight: 300;
  animation: fadeInUp 1s ease both;
}

/* FOOTER */
.contact-footer {
  text-align: center;
  padding: 2rem;
  margin-top: auto;
}
.contact-footer a {
  color: #888;
  text-decoration: none;
  font-size: 0.9rem;
}
.contact-footer a:hover {
  color: #fff;
}

/* CONTACT FORM */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin: 2rem 0;
}
.contact-form input,
.contact-form textarea {
  background: #181818;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 8px;
  padding: 0.9rem 1rem;
  color: #eaeaea;
  font-size: 0.95rem;
}
.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: #666;
}
.contact-form button {
  cursor: pointer;
  border: none;
  border-radius: 8px;
  padding: 0.9rem;
  background: #eaeaea;
  color: #111;
  font-weight: 600;
  transition: opacity 0.2s ease;
}
.contact-form button:hover {
  opacity: 0.8;
}


/* ANIMATIONS */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .contact-card {
    padding: 2rem 1.5rem;
  }
}
