/* style/contact.css */
.page-contact {
  font-family: 'Arial', sans-serif;
  color: #333;
  line-height: 1.6;
}

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

/* Hero Section */
.page-contact__hero-section {
  background-color: #0A2342; /* Main color */
  color: #FFFFFF; /* White text for contrast */
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-contact__hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('[GALLERY:bg:abstract,geometric,blue_gold_pattern]') no-repeat center center/cover;
  opacity: 0.1;
  z-index: 0;
}

.page-contact__hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  color: #FFD700; /* Accent color for title */
  position: relative;
  z-index: 1;
  font-weight: bold;
}

.page-contact__hero-description {
  font-size: 1.2em;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  z-index: 1;
}

/* Buttons */
.page-contact__btn {
  display: inline-block;
  padding: 12px 25px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
  font-size: 1em;
}

.page-contact__btn--primary {
  background-color: #FFD700; /* Accent color */
  color: #0A2342; /* Main color for text */
}

.page-contact__btn--primary:hover {
  background-color: #e6c200; /* Darker accent */
  transform: translateY(-2px);
}

.page-contact__btn--secondary {
  background-color: #0A2342; /* Main color */
  color: #FFD700; /* Accent color for text */
  border: 2px solid #FFD700;
  padding: 10px 23px;
}

.page-contact__btn--secondary:hover {
  background-color: #1a3a5e; /* Slightly lighter main */
  transform: translateY(-2px);
}

.page-contact__btn--large {
  font-size: 1.3em;
  padding: 15px 35px;
}

/* General Section Styling */
.page-contact__section-title {
  font-size: 2.5em;
  color: #0A2342; /* Main color */
  text-align: center;
  margin-bottom: 50px;
  position: relative;
  padding-bottom: 15px;
}

.page-contact__section-title::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background-color: #FFD700; /* Accent color */
  border-radius: 2px;
}

/* Contact Methods Section */
.page-contact__methods-section {
  padding: 80px 0;
  background-color: #f8f8f8;
}

.page-contact__methods-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  text-align: center;
}

.page-contact__method-card {
  background-color: #FFFFFF;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease;
}

.page-contact__method-card:hover {
  transform: translateY(-10px);
}

.page-contact__method-icon {
  width: 80px;
  height: 80px;
  margin-bottom: 20px;
  filter: drop-shadow(0 0 5px rgba(255, 215, 0, 0.5)); /* Gold shadow */
}

.page-contact__method-title {
  font-size: 1.8em;
  color: #0A2342; /* Main color */
  margin-bottom: 15px;
}

.page-contact__method-text {
  color: #555;
  margin-bottom: 20px;
  min-height: 60px; /* Ensure consistent card height */
}

.page-contact__method-info {
  font-weight: bold;
  color: #0A2342;
  margin-bottom: 20px;
}

.page-contact__social-links {
  margin-top: 20px;
  display: flex;
  justify-content: center;
  gap: 15px;
}

.page-contact__social-icon {
  display: inline-flex;
  width: 40px;
  height: 40px;
  background-color: #0A2342; /* Main color */
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  transition: background-color 0.3s ease;
}

.page-contact__social-icon img {
  width: 24px;
  height: 24px;
  filter: invert(1) brightness(2) sepia(1) saturate(1000%) hue-rotate(0deg); /* Make icons gold/white */
}

.page-contact__social-icon:hover {
  background-color: #FFD700; /* Accent color */
}

.page-contact__social-icon:hover img {
  filter: invert(0) brightness(0) sepia(0) saturate(0) hue-rotate(0deg); /* Make icons dark on hover */
}

/* FAQ Section */
.page-contact__faq-section {
  padding: 80px 0;
  text-align: center;
}

.page-contact__faq-description {
  font-size: 1.1em;
  max-width: 900px;
  margin: 0 auto 40px auto;
  color: #555;
}

.page-contact__link {
  color: #0A2342;
  text-decoration: underline;
  font-weight: bold;
}

.page-contact__link:hover {
  color: #FFD700;
}

/* CTA Section */
.page-contact__cta-section {
  background-color: #0A2342; /* Main color */
  color: #FFFFFF;
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-contact__cta-image {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  margin-bottom: 30px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.page-contact__cta-title {
  font-size: 3em;
  color: #FFD700; /* Accent color */
  margin-bottom: 20px;
  font-weight: bold;
}

.page-contact__cta-description {
  font-size: 1.2em;
  max-width: 700px;
  margin: 0 auto 40px auto;
}

/* Responsive Design */
@media (max-width: 768px) {
  .page-contact__hero-title {
    font-size: 2.5em;
  }

  .page-contact__section-title {
    font-size: 2em;
  }

  .page-contact__methods-grid {
    grid-template-columns: 1fr;
  }

  .page-contact__cta-title {
    font-size: 2.2em;
  }

  .page-contact__btn--large {
    font-size: 1.1em;
    padding: 12px 25px;
  }
}

@media (max-width: 480px) {
  .page-contact__hero-title {
    font-size: 2em;
  }

  .page-contact__hero-description,
  .page-contact__faq-description,
  .page-contact__cta-description {
    font-size: 1em;
  }

  .page-contact__section-title {
    font-size: 1.8em;
  }

  .page-contact__method-title {
    font-size: 1.5em;
  }

  .page-contact__method-card {
    padding: 20px;
  }

  .page-contact__cta-title {
    font-size: 1.8em;
  }
}