/* ─── CONTACT HERO ────────────────────────────────────────── */

.page-hero {
  margin-top: 84px;
  background-color: #1a1a1a;
  min-height: 380px;
  display: flex;
  align-items: center;
  padding: 80px 10%;
}

.page-hero-content {
  max-width: 700px;
}

.page-eyebrow {
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  font-size: 14px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #e7c873;
  display: block;
  margin-bottom: 20px;
}

.page-hero-content h1 {
  font-family: "Abhaya Libre", serif;
  font-weight: 700;
  font-size: 64px;
  line-height: 1.1;
  color: #ffffff;
  margin-bottom: 24px;
}

.page-hero-content p {
  font-family: "Poppins", sans-serif;
  font-weight: 300;
  font-size: 20px;
  color: #c0b9b0;
  line-height: 1.6;
  max-width: 560px;
}

/* ─── CONTACT SECTION ─────────────────────────────────────── */

.contact-section {
  background: #f6f5f3;
  padding: 100px 10%;
}

.contact-inner {
  display: flex;
  gap: 80px;
  align-items: flex-start;
}

/* ─── FORM ────────────────────────────────────────────────── */

.contact-form-wrap {
  flex: 1;
}

.contact-form-wrap h2 {
  font-family: "Abhaya Libre", serif;
  font-weight: 700;
  font-size: 40px;
  color: #1a1a1a;
  margin-bottom: 36px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 24px;
}

.form-group label {
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  font-size: 14px;
  color: #3a3a3a;
  letter-spacing: 0.5px;
}

.form-group input,
.form-group select,
.form-group textarea {
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  font-size: 15px;
  color: #1a1a1a;
  background: #ffffff;
  border: 1.5px solid #e0ddd8;
  border-radius: 10px;
  padding: 12px 16px;
  outline: none;
  transition: border-color 0.2s ease;
  resize: vertical;
  width: 100%;
  box-sizing: border-box;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: #5a5a5a;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: #aaa;
}

.form-group select {
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg width='16' height='16' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M6 9L12 15L18 9' stroke='%23888' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  cursor: pointer;
}

.contact-submit-btn {
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  font-size: 15px;
  color: #ffffff;
  background: #333333;
  border: none;
  border-radius: 12px;
  padding: 14px 32px;
  cursor: pointer;
  transition: background 0.2s ease;
  margin-top: 8px;
}

.contact-submit-btn:hover {
  background: #1a1a1a;
}

.contact-success-msg {
  font-family: "Poppins", sans-serif;
  font-size: 14px;
  color: #e7c873;
  margin-top: 16px;
  display: none;
}

/* ─── INFO CARDS ──────────────────────────────────────────── */

.contact-info-wrap {
  flex: 0 0 300px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-info-card {
  background: #ffffff;
  border-radius: 12px;
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.contact-info-icon {
  font-size: 22px;
  color: #5a5a5a;
  line-height: 1;
  margin-bottom: 4px;
}

.contact-info-card h3 {
  font-family: "Abhaya Libre", serif;
  font-weight: 700;
  font-size: 22px;
  color: #1a1a1a;
  margin: 0;
}

.contact-info-card p {
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  font-size: 14px;
  color: #888;
  margin: 0;
  line-height: 1.5;
}

.contact-info-card a,
.contact-info-card span {
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  font-size: 14px;
  color: #333333;
  text-decoration: none;
}

.contact-info-card a:hover {
  color: #1a1a1a;
  text-decoration: underline;
}

/* ─── FAQ ─────────────────────────────────────────────────── */

.faq-section {
  background: #f1f1f1;
  padding: 100px 10%;
}

.faq-header {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 60px;
}

.faq-header h2 {
  font-family: "Abhaya Libre", serif;
  font-weight: 400;
  font-size: 48px;
  color: #000000;
  margin: 0 20px;
}

.faq-header::before,
.faq-header::after {
  content: "";
  flex: 1;
  border-bottom: 6px solid #d9d9d9;
}

.faq-list {
  max-width: 780px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.faq-item {
  border-bottom: 1.5px solid #e0ddd8;
  background: transparent;
}

.faq-item summary {
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  font-size: 17px;
  color: #1a1a1a;
  padding: 22px 0;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "+";
  font-size: 22px;
  font-weight: 300;
  color: #888;
  flex-shrink: 0;
  transition: transform 0.2s ease;
}

.faq-item[open] summary::after {
  content: "−";
}

.faq-item p {
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  font-size: 15px;
  color: #5a5a5a;
  line-height: 1.8;
  padding: 0 0 22px 0;
  margin: 0;
}

/* ═══════════════════════════════════════════════════════════
   RESPONSIVE — CONTACT PAGE
═══════════════════════════════════════════════════════════ */

@media (max-width: 768px) {
  .page-hero {
    margin-top: 64px;
    padding: 60px 6%;
    min-height: 280px;
  }

  .page-hero-content h1 {
    font-size: 40px;
  }

  .page-hero-content p {
    font-size: 16px;
  }

  .contact-section {
    padding: 60px 6%;
  }

  .contact-inner {
    flex-direction: column;
    gap: 50px;
  }

  .contact-info-wrap {
    flex: none;
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }

  .contact-form-wrap h2 {
    font-size: 32px;
  }

  .faq-section {
    padding: 60px 6%;
  }

  .faq-header h2 {
    font-size: 32px;
  }

  .faq-item summary {
    font-size: 15px;
  }
}

@media (max-width: 480px) {
  .page-hero-content h1 {
    font-size: 32px;
  }

  .contact-info-wrap {
    grid-template-columns: 1fr;
  }

  .faq-header h2 {
    font-size: 26px;
  }
}
