/* style/contact.css */

/* Base styles for the contact page content */
.page-contact {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #ffffff; /* Body background is dark (#1a1a2e), so text should be light */
  background-color: transparent; /* Inherit from body or shared.css */
}

/* Hero Section */
.page-contact__hero-section {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column; /* Image above text */
  align-items: center;
  justify-content: center;
  padding: 60px 20px;
  padding-top: 10px; /* Small top padding, body handles header offset */
  background-color: #1a1a2e; /* Dark background for this section */
  color: #ffffff;
  text-align: center;
}

.page-contact__hero-image {
  max-width: 100%;
  height: auto;
  display: block;
  border-radius: 10px;
  margin-bottom: 30px; /* Space between image and text */
  object-fit: cover;
  width: 1200px; /* HTML width attribute */
  height: 675px; /* HTML height attribute */
}

.page-contact__hero-content {
  max-width: 900px;
  margin: 0 auto;
}

.page-contact__main-title {
  font-size: clamp(2.2rem, 4vw, 3.5rem); /* Responsive font size */
  font-weight: 700;
  color: #26A9E0; /* Brand primary color for title */
  margin-bottom: 20px;
  line-height: 1.2;
}

.page-contact__intro-text {
  font-size: 1.1rem;
  margin-bottom: 30px;
  color: #f0f0f0;
}

/* Call to Action Button */
.page-contact__cta-button {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.3s ease;
  cursor: pointer;
  max-width: 100%;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
}

.page-contact__btn-primary {
  background-color: #26A9E0; /* Brand primary color */
  color: #ffffff;
  border: 2px solid #26A9E0;
}

.page-contact__btn-primary:hover {
  background-color: #1e87c0;
  transform: translateY(-2px);
}

.page-contact__btn-secondary {
  background-color: #ffffff;
  color: #26A9E0;
  border: 2px solid #26A9E0;
}

.page-contact__btn-secondary:hover {
  background-color: #f0f0f0;
  transform: translateY(-2px);
}

.page-contact__small-button {
  padding: 10px 20px;
  font-size: 0.9rem;
}

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

.page-contact__section-title {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 600;
  margin-bottom: 20px;
  text-align: center;
  line-height: 1.3;
}

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

.page-contact__dark-bg {
  background-color: #1a1a2e; /* Dark background */
  color: #ffffff; /* Light text */
  padding: 80px 0;
}

.page-contact__light-bg {
  background-color: #f8f9fa; /* Light background */
  color: #333333; /* Dark text */
  padding: 80px 0;
}

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

.page-contact__channel-card {
  background-color: #ffffff;
  border-radius: 10px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
  color: #333333; /* Dark text for light card background */
}

.page-contact__channel-card:hover {
  transform: translateY(-5px);
}

.page-contact__channel-icon {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 0 auto 20px;
  width: 400px; /* HTML width attribute */
  height: 300px; /* HTML height attribute */
  border-radius: 8px;
  object-fit: cover;
}

.page-contact__channel-title {
  font-size: 1.4rem;
  font-weight: 600;
  color: #26A9E0;
  margin-bottom: 15px;
}

.page-contact__channel-text {
  font-size: 0.95rem;
  margin-bottom: 20px;
  color: #555555;
}

.page-contact__contact-info {
  font-size: 1rem;
  margin-bottom: 10px;
  color: #333333;
}

.page-contact__text-link {
  color: #26A9E0;
  text-decoration: none;
  font-weight: 500;
}

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

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

.page-contact__guide-item {
  background-color: rgba(255, 255, 255, 0.08); /* Slightly transparent white for dark background */
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
  transition: background-color 0.3s ease;
}

.page-contact__guide-item:hover {
  background-color: rgba(255, 255, 255, 0.15);
}

.page-contact__guide-title {
  font-size: 1.3rem;
  font-weight: 600;
  color: #26A9E0;
  margin-bottom: 15px;
}

.page-contact__guide-text {
  font-size: 1rem;
  color: #cccccc;
}

/* Common Issues Section */
.page-contact__issue-list {
  list-style: none;
  padding: 0;
  margin-top: 40px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 25px;
}