:root {
  --primary: #c98a3c;
  --secondary: #8b5a2b;
  --card: #171717;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Poppins", sans-serif;

  min-height: 100vh;

  display: flex;
  justify-content: center;
  align-items: center;

  padding: 20px;

  background: radial-gradient(
    circle at top center,
    rgba(255, 196, 87, 0.3) 0%,
    rgba(196, 118, 25, 0.25) 20%,
    rgba(92, 52, 15, 0.5) 45%,
    rgba(15, 10, 8, 0.95) 80%
  );
}

.contact-wrapper {
  width: 100%;
  display: flex;
  justify-content: center;
}

.contact-card {
  width: 100%;
  max-width: 550px;

  background: rgba(20, 20, 20, 0.95);

  border: 1px solid rgba(201, 138, 60, 0.25);

  border-radius: 25px;

  padding: 40px 30px;

  text-align: center;

  backdrop-filter: blur(8px);

  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
}

.logo {
  width: 110px;
  height: 110px;
  object-fit: contain;

  margin-bottom: 15px;
}

.contact-card h1 {
  font-family: "Bebas Neue", sans-serif;
  font-size: 3rem;
  color: var(--primary);
  letter-spacing: 2px;
}

.subtitle {
  color: #d4d4d4;
  margin: 10px 0 30px;
  line-height: 1.8;
}

.contact-box {
  background: #111;

  border: 1px solid rgba(201, 138, 60, 0.15);

  border-radius: 15px;

  padding: 18px;

  margin-bottom: 15px;
}

.contact-box span {
  display: block;
  color: var(--primary);
  font-weight: 600;
  margin-bottom: 5px;
}

.contact-box p {
  color: white;
}

.btn-wa {
  display: block;

  margin-top: 25px;

  background: linear-gradient(90deg, var(--primary), var(--secondary));

  color: white;
  text-decoration: none;

  padding: 14px;

  border-radius: 12px;

  font-weight: 600;

  transition: 0.3s;
}

.btn-wa:hover {
  transform: translateY(-2px);
}

.btn-back {
  display: block;

  margin-top: 15px;

  color: #bbb;
  text-decoration: none;
}

.btn-back:hover {
  color: white;
}

@media (max-width: 600px) {
  .contact-card {
    padding: 30px 20px;
  }

  .contact-card h1 {
    font-size: 2.2rem;
  }

  .logo {
    width: 85px;
    height: 85px;
  }
}
