/* style/contact.css */

/* Root variables for colors */
:root {
  --primary-color: #F2C14E;
  --secondary-color: #FFD36B;
  --card-bg: #111111;
  --text-main: #FFF6D6;
  --border-color: #3A2A12;
  --glow-color: #FFD36B;
  --button-gradient: linear-gradient(180deg, #FFD86A 0%, #DDA11D 100%);
}

.page-contact {
  color: var(--text-main); /* Ensure light text on dark body background */
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
}

.page-contact__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.page-contact__section-title {
  font-size: 2.5em;
  font-weight: 700;
  color: var(--text-main);
  text-align: center;
  margin-bottom: 20px;
  line-height: 1.2;
  letter-spacing: 0.05em;
}

.page-contact__section-description {
  font-size: 1.1em;
  color: var(--text-main);
  text-align: center;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  opacity: 0.9;
}

.page-contact__card {
  background: var(--card-bg);
  border: 1px solid var(--border-color);
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  color: var(--text-main);
}

.page-contact__main-title {
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0.05em;
  color: var(--text-main);
  text-align: center;
  margin-bottom: 20px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  /* Use clamp for responsive font size without fixed large values */
  font-size: clamp(2.2em, 4vw, 3.2em);
}

/* Hero Section */
.page-contact__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 80px 20px;
  padding-top: 10px; /* Small top padding, body handles header offset */
  overflow: hidden;
  min-height: 500px;
}

.page-contact__hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
  opacity: 0.3; /* Slightly dim image for text readability */
}

.page-contact__hero-content {
  position: relative;
  z-index: 1;
  max-width: 900px;
  text-align: center;
  padding: 20px;
  background: rgba(0, 0, 0, 0.5); /* Semi-transparent background for text readability */
  border-radius: 10px;
}

.page-contact__description {
  font-size: 1.2em;
  color: var(--text-main);
  opacity: 0.9;
  max-width: 700px;
  margin: 0 auto 30px;
}

/* Form Section */
.page-contact__form-section {
  position: relative;
  padding: 60px 0;
  background: #0A0A0A; /* Use the main background color */
  display: flex;
  flex-direction: column;
  align-items: center;
}

.page-contact__form-background-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
  opacity: 0.1;
}

.page-contact__contact-form {
  background: var(--card-bg);
  padding: 40px;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.5);
  max-width: 700px;
  width: 100%;
  z-index: 1;
}

.page-contact__form-group {
  margin-bottom: 20px;
}

.page-contact__label {
  display: block;
  margin-bottom: 8px;
  font-weight: bold;
  color: var(--text-main);
}

.page-contact__input,
.page-contact__textarea {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid var(--border-color);
  border-radius: 5px;
  background: #1e1e1e; /* Slightly lighter dark for input fields */
  color: var(--text-main);
  font-size: 1em;
  box-sizing: border-box;
}

.page-contact__input::placeholder,
.page-contact__textarea::placeholder {
  color: rgba(255, 246, 214, 0.6);
}

.page-contact__input:focus,
.page-contact__textarea:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(242, 193, 78, 0.3);
}

.page-contact__submit-button {
  display: block;
  width: 100%;
  padding: 15px 25px;
  background: var(--button-gradient);
  color: #ffffff;
  border: none;
  border-radius: 5px;
  font-size: 1.1em;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  text-align: center;
}

.page-contact__submit-button:hover {
  opacity: 0.9;
  box-shadow: 0 0 15px var(--glow-color);
}

/* Info Section */
.page-contact__info-section {
  position: relative;
  padding: 60px 0;
  background: #0A0A0A;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.page-contact__info-background-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
  opacity: 0.1;
}

.page-contact__info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
  z-index: 1;
}

.page-contact__info-item {
  text-align: center;
  padding: 30px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-contact__info-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(242, 193, 78, 0.2);
}

.page-contact__info-icon {
  font-size: 3em;
  margin-bottom: 15px;
  display: block;
  color: var(--primary-color);
}

.page-contact__info-title {
  font-size: 1.5em;
  color: var(--text-main);
  margin-bottom: 10px;
}

.page-contact__info-text {
  color: var(--text-main);
  opacity: 0.8;
  margin-bottom: 20px;
}

.page-contact__btn-link {
  display: inline-block;
  padding: 10px 20px;
  background: var(--button-gradient);
  color: #ffffff;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, box-shadow 0.3s ease;
}

.page-contact__btn-link:hover {
  opacity: 0.9;
  box-shadow: 0 0 10px var(--glow-color);
}

/* Why Support Section */
.page-contact__why-support-section {
  padding: 60px 0;
  background: #0A0A0A;
}

/* FAQ Section */
.page-contact__faq-section {
  position: relative;
  padding: 60px 0;
  background: #0A0A0A;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.page-contact__faq-background-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
  opacity: 0.1;
}

.page-contact__faq-list {
  max-width: 900px;
  width: 100%;
  margin-top: 40px;
  z-index: 1;
}

.page-contact__faq-item {
  background: var(--card-bg);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.page-contact__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
  cursor: pointer;
  background: #1a1a1a; /* Slightly lighter card background for question */
  color: var(--text-main);
  font-size: 1.2em;
  font-weight: bold;
  transition: background-color 0.3s ease;
}

.page-contact__faq-question:hover {
  background: #2a2a2a;
}

.page-contact__faq-question h3 {
  margin: 0;
  color: var(--text-main);
  font-size: 1em;
}

.page-contact__faq-toggle {
  font-size: 1.5em;
  line-height: 1;
  color: var(--primary-color);
  transition: transform 0.3s ease;
}

.page-contact__faq-item.active .page-contact__faq-toggle {
  transform: rotate(45deg);
}