:root {
  --bg: #e0e5ec; /* Soft background */
  --card: #e0e5ec; /* Card surface */
  --text: #2e2e2e;
  --accent: #00aaff;
  --accent2: #ff4da6;
  --muted: #555;
  --radius: 16px;
  --shadow-dark: #b8bcc2;
  --shadow-light: #ffffff;
}

body {
  font-family: "Poppins", sans-serif;
  background: var(--bg);
  color: var(--text);
  min-height: 100vh;
  padding: 0 20px;
}

/* Contact Page Container */
.contact-page {
  max-width: 720px;
  margin: 2rem auto;
  padding: 2rem;
  background: var(--card);
  border-radius: var(--radius);
  box-shadow: 6px 6px 12px var(--shadow-dark),
    -6px -6px 12px var(--shadow-light);
  animation: fadeIn 0.8s ease-in-out;
}

.contact-page h1 {
  font-size: 2rem;
  margin-bottom: 0.5rem;
  text-align: center;
  color: var(--accent);
  transition: color 0.3s ease, transform 0.3s ease;
}
.contact-page h1:hover {
  color: var(--accent2);
  transform: scale(1.05);
}

.contact-page .lead {
  text-align: center;
  color: var(--muted);
  margin-bottom: 1.5rem;
}

/* Form Layout */
form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

/* Inputs */
input,
textarea {
  padding: 12px;
  border-radius: var(--radius);
  border: none;
  background: var(--card);
  color: var(--text);
  font-size: 15px;
  box-shadow: inset 4px 4px 8px var(--shadow-dark),
    inset -4px -4px 8px var(--shadow-light);
  transition: 0.3s ease;
}

input:focus,
textarea:focus {
  outline: none;
  box-shadow: inset 2px 2px 5px var(--shadow-dark),
    inset -2px -2px 5px var(--shadow-light), 0 0 8px var(--accent);
}

/* Primary Button */
button.primary {
  background: var(--card);
  border: none;
  padding: 12px;
  border-radius: var(--radius);
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  color: var(--text);
  box-shadow: 6px 6px 12px var(--shadow-dark),
    -6px -6px 12px var(--shadow-light);
  transition: all 0.3s ease;
}

button.primary:hover {
  background: linear-gradient(145deg, var(--accent), var(--accent2));
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 8px 8px 16px var(--shadow-dark),
    -8px -8px 16px var(--shadow-light);
}

/* Status Text */
.status-text {
  margin-top: 1rem;
  font-size: 14px;
  color: var(--accent);
  text-align: center;
}

/* Alternate Contact Links */
.alt-contact {
  text-align: center;
  margin-top: 2rem;
}

.alt-contact a {
  color: var(--accent2);
  font-weight: bold;
  text-decoration: none;
  transition: 0.3s ease;
  box-shadow: inset 2px 2px 5px var(--shadow-dark),
    inset -2px -2px 5px var(--shadow-light);
  padding: 6px 12px;
  border-radius: 8px;
}

.alt-contact a:hover {
  color: #fff;
  background: linear-gradient(145deg, var(--accent), var(--accent2));
  transform: translateY(-2px);
  box-shadow: 6px 6px 12px var(--shadow-dark),
    -6px -6px 12px var(--shadow-light);
}

/* Animations */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
