* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background: #050505;
  color: #fff;
  font-family: Arial, Helvetica, sans-serif;
  overflow-x: hidden;
  overflow-y: auto;
}

.contact-page {
  min-height: 100vh;
  position: relative;
  padding: 42px 70px 50px;
  background: #050505;
  isolation: isolate;
}

/* background */
.contact-page::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 80% 20%, rgba(255, 0, 92, 0.18), transparent 30%),
    radial-gradient(circle at 20% 85%, rgba(255,255,255,0.06), transparent 28%),
    linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.018) 1px, transparent 1px);
  background-size: auto, auto, 80px 80px, 80px 80px;
  z-index: -1;
}

/* top labels */
.top-left,
.top-right {
  position: absolute;
  top: 32px;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 4px;
}

.top-left { left: 70px; }
.top-right { right: 70px; }

/* title */
.contact-title {
  text-align: center;
  font-size: clamp(42px, 6vw, 64px);
  font-weight: 900;
  letter-spacing: -3px;
  margin-top: 56px;
}

.contact-title::after {
  content: "";
  display: block;
  width: 140px;
  height: 5px;
  margin: 14px auto 0;
  border-radius: 50px;
  background: #ff005c;
  box-shadow: 0 0 20px rgba(255, 0, 92, 0.7);
}

/* WRAPPER */
.contact-wrapper {
  margin: 34px auto 0;
  max-width: 960px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 25px;
}

/* INFO CARD */
.contact-info,
.form {
  min-width: 0;
  padding: 24px;
  border-radius: 28px;
  border: 1px solid rgba(255,255,255,0.12);
  backdrop-filter: blur(14px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.5);
}

.contact-info {
  background: linear-gradient(145deg, rgba(255,0,92,0.12), rgba(20,20,20,0.9));
}

.contact-info::before {
  content: "LET'S CONNECT";
  display: block;
  color: #ff005c;
  font-size: 12px;
  letter-spacing: 4px;
  margin-bottom: 18px;
  font-weight: 900;
}

.contact-info p {
  margin-bottom: 10px;
  color: #d0d0d0;
  font-size: 13px;
}

.contact-info strong {
  display: block;
  color: #fff;
  font-size: 11px;
  letter-spacing: 2px;
  margin-bottom: 3px;
}

/* FORM */
.form {
  background: rgba(20,20,20,0.9);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.form input,
.form textarea {
  width: 100%;
  padding: 14px;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.06);
  color: #fff;
  font-size: 13px;
  outline: none;
}

.form textarea {
  min-height: 105px;
  resize: none;
}

.form input:focus,
.form textarea:focus {
  border-color: #ff005c;
  box-shadow: 0 0 0 2px rgba(255,0,92,0.2);
}

.form button {
  padding: 14px;
  border-radius: 999px;
  border: none;
  background: linear-gradient(90deg, #ff005c, #ff4d88);
  color: #fff;
  font-weight: 900;
  cursor: pointer;
  margin-top: 2px;
  box-shadow: 0 0 25px rgba(255,0,92,0.4);
  transition: 0.3s ease;
}

.form button:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 35px rgba(255,0,92,0.7);
}

.map-frame {
  display: block;
  width: 100%;
  height: 190px;
  margin-top: 16px;
  border-radius: 20px;
  border: 1px solid rgba(255,255,255,0.15);
  box-shadow:
    10px 10px 0 rgba(255, 0, 92, 0.25),
    0 20px 60px rgba(0,0,0,0.4);
}

/* corner */
.contact-page::after {
  content: "";
  position: absolute;
  right: 40px;
  bottom: 40px;
  width: 36px;
  height: 36px;
  border-right: 7px solid #fff;
  border-bottom: 7px solid #fff;
}

/* responsive */
@media (max-width: 900px) {
  .contact-page {
    padding: 80px 24px 50px;
  }

  .top-left,
  .top-right {
    display: none;
  }

  .contact-wrapper {
    grid-template-columns: 1fr;
  }

  .contact-title {
    margin-top: 0;
    font-size: 44px;
  }

  .contact-page::after {
    display: none;
  }

  .map-frame {
    height: 230px;
  }
}