
html, body {
  margin: 0;
  padding: 0;
  height: 100%;
  font-family: "Poppins", sans-serif;
  background: var(--color-bg-2);
  color: var(--color-text);
}


.header-section {
  text-align: center;
  padding: 150px 20px 50px;
  background: var(--color-bg-alt);
  border-bottom: 1px solid rgba(255, 0, 0, 0.1);
  position: relative;
  overflow: hidden;
}


.header-section::before {
  content: "";
  position: absolute;
  width: 0;
  height: 0;
  border-left: 60px solid transparent;
  border-right: 60px solid transparent;
  border-bottom: 90px solid var(--color-primary);
  opacity: 0.07;
  top: 25px;
  right: 15%;
  filter: blur(1px);
}

.header-section::after {
  content: "";
  position: absolute;
  width: 3px;
  height: 180px;
  background: var(--color-primary);
  opacity: 0.12;
  left: 10%;
  top: 40%;
  transform: rotate(17deg);
  border-radius: 10px;
}


.header-section h1 {
  margin: 0;
  font-size: 2.8rem;
  color: var(--color-text);
  font-weight: 700;
  text-transform: capitalize;
  letter-spacing: .8px;
}


.header-section p {
  margin-top: 12px;
  font-size: 1.15rem;
  color: var(--color-text-muted);
}


#map {
  width: 100%;
  height: calc(100vh - 230px);
  border-top: 2px solid var(--color-primary);
  box-shadow: 0 0 25px rgba(0,0,0,0.25);
}


@media (max-width: 768px) {
  .header-section h1 {
    font-size: 2rem;
  }
  .header-section p {
    font-size: 1rem;
  }

  #map {
    height: calc(100vh - 260px);
  }
}