/* ===== General ===== */
body {
  color: #fff;
  background: #000;
}

/* ===== Hero Section ===== */
.contact-hero {
  position: relative;
  height: 50vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.contact-hero .overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.65);
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero-content h1 {
  font-size: 48px;
  margin: 0 0 12px;
  color: #c5a572;
}

.hero-content p {
  font-size: 18px;
  color: #e1e1e1;
}

/* ===== Contact Section ===== */
.contact-section {
  padding: 60px 20px;
}

.contact-container {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

.contact-info h2 {
  font-size: 32px;
  color: #c5a572;
}

.contact-info p {
  color: #cfcfcf;
  margin-bottom: 24px;
}

.contact-info ul {
  list-style: none;
  padding: 0;
}

.contact-info li {
  margin-bottom: 12px;
  font-size: 16px;
}

/* ===== Contact Form ===== */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.contact-form input,
.contact-form textarea {
  background: #0f0f0f;
  border: 1px solid rgba(255,255,255,0.15);
  color: #fff;
  padding: 14px;
  font-size: 15px;
  border-radius: 10px;
  outline: none;
  transition: border-color .25s ease, box-shadow .25s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: #c5a572;
  box-shadow: 0 0 0 4px rgba(197,165,114,0.12);
}

.contact-form button {
  background: linear-gradient(135deg, #c5a572, #e6cf95);
  color: #0a0a0a;
  padding: 14px;
  font-size: 16px;
  font-weight: 700;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  transition: transform .2s ease, box-shadow .25s ease;
}

.contact-form button:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(197,165,114,0.25);
}
#form-message {
    text-align: center;
    margin-top: 15px;
    font-size: 14px;
    display: none;
}
.success-msg {
    color: green;
}
.error-msg {
    color: red;
}

/* ===== Responsive ===== */
@media (max-width: 768px) {
  .contact-container {
    grid-template-columns: 1fr;
  }
  .hero-content h1 {
    font-size: 36px;
  }
}
