body {
  margin: 0;
  font-family: 'Poppins', sans-serif;
  background: linear-gradient(135deg, #12001f, #2a003f);
  color: #000;
}

/* MOSAIC BACKGROUND EFFECT */
body::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;

  /* Mosaic pattern */
  background-image: 
    linear-gradient(rgba(255,255,255,0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.05) 1px, transparent 1px);

  background-size: 40px 40px; /* controls grid size */

  pointer-events: none;
  z-index: 0;
}

.rj-contact {
  padding: 80px 20px;
}

.rj-contact-container {
  max-width: 1100px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}

/* CARDS */
.rj-contact-card,
.rj-form-card {
  background: #f2f2f2;
  padding: 40px;
  border-radius: 20px;
}

/* LEFT CARD */
.rj-contact-card {
  text-align: center;
}

.rj-contact-card h2 {
  font-size: 32px;
}

.rj-contact-card h2 span {
  color: #ff4fd8;
}

.rj-contact-image {
  display: flex;
  justify-content: center;
  margin: 20px 0;
}

.rj-contact-image img {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  border: 6px solid #fff;
  object-fit: cover;
}

.info-subtitle {
  text-align: center;
  font-size: 14px;
  margin-bottom: 20px;
}

.info-list {
  list-style: none;
  padding: 0;
}

.info-list li {
  margin-bottom: 10px;
  display: flex;
  justify-content: center;
  gap: 10px;
}

.rj-socials {
  margin-top: 20px;
}

.rj-socials a {
  margin-right: 10px;
  font-size: 14px;
  color: #ff4fd8;
  text-decoration: none;
}

/* RIGHT CARD */
.rj-form-card {
  text-align: center;
}

/* FORM TITLE */
.form-title {
  text-align: center;
  font-size: 32px;
  margin-bottom: 25px;
  width: 100%;
}

.form-title span {
  color: #ff4fd8;
}

/* FORM */
.rj-form-card form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.rj-form-card input,
.rj-form-card select,
.rj-form-card textarea {
  padding: 14px;
  border-radius: 10px;
  border: none;
  background: #e6e6e6;
}

.rj-form-card button {
  padding: 14px;
  border: none;
  border-radius: 10px;
  background: linear-gradient(135deg, #9B2FFF, #FF4FD8);
  color: #fff;
  font-weight: bold;
  cursor: pointer;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .rj-contact-container {
    grid-template-columns: 1fr;
  }
}