* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}

body {
  background: #0b1220;
  color: #fff;
}

/* HERO */
.contact-hero {
  height: 50vh;
  background: linear-gradient(
      rgba(0,0,0,0.7),
      rgba(0,0,0,0.7)
    ),
    url("https://images.unsplash.com/photo-1554284126-aa88f22d8b74");
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.contact-hero h1 {
  font-size: 3.2rem;
}

.contact-hero span {
  color: #e11d48;
}

.contact-hero p {
  margin-top: 15px;
}

/* CONTACT SECTION */
.contact-section {
  padding: 80px 8%;
}

.contact-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

/* INFO */
.contact-info h2 {
  margin-bottom: 15px;
}

.contact-info p {
  margin-bottom: 20px;
  color: #cbd5f5;
}

.info-box {
  margin-bottom: 20px;
}

/* FORM */
.contact-form {
  background: #111827;
  padding: 30px;
  border-radius: 16px;
}

.contact-form h2 {
  margin-bottom: 20px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 12px 15px;
  margin-bottom: 15px;
  border-radius: 10px;
  border: none;
  outline: none;
  background: #020617;
  color: #fff;
}

.contact-form button {
  width: 100%;
  padding: 14px;
  border: none;
  background: #e11d48;
  color: #fff;
  font-size: 1rem;
  border-radius: 10px;
  cursor: pointer;
}

/* MAP */
.map iframe {
  width: 100%;
  height: 350px;
  border: none;
}

/* FOOTER */
footer {
  padding: 20px;
  text-align: center;
  background: #020617;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .contact-container {
    grid-template-columns: 1fr;
  }

  .contact-hero h1 {
    font-size: 2.4rem;
  }
}
