/* ===== RESET ===== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Segoe UI", Roboto, sans-serif;
  background: #ffffff;
  color: #111827;
}

/* ===== HEADER ===== */
.contact-header {
  padding: 1.5rem 2rem;
}

.contact-nav a {
  text-decoration: none;
  font-weight: 600;
  color: #6f63e6;
  font-size: 1rem;
}

/* ===== PAGE LAYOUT ===== */
.contact-page {
  min-height: calc(100vh - 80px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}

.contact-wrapper {
  max-width: 1100px;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

/* ===== LEFT CONTENT ===== */
.contact-info h1 {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.contact-info p {
  font-size: 1.1rem;
  color: #374151;
  line-height: 1.7;
  max-width: 420px;
}

/* ===== FORM ===== */
.contact-form {
  background: #ffffff;
  padding: 2.5rem;
  border-radius: 14px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.contact-form label {
  font-size: 0.9rem;
  font-weight: 600;
}

.contact-form input,
.contact-form textarea {
  padding: 0.75rem 0.9rem;
  border-radius: 8px;
  border: 1px solid #d1d5db;
  font-size: 0.95rem;
  outline: none;
  transition: border 0.2s ease, box-shadow 0.2s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: #6f63e6;
  box-shadow: 0 0 0 3px rgba(111,99,230,0.15);
}

/* ===== BUTTON ===== */
.contact-form button {
  margin-top: 0.5rem;
  padding: 0.8rem;
  border-radius: 999px;
  border: none;
  background: #6f63e6;
  color: #ffffff;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.contact-form button:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 20px rgba(111,99,230,0.35);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .contact-wrapper {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .contact-info h1 {
    font-size: 2.4rem;
  }

  .contact-info p {
    max-width: 100%;
  }
}
