:root {
  --primary: #3b82f6;
  --bg: #010101;
  --bg-card: rgba(255, 255, 255, 0.1);
  --white: #fff;
  --gray: #808080;
  --light-gray: #a9a9a9;
}

* {
  font-family: "Poppins", sans-serif;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  outline: none;
  border: none;
  text-decoration: none;
}

html {
  scroll-behavior: smooth;
}

body {
  background-color: var(--bg);
  color: var(--white);
  overflow-x: hidden;
  height: 100%;
}

.container-contact {
  margin-bottom: 100px;
}

.contact {
  width: 100%;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 30px;
}

.contact .row {
  display: flex;
  background-color: var(--bg-card);
  margin-top: -250px;
  justify-content: space-evenly;
  width: 100%;
  padding: 5rem 8%;
}

.contact .row .left {
  display: flex;
  flex-direction: column;
  flex-basis: 40%;
  width: 100%;
}

.contact .row .left .contactTitle h2 {
  position: relative;
  font-size: 4rem;
  color: var(--white);
  display: inline-block;
  margin-bottom: 1.4rem;
}

.contact .row .left .contactTitle h2::before {
  content: "";
  position: absolute;
  width: 50%;
  height: 0.25rem;
  background-color: var(--primary);
  /* background-color: blue; */
  top: 90%;
  left: 0;
}

.contact .row .left .contactTitle p {
  font-size: 1.6rem;
  color: var(--white);
  letter-spacing: 0.5rem;
  line-height: 1;
  padding-bottom: 1.4rem;
}

.contact .row .left .contactInfo {
  margin-bottom: 1rem;
}

.contactInfo .iconGroup {
  display: flex;
  align-items: center;
  margin: 1.4rem 0;
}

.iconGroup .icon {
  width: 4rem;
  height: 4rem;
  border: 2px solid var(--primary);
  border-radius: 50%;
  margin-right: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.iconGroup .icon svg {
  width: 1.8rem;
  height: 1.8rem;
  color: var(--gray);
}

.iconGroup .details span {
  display: block;
  font-size: 1.4rem;
  color: var(--light-gray);
}

.iconGroup .details span:nth-child(1) {
  text-transform: uppercase;
  color: var(--white);
}

.iconGroup .details span:nth-child(2) {
  cursor: pointer;
}

.contact .row .left .socialMedia {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  margin: 1.3rem 0 1.25rem;
}

.socialMedia a {
  width: 2.5rem;
  height: 2.5rem;
  text-align: center;
  margin-right: 1rem;
  border-radius: 0.03rem;
  transition: 0.4s;
}

.socialMedia a svg {
  color: var(--light-gray);
  font-size: 1.125rem;
  line-height: 2rem;
  border: 1px solid transparent;
  transition: 0.4s;
}

.socialMedia a svg:hover {
  color: var(--white);
  transform: scale(1.2);
}

.contact .row .right {
  display: flex;
  flex-basis: 60%;
  justify-content: space-around;
  gap: 1rem;
}

.contact .row .right .card {
  overflow: hidden;
  position: relative;
  width: 45%;
  background: #fff;
  border: 0.25rem solid var(--bg-card);
  border-radius: 1.25rem;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  box-shadow: none; /* Flat, tanpa shadow */
  transition: 0.3s;
}

.card:hover {
  transform: none; /* Tidak ada efek 3D */
}

.card::before {
  content: "";
  display: none; /* Hilangkan efek gradient 3D */
}

.contact .row .right .card .contact-map {
  width: 100%;
  height: 50%;
  border: none;
}

.contact .row .right .card img {
  width: 100%;
  height: 50%;
  object-fit: cover;
  z-index: 1;
  border-radius: 0.5rem;
  display: block;
}

.contact .row .right .card .info {
  width: 100%;
  text-align: center;
  z-index: 3;
  padding: 2rem;
  color: var(--white);
  background: var(--primary);
  transform: translateY(0.1rem);
  transition: 0.5s all;
  position: absolute;
  bottom: 0;
  opacity: 0.7;
  left: 0;
}

.contact .row .right .card:hover .info {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.1s;
  filter: blur(100px);
}

.text-contact {
  color: #3b82f6;
}

/* Responsive */
@media (max-width: 1200px) {
  html { font-size: 70%; }
  .contact { overflow: hidden; min-height: 1600px; }
  .contact .row {
    flex-wrap: wrap;
    justify-content: center;
    max-width: 100vw;
    padding-top: 0;
  }
  .contact .row .left {
    flex-basis: 100%;
    padding: 0 10rem;
  }
  .contact .row .left .contactTitle { text-align: center; }
  .contact .row .left .contactTitle h2::before { width: 50%; margin: 0 5rem; }
  .contact .row .right {
    flex-basis: 100%;
    padding: 1rem 10rem;
    margin-top: 2rem;
    border-radius: 1rem;
  }
}

@media (max-width: 900px) {
  html { font-size: 62.5%; }
  .contact .row .left { flex-basis: 100%; }
  .contact .row .col span { text-align: start; }
  .contact .row .right { justify-content: space-between; padding: 0 3rem; }
}

@media (max-width: 768px) {
  html { font-size: 55%; }
}

@media (max-width: 600px) {
  html { font-size: 52.5%; }
  .contact .row { min-height: 70rem; }
  .contact .row .left { margin-top: 20%; }
  .contact .row .right {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 0 3rem;
    background-color: var(--bg-card);
  }
  .contact .row .right .card {
    width: 100%;
    min-height: 64rem;
    padding: 0 2rem;
    margin: 3rem 0;
  }
}

@media (max-width: 450px) {
  html { font-size: 50%; }
  .contact, .contact .row { padding: 0; margin: 0; }
  .contact .row .left {
    flex-basis: 100%;
    width: 100vw;
    padding: 0 4rem;
    margin-top: 4rem;
  }
  .contact .row .right { gap: 6rem; }
  .contact .row .right .card { padding: 0; margin: 0; }
  .contact .row .right .info { padding: 0; margin: 0; }
  .contact .row .right .info h1 { font-size: 2.5rem; }
  .contact .row .right .info p { font-size: 1.6rem; }
}

@media (max-width: 350px) {
  html { font-size: 45%; }
  .contact .row .right .card {
    width: 100%;
    min-height: 55rem;
    padding: 0 2rem;
    margin: 3rem 0;
  }
}