/* =========================
   CONTACT PAGE (ULTRA PREMIUM BLACK & GOLD)
========================= */

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

body {
 font-family: 'Montserrat', serif;
  background-color: #000;
  color: #fff;
}

/* HERO */
.contact-hero {
  height: 55vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #111, #000);
  text-align: center;
}

.contact-banner h1 {
  font-family: 'Cinzel', serif;
  font-size: 3rem;
  color: #FFD700;
  margin-bottom: 15px;
}

.contact-banner p {
  font-family: 'Montserrat', serif;
  font-size: 1.2rem;
  color: #fff;
}

/* SECTION */
.contact-section {
  padding: 100px 20px;
  background: #000;
}

.contact-container {
  max-width: 1200px;
  margin: auto;
  display: flex;
  gap: 70px;
  justify-content: center;
  flex-wrap: wrap;
}

/* FORM CARD */
.contact-form {
  flex: 1;
  min-width: 350px;
  background: #1C1C1C;
  padding: 50px;
  border-radius: 16px;
  border: 1px solid rgba(255,215,0,0.15);
  box-shadow: 0 20px 40px rgba(0,0,0,0.6);
  transition: 0.3s ease;
}

.contact-form:hover {
  border-color: #FFD700;
}

.contact-form h2 {
  font-family: 'Cinzel', serif;
  color: #FFD700;
  margin-bottom: 30px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 15px;
  margin-bottom: 20px;
  border-radius: 8px;
  border: 1px solid #333;
  background-color: #000;
  color: #fff;
  transition: 0.3s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: #FFD700;
  box-shadow: 0 0 10px rgba(255,215,0,0.4);
  outline: none;
}

.contact-form button {
  width: 100%;
  padding: 15px;
  border-radius: 8px;
  border: none;
  background: linear-gradient(135deg, #FFD700, #CFAF67);
  color: #000;
  font-weight: bold;
  cursor: pointer;
  transition: 0.3s ease;
}

.contact-form button:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(255,215,0,0.5);
}

/* FAQ CARD */
.contact-faq {
  flex: 1;
  min-width: 350px;
  background: #1C1C1C;
  padding: 50px;
  border-radius: 16px;
  border: 1px solid rgba(255,215,0,0.15);
  box-shadow: 0 20px 40px rgba(0,0,0,0.6);
}

.contact-faq h2 {
   font-family: 'Cinzel', serif;
  color: #FFD700;
  margin-bottom: 30px;
}

/* FAQ ITEMS */
.faq-item {
  border-bottom: 1px solid rgba(255,215,0,0.2);
  margin-bottom: 15px;
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  color: #FFD700;
  padding: 15px 0;
  font-size: 1rem;
  text-align: left;
  display: flex;
  justify-content: space-between;
  cursor: pointer;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: 0.4s ease;
}

.faq-answer p {
   font-family: 'Montserrat', serif;
  padding-bottom: 15px;
  line-height: 1.6;
  color: #ddd;
}

.faq-item.active .faq-answer {
  max-height: 200px;
}

.faq-item.active .faq-question span {
  transform: rotate(45deg);
}


/* RESPONSIVE */
@media (max-width: 900px) {
  .contact-container {
    flex-direction: column;
    gap: 40px;
  }
}

.contact-faq:hover {
  border-color: #FFD700;
}
/* Success Popup */

#successPopup {
  display: none;
  position: fixed;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  background-color: #FFD700;
  color: #000;
  padding: 15px 25px;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.3);
  font-family: sans-serif;
  font-weight: bold;
  z-index: 9999;
  opacity: 0;
  transition: opacity 0.5s;
}