/* style/contact.css */

/* Base styles for the contact page */
.page-contact {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: #333333; /* Default text color for light backgrounds */
  background-color: #ffffff; /* Explicitly set for light background sections */
}

/* Container for consistent spacing */
.page-contact__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
}

/* Center content utility */
.page-contact__center-content {
  text-align: center;
}

/* Section Titles and Descriptions */
.page-contact__section-title {
  font-size: 2.5em;
  color: #26A9E0; /* Brand color for titles */
  margin-bottom: 20px;
  font-weight: bold;
  text-align: center;
}

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

/* Dark background sections */
.page-contact__dark-section {
  background-color: #26A9E0; /* Main brand color */
  color: #ffffff; /* White text for contrast */
  padding: 80px 0;
}

.page-contact__dark-section .page-contact__section-title,
.page-contact__dark-section .page-contact__section-description,
.page-contact__dark-section h3 {
  color: #ffffff; /* Ensure all text is white on dark background */
}

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

/* Hero Section */
.page-contact__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 100px 20px; /* Base padding */
  /* Assuming shared.css sets padding-top on body, so this section starts below it. */
}

.page-contact__hero-title {
  font-size: 3em;
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1.2;
  color: #ffffff; /* White text on brand color background */
}

.page-contact__hero-description {
  font-size: 1.2em;
  margin-bottom: 40px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  color: #ffffff; /* White text on brand color background */
}

/* CTA Button */
.page-contact__cta-button {
  display: inline-block;
  padding: 15px 40px;
  background: #EA7C07; /* Login color for CTA */
  color: #ffffff;
  text-decoration: none;
  border-radius: 8px;
  font-size: 1.1em;
  font-weight: bold;
  transition: all 0.3s ease;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  border: none;
}

.page-contact__cta-button:hover {
  background: #d46f06; /* Darken #EA7C07 */
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
}

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

.page-contact__contact-card {
  background: #f9f9f9; /* Slightly off-white for cards on light background */
  border-radius: 10px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid #e0e0e0; /* Subtle border for definition */
}

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

.page-contact__contact-icon {
  width: 200px; /* Min size 200x200 for content images */
  height: 150px;
  object-fit: cover;
  margin-bottom: 20px;
  border-radius: 5px;
}

.page-contact__card-title {
  font-size: 1.6em;
  color: #26A9E0; /* Brand color for card titles */
  margin-bottom: 15px;
}

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

.page-contact__card-link,
.page-contact__social-link {
  display: inline-block;
  color: #EA7C07; /* Login color for links */
  text-decoration: none;
  font-weight: bold;
  padding: 8px 15px;
  border: 1px solid #EA7C07;
  border-radius: 5px;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.page-contact__card-link:hover,
.page-contact__social-link:hover {
  background-color: #EA7C07;
  color: #ffffff;
}

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

/* Why Choose Us for Support Section */
.page-contact__why-us-support-section {
  padding: 80px 0;
}

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