* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}

body {
  color: white;
}

/* NAVBAR */
.navbar {
  position: absolute;
  width: 100%;
  z-index: 10;
  padding: 20px 0;
}

.nav-flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav-links {
  display: flex;
  gap: 25px;
  list-style: none;
}

.nav-links a {
  color: white;
  text-decoration: none;
}

/* HERO */
.hero {
  height: 100vh;
  background: url("visuals/MAIN2.avif") center no-repeat;
  background-size: cover;
  position: relative;
  display: flex;
  align-items: center;
}

.overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.65);
}

/* CONTENT */
.hero-content {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 70px;
}

/* LEFT TEXT */
.hero-text {
  max-width: 400px;
}

.hero-text h1 {
  font-size: 48px;
  font-weight: 800;
}

.hero-text p {
  margin-top: 10px;
  opacity: 0.8;
}

/* CONTACT BOX */
.contact-box {
  display: flex;
  gap: 40px;
  width: 100%;
}

/* GLASS CARDS */
.contact-form,
.contact-map {
  position: relative;
  flex: 1;
  border-radius: 16px;
  background: rgba(255,255,255,0.05);
  backdrop-filter: blur(15px);
  border: 1px solid rgba(255,255,255,0.15);
  transition: all 0.4s ease;
}

/* FORM */
.contact-form {
  padding: 35px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 12px;
  margin-bottom: 12px;
  background: transparent;
  border: 1px solid rgba(255,255,255,0.2);
  color: white;
  border-radius: 6px;
}

.contact-form textarea {
  height: 100px;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: white;
  box-shadow: 0 0 10px rgba(255,255,255,0.2);
}

/* BUTTON */
.btn {
  width: 100%;
  padding: 12px;
  background: white;
  color: black;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn:hover {
  background: rgb(44, 42, 42);
  color: white;
  box-shadow:
    0 0 10px white,
    0 0 25px rgba(255,255,255,0.5);
}

/* CONTACT INFO */
.contact-info {
  margin-top: 20px;
  font-size: 14px;
  opacity: 0.85;
}

.contact-info p {
  margin-bottom: 8px;
}

/* MAP */
.contact-map iframe {
  width: 100%;
  height: 420px;
  border-radius: 16px;
  border: none;
}


/* 🔥 LABEL AT BOTTOM */
.map-label {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;

  padding: 12px;
  text-align: center;

  background: rgba(0, 0, 0, 0.6);
  border-top: 1px solid rgba(255,255,255,0.2);

  font-size: 14px;
  font-weight: 600;
  letter-spacing: 1px;

  backdrop-filter: blur(10px);
}
/* HOVER EFFECT */
.contact-form:hover,
.contact-map:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow:
    0 10px 30px rgba(0,0,0,0.6),
    0 0 20px rgba(255,255,255,0.1),
    0 0 40px rgba(255,255,255,0.05);
}

/* CONTAINER */
.container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .hero-content {
    flex-direction: column;
    align-items: flex-start;
  }

  .contact-box {
    flex-direction: column;
  }

  .hero-text h1 {
    font-size: 36px;
  }
}   