:root {
  --primary-color: #0A192F;
  --secondary-color: #FFD700;
  --text-light: #ffffff;
  --text-dark: #333333;
  --background-dark: #1a2a44; /* Body background from shared */
  --card-bg-light: #ffffff;
  --card-bg-dark: rgba(255, 255, 255, 0.08); /* Slightly transparent white on dark body bg */
  --border-color: #3f5171;
  --input-bg: #2a3d5e;
  --input-text: #ffffff;
}

.page-contact-us {
  font-family: 'Arial', sans-serif;
  color: var(--text-light); /* Default text color for the page content, contrasting with dark body bg */
  background-color: transparent; /* Main content background is transparent to show body background */
  padding-top: var(--header-offset, 120px); /* Ensure content is below fixed header */
}

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

.page-contact-us__section-title {
  font-size: 36px;
  font-weight: 700;
  color: var(--secondary-color); /* Gold color for main titles */
  text-align: center;
  margin-bottom: 20px;
  padding-top: 40px;
  line-height: 1.2;
}

.page-contact-us__section-description {
  font-size: 18px;
  color: var(--text-light);
  text-align: center;
  margin-bottom: 50px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

/* Hero Section */
.page-contact-us__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 60px 20px;
  background: linear-gradient(135deg, var(--primary-color) 0%, #0A192F 100%); /* Slightly darker gradient for hero */
}

.page-contact-us__hero-container {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.page-contact-us__hero-image {
  width: 100%;
  margin-bottom: 30px;
}

.page-contact-us__hero-image img {
  width: 100%;
  height: auto;
  max-width: 100%;
  display: block;
  border-radius: 8px;
  object-fit: cover;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.page-contact-us__hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  width: 100%;
}

.page-contact-us__hero-title {
  font-size: 48px;
  font-weight: 800;
  color: var(--secondary-color);
  margin-bottom: 15px;
  line-height: 1.2;
}

.page-contact-us__hero-description {
  font-size: 20px;
  color: var(--text-light);
  margin-bottom: 30px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

.page-contact-us__cta-button {
  display: inline-block;
  padding: 15px 40px;
  background: var(--secondary-color);
  color: var(--primary-color); /* Dark text on gold button for contrast */
  text-decoration: none;
  border-radius: 5px;
  font-size: 18px;
  font-weight: bold;
  margin-top: 30px;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  max-width: 100%; /* Ensure button responsiveness */
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
}

.page-contact-us__cta-button:hover {
  background: #e6c200; /* Slightly darker gold on hover */
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
}

/* Contact Info Section */
.page-contact-us__info-section {
  padding: 80px 0;
  background-color: var(--background-dark); /* Use body background for section */
}

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

.page-contact-us__method-card {
  background: var(--card-bg-dark);
  border-radius: 10px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid var(--border-color);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.page-contact-us__method-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.page-contact-us__method-card img {
  width: 100%; /* Ensure images are responsive within cards */
  height: 200px; /* Fixed height for consistency */
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 25px;
  max-width: 100%;
  display: block;
}

.page-contact-us__card-title {
  font-size: 24px;
  color: var(--secondary-color);
  margin-bottom: 15px;
  font-weight: 700;
}

.page-contact-us__method-card p {
  font-size: 16px;
  color: var(--text-light);
  line-height: 1.6;
  margin-bottom: 25px;
  flex-grow: 1;
}

.page-contact-us__btn-primary {
  display: inline-block;
  padding: 12px 25px;
  background: var(--secondary-color);
  color: var(--primary-color);
  text-decoration: none;
  border-radius: 5px;
  font-size: 16px;
  font-weight: bold;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  max-width: 100%; /* Ensure button responsiveness */
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
}

.page-contact-us__btn-primary:hover {
  background: #e6c200;
  transform: translateY(-2px);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

/* Contact Form Section */
.page-contact-us__form-section {
  padding: 80px 0;
  background-color: var(--primary-color); /* Darker background for form section */
}