body {
  margin: 0;
  padding: 20px;
  font-family: 'Montserrat', sans-serif;
  background: url('https://storagewestin.blob.core.windows.net/contact-us/contact-us.webp') no-repeat center center fixed;
  background-size: cover;
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
}

.form-container {
  max-width: 440px;
  width: 100%;
  padding: 40px 32px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 20px;
  backdrop-filter: blur(16px);
  box-shadow: 0 8px 32px rgba(0,0,0,0.25);
  animation: fadeInUp 0.8s ease;
}

h1 {
  font-weight: 700;
  font-size: 32px;
  text-align: center;
  margin-bottom: 24px;
  background: linear-gradient(90deg, #111, #555);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  letter-spacing: -0.5px;
}

h1 .orange-letter {
  background: none;
  -webkit-background-clip: unset;
  -webkit-text-fill-color: #ff8c00;
  color: #ff8c00;
}

input, select, textarea {
  width: 100%;
  padding: 14px 16px;
  margin: 12px 0;
  border: 1px solid rgba(255,255,255,0.3);
  border-radius: 10px;
  background: rgba(255,255,255,0.25);
  color: #111;
  font-size: 15px;
  transition: all 0.25s ease;
}

input::placeholder, textarea::placeholder {
  color: rgba(0,0,0,0.5);
}

input:focus, select:focus, textarea:focus {
  border-color: #ff8c00;
  box-shadow: 0 0 0 3px rgba(255,140,0,0.25);
  outline: none;
  background: rgba(255,255,255,0.4);
}

.checkbox-container {
  display: flex;
  align-items: center;
  margin: 12px 0;
  font-size: 14px;
}

.checkbox-container input {
  width: auto;
  margin-right: 10px;
}

button {
  width: 100%;
  padding: 14px;
  background: linear-gradient(135deg, #ff8c00, #e65100);
  color: white;
  border: none;
  border-radius: 12px;
  cursor: pointer;
  font-size: 16px;
  font-weight: 600;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

button:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(230,81,0,0.4);
}

#captcha {
  margin: 12px 0;
  font-weight: 500;
  color: #222;
  text-align: center;
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 480px) {
  .form-container {
    padding: 24px;
  }
  h1 {
    font-size: 26px;
  }
}
