/* style/contact.css */

/* Base Styles for .page-contact */
.page-contact {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #FFF6D6; /* Text Main color for dark body background */
  background-color: transparent; /* Body background is handled by shared.css #0A0A0A */
}

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

.page-contact__section-title {
  font-size: 2.8em;
  color: #F2C14E; /* Primary color for titles */
  text-align: center;
  margin-bottom: 20px;
  font-weight: bold;
}

.page-contact__section-description {
  font-size: 1.1em;
  text-align: center;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  color: #FFF6D6;
}

/* Hero Section */
.page-contact__hero-section {
  background: linear-gradient(135deg, #0A0A0A 0%, rgba(242, 193, 78, 0.1) 100%); /* Blend with body background */
  padding-bottom: 60px;
  padding-top: var(--header-offset, 120px); /* Fixed header spacing */
  display: flex;
  align-items: center;
  min-height: 60vh;
}

.page-contact__hero-content {
  flex: 1;
  padding-right: 40px;
}

.page-contact__main-title {
  color: #F2C14E;
  margin-bottom: 20px;
  font-weight: bold;
  line-height: 1.2;
  /* No fixed font-size for H1, relying on responsive scaling */
}

.page-contact__hero-description {
  font-size: 1.2em;
  margin-bottom: 30px;
  color: #FFF6D6;
}

.page-contact__cta-buttons {
  display: flex;
  gap: 15px;
  margin-top: 30px;
}

.page-contact__btn-primary,
.page-contact__btn-secondary,
.page-contact a[class*="button"],
.page-contact a[class*="btn"] {
  display: inline-block;
  padding: 14px 28px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  text-align: center;
  transition: background-color 0.3s ease, transform 0.2s ease, box-shadow 0.3s ease;
  cursor: pointer;
  max-width: 100%; /* For mobile responsiveness */
  box-sizing: border-box; /* For mobile responsiveness */
  white-space: normal; /* Allow text wrap */
  word-wrap: break-word; /* Allow text wrap */
}

.page-contact__btn-primary {
  background: linear-gradient(180deg, #FFD86A 0%, #DDA11D 100%); /* Button gradient */
  color: #111111; /* Dark text for light button */
  border: none;
  box-shadow: 0 4px 15px rgba(242, 193, 78, 0.4);
}

.page-contact__btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(242, 193, 78, 0.6);
}

.page-contact__btn-secondary {
  background: #111111; /* Card BG color */
  color: #F2C14E; /* Primary color for text */
  border: 2px solid #3A2A12; /* Border color */
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.page-contact__btn-secondary:hover {
  transform: translateY(-2px);
  background: #1a1a1a;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.5);
}

.page-contact__hero-image-wrapper {
  flex: 1;
  text-align: right;
}

.page-contact__hero-image {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.5);
  display: block; /* Ensures no extra space below image */
}

/* Contact Methods Section */
.page-contact__contact-methods {
  padding: 80px 0;
  background-color: #0A0A0A; /* Matches body background */
}

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

.page-contact__card {
  background-color: #111111; /* Card BG color */
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  border: 1px solid #3A2A12; /* Border color */
}

.page-contact__card-icon {
  width: 200px; /* Minimum size requirement */
  height: 150px; /* Minimum size requirement */
  object-fit: contain;
  margin-bottom: 20px;
  border-radius: 8px;
}

.page-contact__card-title {
  color: #F2C14E;
  font-size: 1.8em;
  margin-bottom: 15px;
}

.page-contact__card-text {
  color: #FFF6D6;
  font-size: 1em;
  margin-bottom: 25px;
  flex-grow: 1;
}

.page-contact__note {
  text-align: center;
  margin-top: 50px;
  font-size: 1.1em;
  color: #FFF6D6;
}

.page-contact__text-link {
  color: #FFD36B; /* Glow color for links */
  text-decoration: none;
  font-weight: bold;
}

.page-contact__text-link:hover {
  text-decoration: underline;
}

/* FAQ Section */
.page-contact__faq-section {
  padding: 80px 0;
  background-color: #0A0A0A; /* Matches body background */
}

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

.page-contact__faq-item {
  background-color: #111111; /* Card BG color */
  border: 1px solid #3A2A12; /* Border color */
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

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

.page-contact__faq-question:hover {
  background-color: #222222;
}

.page-contact__faq-question h3 {
  margin: 0;
  color: inherit;
  font-size: 1.1em; /* Ensure consistent font size */
}

.page-contact__faq-toggle {
  font-size: 1.8em;
  line-height: 1;
  transition: transform 0.3s ease;
  color: #FFD36B; /* Glow color */
}

.page-contact__faq-item.active .page-contact__faq-toggle {
  transform: rotate(45deg); /* Plus to Minus */
}

.page-contact__faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 25px;
  transition: max-height 0.3s ease, padding 0.3s ease;
  color: #FFF6D6;
  font-size: 0.95em;
}

.page-contact__faq-item.active .page-contact__faq-answer {
  max-height: 1000px !important; /* Sufficiently large to show content */
  padding: 15px 25px 25px 25px;
}

.page-contact__faq-answer p {
  margin: 0;
  color: #FFF6D6; /* Ensure text color is light */
}

/* Why Choose Us Section */
.page-contact__why-choose-us {
    padding: 80px 0;
    background-color: #0A0A0A;
}

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

.page-contact__feature-item {
    background-color: #111111;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
    text-align: center;
    border: 1px solid #3A2A12;
    display: flex;
    flex-direction: column;
    align-items: center;
}