/* style/contact.css */

/* Base styles for the contact page */
.page-contact {
  font-family: Arial, sans-serif;
  color: var(--text-main, #FFF6D6); /* Default text color for dark background */
  background-color: var(--site-bg, #0A0A0A); /* Inherited from shared, but for safety */
  line-height: 1.6;
}

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

/* Hero Section */
.page-contact__hero-section {
  position: relative;
  display: flex;
  flex-direction: column; /* Image on top, content below */
  align-items: center;
  padding-top: 10px; /* Small top padding, body handles --header-offset */
  padding-bottom: 60px;
  text-align: center;
  overflow: hidden; /* Ensure image doesn't overflow */
}

.page-contact__hero-image-wrapper {
  width: 100%;
  max-width: 100%;
  overflow: hidden;
  margin-bottom: 30px;
}

.page-contact__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  min-height: 300px; /* Ensure minimum size */
}

.page-contact__hero-content {
  max-width: 900px;
  padding: 0 20px;
}

.page-contact__main-title {
  font-size: clamp(2.2em, 4vw, 3.5em); /* Responsive font size for H1 */
  color: var(--text-main, #FFF6D6);
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1.2;
  text-shadow: 0 0 10px rgba(255, 211, 107, 0.5); /* Glow effect for main title */
}

.page-contact__hero-description {
  font-size: 1.1em;
  color: var(--text-main, #FFF6D6);
  margin-bottom: 30px;
}

.page-contact__cta-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  margin-top: 30px;
  width: 100%;
}

.page-contact__btn-primary,
.page-contact__btn-secondary,
.page-contact__btn-small {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 30px;
  border-radius: 8px;
  font-size: 1.1em;
  font-weight: bold;
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
  max-width: 100%; /* Ensure responsiveness */
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
  text-align: center;
}

.page-contact__btn-primary {
  background: linear-gradient(180deg, #FFD86A 0%, #DDA11D 100%);
  color: #111111; /* Dark text for bright button */
  border: none;
}

.page-contact__btn-primary:hover {
  filter: brightness(1.1);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(255, 211, 107, 0.4);
}

.page-contact__btn-secondary {
  background: transparent;
  color: #FFD36B; /* Text Main color */
  border: 2px solid #FFD36B;
}

.page-contact__btn-secondary:hover {
  background: #FFD36B;
  color: #111111;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(255, 211, 107, 0.4);
}

.page-contact__btn-small {
  padding: 8px 20px;
  font-size: 0.9em;
  border-radius: 5px;
  background: linear-gradient(180deg, #FFD86A 0%, #DDA11D 100%);
  color: #111111;
  border: none;
  margin-top: 15px;
}

.page-contact__btn-small:hover {
  filter: brightness(1.1);
  transform: translateY(-1px);
}

/* Section Titles and Descriptions */
.page-contact__section-title {
  font-size: clamp(1.8em, 3.5vw, 2.8em);
  color: var(--text-main, #FFF6D6);
  font-weight: 700;
  text-align: center;
  margin-bottom: 20px;
  margin-top: 60px;
  line-height: 1.3;
}

.page-contact__section-description {
  font-size: 1em;
  color: var(--text-main, #FFF6D6);
  text-align: center;
  max-width: 800px;
  margin: 0 auto 40px auto;
}

/* Contact Info Section */
.page-contact__contact-info-section {
  padding: 60px 0;
  background-color: var(--background, #0A0A0A);
}

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

.page-contact__info-card {
  background-color: var(--card-bg, #111111); /* Card BG */
  padding: 30px;
  border-radius: 12px;
  text-align: center;
  border: 1px solid var(--border, #3A2A12);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-contact__info-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(255, 211, 107, 0.2);
}

.page-contact__info-icon {
  width: 200px; /* Enforce min image size */
  height: 200px; /* Enforce min image size */
  object-fit: contain;
  margin-bottom: 20px;
  filter: drop-shadow(0 0 5px rgba(255, 211, 107, 0.3)); /* Subtle glow */
}

.page-contact__info-card-title {
  font-size: 1.6em;
  color: var(--text-main, #FFF6D6);
  margin-bottom: 15px;
}

.page-contact__info-card-text {
  font-size: 0.95em;
  color: var(--text-main, #FFF6D6);
  margin-bottom: 20px;
}

.page-contact__info-link,
.page-contact__info-phone {
  font-size: 1.1em;
  color: var(--glow, #FFD36B); /* Glow color for links */
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s ease;
}

.page-contact__info-link:hover {
  color: #F2C14E; /* Primary color on hover */
  text-decoration: underline;
}

/* Contact Form Section */
.page-contact__contact-form-section {
  padding: 60px 0;
  background-color: var(--site-bg, #0A0A0A);
}

.page-contact__form {
  max-width: 700px;
  margin: 40px auto 0 auto;
  background-color: var(--card-bg, #111111);
  padding: 40px;
  border-radius: 12px;
  border: 1px solid var(--border, #3A2A12);
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
}

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

.page-contact__form-label {
  display: block;
  font-size: 1em;
  color: var(--text-main, #FFF6D6);
  margin-bottom: 8px;
  font-weight: bold;
}

.page-contact__form-input,
.page-contact__form-textarea {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid var(--border, #3A2A12);
  border-radius: 6px;
  background-color: #0A0A0A; /* Darker input background */
  color: var(--text-main, #FFF6D6);
  font-size: 1em;
  box-sizing: border-box;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.page-contact__form-input:focus,
.page-contact__form-textarea:focus {
  border-color: #FFD36B;
  outline: none;
  box-shadow: 0 0 8px rgba(255, 211, 107, 0.6);
}

.page-contact__form-textarea {
  resize: vertical;
  min-height: 120px;
}

.page-contact__form-submit {
  width: auto;
  margin-top: 20px;
}

/* FAQ Section */
.page-contact__faq-section {
  padding: 60px 0;
  background-color: var(--background, #0A0A0A);
}

.page-contact__faq-list {
  max-width: 900px;
  margin: 40px auto 0 auto;
}

.page-contact__faq-item {
  background-color: var(--card-bg, #111111);
  border: 1px solid var(--border, #3A2A12);
  border-radius: 10px;
  margin-bottom: 15px;
  overflow: hidden;
  transition: background-color 0.3s ease;
}