.page-contact {
  padding-top: var(--header-offset, 120px);
  color: #333333;
  background-color: #f8f8f8;
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
}

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

.page-contact__hero-section {
  position: relative;
  overflow: hidden;
  background-color: #1a1a1a;
  padding: 80px 0;
  color: #ffffff;
}

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

.page-contact__hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
  padding: 20px;
}

.page-contact__hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  color: #FFD700; /* Gold for luxury */
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  line-height: 1.2;
}

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

.page-contact__hero-actions {
  display: flex;
  justify-content: center;
  gap: 20px;
}

.page-contact__button {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.2s ease;
  font-size: 1.1em;
  text-align: center;
}

.page-contact__button--primary {
  background-color: #FF4500;
  color: #ffffff;
  box-shadow: 0 4px 15px rgba(255, 69, 0, 0.4);
}

.page-contact__button--primary:hover {
  background-color: #e63e00;
  transform: translateY(-2px);
}

.page-contact__button--secondary {
  background-color: #1E90FF;
  color: #ffffff;
  box-shadow: 0 4px 15px rgba(30, 144, 255, 0.4);
}

.page-contact__button--secondary:hover {
  background-color: #1565b3;
  transform: translateY(-2px);
}

.page-contact__section-title {
  font-size: 2.8em;
  color: #333333;
  text-align: center;
  margin-bottom: 20px;
  margin-top: 60px;
  position: relative;
}

.page-contact__section-title::after {
  content: '';
  display: block;
  width: 80px;
  height: 4px;
  background-color: #FF4500;
  margin: 15px auto 0;
  border-radius: 2px;
}

.page-contact__section-intro {
  font-size: 1.1em;
  text-align: center;
  max-width: 800px;
  margin: 0 auto 40px;
  color: #555555;
}

.page-contact__methods-section {
  background-color: #ffffff;
  padding: 60px 0;
}

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

.page-contact__method-card {
  background-color: #fefefe;
  border: 1px solid #eee;
  border-radius: 12px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-contact__method-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}

.page-contact__method-icon {
  width: 200px;
  height: 150px;
  object-fit: contain;
  margin-bottom: 20px;
  filter: drop-shadow(0 5px 10px rgba(0,0,0,0.1)); /* Allowed for visual effect, not color change */
}

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

.page-contact__method-description {
  font-size: 1em;
  color: #666666;
  margin-bottom: 25px;
}

.page-contact__button--small {
  padding: 10px 20px;
  font-size: 0.95em;
}

.page-contact__faq-preview-section {
  background-color: #f8f8f8;
  padding: 60px 0;
}

.page-contact__faq-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 25px;
  margin-top: 40px;
}

.page-contact__faq-item {
  background-color: #ffffff;
  border-radius: 10px;
  padding: 25px 30px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  transition: transform 0.2s ease;
}

.page-contact__faq-item:hover {
  transform: translateY(-3px);
}

.page-contact__faq-question {
  font-size: 1.4em;
  color: #1E90FF;
  margin-bottom: 10px;
  cursor: pointer;
}

.page-contact__faq-answer {
  font-size: 1em;
  color: #444444;
  display: none;
  margin-top: 15px;
}

.page-contact__faq-item.active .page-contact__faq-answer {
  display: block;
}

.page-contact__faq-more {
  text-align: center;
  margin-top: 50px;
}

.page-contact__commitment-section {
  background-color: #1a1a1a;
  color: #f0f0f0;
  padding: 80px 0;
}

.page-contact__commitment-section .page-contact__section-title {
  color: #FFD700;
}

.page-contact__commitment-section .page-contact__section-title::after {
  background-color: #1E90FF;
}

.page-contact__commitment-section .page-contact__section-intro {
  color: #cccccc;
}

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

.page-contact__commitment-item {
  background-color: rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-contact__commitment-heading {
  font-size: 1.8em;
  color: #FF4500;
  margin-bottom: 15px;
}

.page-contact__commitment-text {
  font-size: 1em;
  color: #bbbbbb;
  margin-bottom: 20px;
}

.page-contact__call-to-action-section {
  background-color: #f8f8f8;
  padding: 80px 0;
}

.page-contact__cta-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
  background: linear-gradient(135deg, #FF4500 0%, #FFD700 100%);
  border-radius: 15px;
  padding: 40px;
  box-shadow: 0 10px 30px rgba(255, 69, 0, 0.3);
  color: #ffffff;
  text-align: center;
}

.page-contact__cta-image {
  width: 100%;
  max-width: 800px;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
}

.page-contact__cta-text-wrapper {
  max-width: 800px;
}

.page-contact__cta-title {
  font-size: 3em;
  margin-bottom: 20px;
  color: #ffffff;
  text-shadow: 1px 1px 3px rgba(0,0,0,0.3);
}

.page-contact__cta-description {
  font-size: 1.2em;
  margin-bottom: 30px;
}

.page-contact__button--large {
  padding: 18px 40px;
  font-size: 1.3em;
  background-color: #1E90FF;
  color: #ffffff;
  box-shadow: 0 6px 20px rgba(30, 144, 255, 0.4);
}

.page-contact__button--large:hover {
  background-color: #007bff;
}

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

@media (max-width: 768px) {
  .page-contact__hero-title {
    font-size: 2.5em;
  }
  .page-contact__hero-description {
    font-size: 1em;
  }
  .page-contact__hero-actions {
    flex-direction: column;
    gap: 15px;
  }
  .page-contact__button {
    width: 80%;
    margin: 0 auto;
  }
  .page-contact__section-title {
    font-size: 2em;
  }
  .page-contact__section-intro {
    font-size: 1em;
  }
  .page-contact__methods-grid {
    grid-template-columns: 1fr;
  }
  .page-contact__faq-grid {
    grid-template-columns: 1fr;
  }
  .page-contact__cta-title {
    font-size: 2em;
  }
  .page-contact__cta-description {
    font-size: 1em;
  }
  .page-contact__cta-content {
    padding: 30px;
  }
  .page-contact__hero-section {
    padding: 60px 0;
  }
  /* Mobile content area image constraint */
  .page-contact img {
    max-width: 100%;
    height: auto;
  }
  /* Ensure content area images are not small */
  .page-contact__method-icon, 
  .page-contact__cta-image {
    min-width: 200px;
    min-height: 150px;
    width: 100%; /* Override specific widths for responsiveness */
    height: auto; /* Override specific heights for responsiveness */
  }
}

@media (max-width: 480px) {
  .page-contact__hero-title {
    font-size: 2em;
  }
  .page-contact__hero-content {
    padding: 15px;
  }
  .page-contact__button {
    width: 90%;
  }
  .page-contact__section-title {
    font-size: 1.8em;
  }
  .page-contact__method-title {
    font-size: 1.5em;
  }
  .page-contact__faq-question {
    font-size: 1.2em;
  }
  .page-contact__cta-title {
    font-size: 1.8em;
  }
  .page-contact__cta-content {
    padding: 20px;
  }
  .page-contact__commitment-heading {
    font-size: 1.5em;
  }
  .page-contact__button--large {
    font-size: 1.1em;
    padding: 15px 30px;
  }
}