
body {
  background: #111;
  color: #e0e0e0;
  font-family: 'Segoe UI', Arial, sans-serif;
  margin: 0;
  min-height: 100vh;
  position: relative;
}

.contact-starfield {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  z-index: 0;
  pointer-events: none;
  background-image:
    radial-gradient(white 1.2px, transparent 1.2px),
    radial-gradient(#fff8 0.8px, transparent 0.8px),
    radial-gradient(#ffe066 1px, transparent 1px),
    radial-gradient(#fff 0.7px, transparent 0.7px);
  background-size:
    80px 80px,
    120px 120px,
    200px 200px,
    40px 40px;
  background-position:
    10px 20px,
    60px 40px,
    120px 80px,
    30px 10px;
  opacity: 0.25;
  animation: starfield-move 60s linear infinite;
}

@keyframes starfield-move {
  0% { background-position: 10px 20px, 60px 40px, 120px 80px, 30px 10px; }
  100% { background-position: 60px 80px, 120px 100px, 200px 160px, 90px 50px; }
}

.contact-main {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 3rem;
  max-width: 1100px;
  margin: 3.5rem auto 0 auto;
  position: relative;
  z-index: 1;
  background: rgba(20, 20, 30, 0.92);
  border-radius: 18px;
  box-shadow: 0 4px 32px #00e6d822;
  padding: 2.5rem 2.5rem 5rem 2.5rem;
}

.contact-form-section {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 2.2rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  border-bottom: 1px solid #222;
  padding-bottom: 1.2rem;
  margin-bottom: 0.2rem;
  position: relative;
}

.form-group label {
  font-family: 'Segoe UI', Arial, sans-serif;
  font-size: 1.08em;
  color: #fff;
  margin-bottom: 0.3em;
  letter-spacing: 1px;
  opacity: 0.8;
}

.form-group input,
.form-group textarea {
  background: transparent;
  border: none;
  color: #e0e0e0;
  font-size: 1.08em;
  padding: 0.2em 0 0.1em 0;
  outline: none;
  resize: none;
  font-family: inherit;
}

.form-group input:focus,
.form-group textarea:focus {
  color: #fff;
}

.send-btn {
  margin: 2.5rem auto 0 auto;
  display: block;
  background: #00e6d8;
  color: #222;
  font-family: 'Segoe UI', Arial, sans-serif;
  font-size: 1.15em;
  font-weight: 700;
  border: none;
  border-radius: 50%;
  width: 90px;
  height: 90px;
  cursor: pointer;
  transition: background-color 0.2s, color 0.2s;
}

.send-btn:hover {
  background: #00b3a4;
  color: #fff;
}

.contact-sidebar {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-end;
  padding-left: 2rem;
}

.contact-details {
  background: rgba(10, 20, 30, 0.92);
  border-radius: 12px;
  box-shadow: 0 2px 16px #00e6d822;
  padding: 2rem 2.2rem;
  min-width: 260px;
  color: #fff;
}

/* Add spacing between stacked contact detail cards in the sidebar */
.contact-sidebar .contact-details + .contact-details {
  margin-top: 2rem;
}

.contact-details h3 {
  font-family: 'Segoe UI', Arial, sans-serif;
  font-size: 1.08em;
  color: #00e6d8;
  margin: 1.2em 0 0.5em 0;
  letter-spacing: 1px;
}

.contact-details p {
  margin: 0 0 1.2em 0;
  color: #e0e0e0;
  font-size: 1em;
}

.contact-details ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.contact-details li {
  margin-bottom: 0.5em;
}

.contact-details a {
  color: #00fff7;
  text-decoration: none;
  transition: color 0.2s;
}

.contact-details a:hover {
  color: #ff00e6;
}

.feedback-info {
  width: 100%;
}

.feedback-info ul {
  margin-bottom: 1.5rem;
}

.feedback-info li {
  margin-bottom: 1rem;
  line-height: 1.4;
}

.feedback-info p {
  line-height: 1.5;
  margin-bottom: 1.2rem;
}

/* --- Responsive Styles --- */
@media (max-width: 992px) {
    .contact-main {
        grid-template-columns: 1fr;
        gap: 2rem;
        margin: 2rem 1rem;
        padding: 2rem;
    }

    .contact-sidebar {
        align-items: stretch; /* Make sidebar content full width */
        padding-left: 0;
        text-align: center;
    }
}

