/* ==== Global Styles ==== */
* { box-sizing: border-box; }

body {
  font-family: 'Inter', sans-serif;
  background: linear-gradient(135deg, #2a2a2a, #1a1a1a);
  color: #fff;
  margin: 0;
  padding: 0;
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow-x: hidden;
}

.background-shape {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 450px;
  height: 450px;
  background: rgba(255,255,255,0.05);
  transform: translate(-50%, -50%) rotate(45deg);
  z-index: 0;
  border-radius: 12px;
  filter: blur(20px);
}

.form-container {
  position: relative;
  z-index: 1;
  background: rgba(0, 0, 0, 0.55);
  backdrop-filter: blur(10px);
  padding: 50px;
  border-radius: 10px;
  max-width: 950px;
  width: 90%;
  text-align: center;
  box-shadow: 0 0 40px rgba(0,0,0,0.4);
}

.form-container h1 {
  font-size: 32px;
  text-transform: uppercase;
  margin-bottom: 10px;
  font-weight: 700;
}

.divider {
  width: 70px;
  height: 3px;
  background: #00bcd4;
  margin: 15px auto 25px;
}

.form-container p {
  font-size: 15px;
  color: #ccc;
  margin-bottom: 35px;
  line-height: 1.6;
}

form { width: 100%; }

.form-row {
  display: flex;
  gap: 20px;
  margin-bottom: 20px;
  flex-wrap: wrap;
  justify-content: center;
}

input, select, textarea {
  flex: 1;
  min-width: 260px;
  padding: 12px 14px;
  border: 1px solid #444;
  background: #222;
  color: #fff;
  font-size: 15px;
  border-radius: 4px;
  outline: none;
  transition: all 0.2s ease;
}

input:focus, select:focus, textarea:focus {
  border-color: #00bcd4;
  box-shadow: 0 0 6px rgba(0,188,212,0.6);
}

textarea {
  width: 100%;
  margin-top: 10px;
  resize: none;
  min-height: 110px;
}

.submit-btn {
  margin-top: 25px;
  background: #00bcd4;
  color: #fff;
  border: none;
  padding: 14px 50px;
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  border-radius: 6px;
  cursor: pointer;
  transition: background 0.3s ease, transform 0.2s;
}

.submit-btn:hover {
  background: #0099b0;
  transform: translateY(-2px);
}

#formMessage {
  margin-top: 25px;
  font-size: 15px;
  font-weight: 600;
  display: inline-block;
  padding: 10px 20px;
  border-radius: 6px;
  transition: opacity 0.3s ease;
}

.message.success {
  background: rgba(0, 188, 212, 0.2);
  color: #00e0ff;
  border: 1px solid #00bcd4;
}

.message.error {
  background: rgba(255, 77, 77, 0.2);
  color: #ff4d4d;
  border: 1px solid #ff4d4d;
}

@media (max-width: 768px) {
  .form-container { padding: 35px 25px; }
  .form-row { flex-direction: column; gap: 15px; }
  input, select { min-width: 100%; }
  .form-container h1 { font-size: 26px; }
  .divider { width: 50px; }
  textarea { min-height: 90px; }
}

@media (max-width: 480px) {
  body { padding: 15px; }
  .form-container { padding: 25px 18px; }
  .form-container h1 { font-size: 22px; }
  .submit-btn { width: 100%; font-size: 15px; }
  input, select, textarea { font-size: 14px; padding: 10px 12px; }
}
