:root {
  --primary-color: #1A73E8;
  --secondary-color: #FFD700;
  --text-dark: #333333;
  --text-light: #ffffff;
  --bg-dark: #1a1a1a; /* Adjusted to be slightly lighter than body #0a0a0a for layered dark sections */
  --bg-light: #f8f9fa;
  --border-color: #e0e0e0;
}

.page-contact {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: var(--text-light); /* Default text color for page content on dark body background */
  background-color: #0a0a0a; /* Matches body background as per instruction */
}

/* Fixed navigation bar spacing */
.page-contact__intro-section {
  padding-top: 120px; /* Desktop: Adjust based on fixed header height */
  padding-bottom: 60px;
  background: var(--primary-color); /* Dark section background */
  color: var(--text-light);
  text-align: center;
}

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

.page-contact__section-title {
  font-size: 36px;
  font-weight: bold;
  margin-bottom: 20px;
  color: inherit; /* Inherit color from parent section */
}

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

.page-contact__highlight {
  color: var(--secondary-color); /* Use gold for highlights */
  font-weight: bold;
}

.page-contact__intro-image-wrapper {
  width: 100%;
  max-width: 100%;
  overflow: hidden;
  box-sizing: border-box;
}

.page-contact__responsive-image {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 40px auto;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-contact__cta-button {
  display: inline-block;
  padding: 15px 40px;
  background: var(--secondary-color); /* Gold button */
  color: var(--text-dark); /* Dark text on gold */
  text-decoration: none;
  border-radius: 8px;
  font-size: 18px;
  font-weight: bold;
  margin-top: 20px;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  border: none;
  cursor: pointer;
}

.page-contact__cta-button:hover {
  background: #e6c200; /* Darker gold on hover */
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

/* Contact Info Section */
.page-contact__info-section {
  padding: 60px 0;
  background: var(--bg-light); /* Light background for contrast */
  color: var(--text-dark);
}

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

.page-contact__info-card {
  background: #ffffff;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  padding: 30px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-contact__info-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.page-contact__info-icon {
  width: 100px; /* Visually scaled, actual image is >= 200px */
  height: 100px;
  max-width: 100%; /* Ensure responsiveness */
  height: auto;
  margin-bottom: 20px;
  object-fit: contain; /* Ensure full icon is visible */
}

.page-contact__info-title {
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 15px;
  color: var(--primary-color);
}

.page-contact__info-text {
  font-size: 16px;
  margin-bottom: 15px;
}

.page-contact__info-link,
.page-contact__social-link {
  color: var(--primary-color);
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s ease;
  display: block; /* For email/phone links */
  margin-top: 10px;
}

.page-contact__info-link:hover,
.page-contact__social-link:hover {
  color: #0d47a1; /* Darker blue */
  text-decoration: underline;
}

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

/* Contact Form Section */
.page-contact__form-section {
  padding: 60px 0;
  background: var(--bg-dark); /* Dark background */
  color: var(--text-light);
  text-align: center;
}