/* style/contact.css */

/* Base styles for the contact page */
.page-contact {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: #ffffff; /* Default text color for dark background */
  background-color: var(--primary-color, #0A192F); /* Inherit from shared or use primary color */
}

.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;
  color: var(--secondary-color, #FFD700);
  text-align: center;
  margin-bottom: 40px;
  position: relative;
  padding-bottom: 15px;
}

.page-contact__section-title::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background-color: var(--secondary-color, #FFD700);
  border-radius: 2px;
}

.page-contact__description {
  font-size: 18px;
  text-align: center;
  max-width: 800px;
  margin: 0 auto 50px auto;
  color: #f0f0f0;
}

/* Hero Section */
.page-contact__hero-section {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 80px 20px 40px 20px;
  padding-top: var(--header-offset, 120px); /* Fixed header offset */
  overflow: hidden;
  text-align: center;
  background-color: var(--primary-color, #0A192F);
  background-size: cover;
  background-position: center;
}

.page-contact__hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6); /* Dark overlay for text readability */
  z-index: 1;
}

.page-contact__hero-section .page-contact__container {
  position: relative;
  z-index: 2;
  max-width: 900px;
}

.page-contact__main-title {
  font-size: 48px;
  font-weight: bold;
  color: var(--secondary-color, #FFD700);
  margin-bottom: 20px;
  line-height: 1.2;
}

.page-contact__hero-section .page-contact__description {
  font-size: 20px;
  margin-bottom: 40px;
  color: #ffffff;
}

.page-contact__cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  margin-bottom: 40px;
}

.page-contact__cta-button {
  display: inline-block;
  padding: 15px 35px;
  background-color: var(--secondary-color, #FFD700);
  color: var(--primary-color, #0A192F);
  text-decoration: none;
  border-radius: 8px;
  font-size: 18px;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  border: none;
  cursor: pointer;
  white-space: nowrap;
  word-wrap: break-word; /* Allow text wrapping */
  max-width: 100%; /* Ensure button doesn't overflow */
  box-sizing: border-box; /* Include padding in width */
}

.page-contact__cta-button:hover {
  background-color: #e6c200; /* Slightly darker gold */
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.page-contact__cta-button--secondary {
  background-color: var(--primary-color, #0A192F);
  color: var(--secondary-color, #FFD700);
  border: 2px solid var(--secondary-color, #FFD700);
}

.page-contact__cta-button--secondary:hover {
  background-color: #1a2a47; /* Slightly lighter dark blue */
  color: #e6c200;
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

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

/* Contact Information Section */
.page-contact__info-section {
  padding: 80px 0;
  background-color: #1a2a47; /* Slightly lighter dark blue for contrast */
}

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

.page-contact__info-card {
  background-color: rgba(255, 255, 255, 0.08); /* Semi-transparent white */
  padding: 30px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease;
}

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

.page-contact__info-card-title {
  font-size: 24px;
  color: var(--secondary-color, #FFD700);
  margin-bottom: 15px;
}

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

.page-contact__info-link {
  color: var(--secondary-color, #FFD700);
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s ease;
}

.page-contact__info-link:hover {
  color: #e6c200;
  text-decoration: underline;
}

.page-contact__info-list {
  list-style: none;
  padding: 0;
  margin: 0;
  color: #f0f0f0;
}

.page-contact__info-list li {
  margin-bottom: 5px;
}

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

.page-contact__social-icon-link {
  display: block;
  width: 48px;
  height: 48px;
  transition: transform 0.3s ease;
}

.page-contact__social-icon-link:hover {
  transform: translateY(-3px);
}

.page-contact__social-icon-link img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 50%; /* Make social icons round */
   /* Ensure images are not too small */
   /* Ensure images are not too small */
}