/* GLOBAL */
body {
  margin: 0;
  font-family: 'Arial', sans-serif;
  background: #0f172a;
  color: #fff;
}

/* NAVBAR */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 50px;
  background: #1e293b;
}
.logo {
  font-size: 22px;
  font-weight: bold;
  color: #ffffff;
}
.nav-links {
  list-style: none;
  display: flex;
  gap: 20px;
}
.nav-links a {
  text-decoration: none;
  color: #fff;
}
.nav-links a.active,
.nav-links a:hover {
  color: #4f46e5;
}

/* FORM SECTION */
.visit-form-section {
  padding: 80px 20px;
  display: flex;
  justify-content: center;
}
.form-container {
  background: #1e293b;
  max-width: 900px;
  width: 100%;
  padding: 40px;
  border-radius: 18px;
  box-shadow: 0 15px 40px rgba(0,0,0,0.4);
}
.form-container h1 {
  text-align: center;
  color: #4f46e5;
}
.form-container p {
  text-align: center;
  color: #cbd5f5;
  margin-bottom: 30px;
}

/* FORM GRID */
form {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.input-group {
  display: flex;
  flex-direction: column;
}
.input-group.full {
  grid-column: span 2;
}
.input-group label {
  margin-bottom: 6px;
  font-size: 14px;
}
.input-group input,
.input-group select,
.input-group textarea {
  padding: 12px;
  border-radius: 10px;
  border: none;
  font-size: 14px;
}
.input-group textarea {
  resize: none;
}

/* BUTTON */
.submit-btn {
  grid-column: span 2;
  padding: 14px;
  margin-top: 10px;
  background: #4f46e5;
  border: none;
  color: #fff;
  font-size: 16px;
  border-radius: 30px;
  cursor: pointer;
  transition: all 0.3s ease;
}
.submit-btn:hover {
  background: #4338ca;
  transform: scale(1.03);
}

/* NOTE */
.form-note {
  grid-column: span 2;
  text-align: center;
  font-size: 14px;
  margin-top: 10px;
  color: #facc15;
}

/* FOOTER */
.footer {
  text-align: center;
  padding: 20px;
  background: #1e293b;
  margin-top: 60px;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .navbar {
    padding: 15px 25px;
  }
  form {
    grid-template-columns: 1fr;
  }
  .input-group.full,
  .submit-btn,
  .form-note {
    grid-column: span 1;
  }
}
