/* style/contact.css */
.page-contact {
  font-family: Arial, sans-serif;
  color: #E0E0E0; /* Light gray for general text on dark background */
  background-color: #0A192F; /* Primary brand color */
  line-height: 1.6;
}

.page-contact-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.page-contact-hero {
  background: linear-gradient(135deg, #0A192F 0%, #2A3B4F 100%); /* Dark gradient for hero */
  padding: 100px 0;
  text-align: center;
  color: #FFFFFF; /* White text on dark hero */
}

.page-contact-hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  color: #FFD700; /* Accent color for title */
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-contact-hero-description {
  font-size: 1.2em;
  max-width: 800px;
  margin: 0 auto;
}

.page-contact-section {
  padding: 60px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.page-contact-section:last-of-type {
  border-bottom: none;
}

.page-contact-section-title {
  font-size: 2.5em;
  color: #FFD700; /* Accent color for section titles */
  text-align: center;
  margin-bottom: 30px;
}

.page-contact-section-description {
  font-size: 1.1em;
  text-align: center;
  max-width: 900px;
  margin: 0 auto 40px;
  color: #B0B0B0; /* Slightly lighter gray for descriptions */
}

.page-contact-highlight {
  color: #FFD700;
  font-weight: bold;
}

.page-contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: flex-start;
}

@media (max-width: 992px) {
  .page-contact-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

.page-contact-form-wrapper {
  background-color: #1A2A40; /* Slightly lighter dark background for form */
  padding: 40px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.page-contact-form-group {
  margin-bottom: 20px;
}

.page-contact-form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: bold;
  color: #FFFFFF; /* White label text */
}

.page-contact-form-group input[type="text"],
.page-contact-form-group input[type="email"],
.page-contact-form-group textarea {
  width: calc(100% - 20px);
  padding: 12px 10px;
  border: 1px solid #445566;
  border-radius: 5px;
  background-color: #0F1D2E; /* Dark input background */
  color: #FFFFFF; /* White input text */
  font-size: 1em;
  transition: border-color 0.3s ease;
}

.page-contact-form-group input::placeholder,
.page-contact-form-group textarea::placeholder {
  color: #778899;
}

.page-contact-form-group input:focus,
.page-contact-form-group textarea:focus {
  border-color: #FFD700;
  outline: none;
}

.page-contact-button {
  display: inline-block;
  padding: 15px 30px;
  background-color: #FFD700; /* Accent color for button */
  color: #0A192F; /* Dark text on accent button */
  text-decoration: none;
  border-radius: 5px;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease, transform 0.2s ease;
  border: none;
  cursor: pointer;
}

.page-contact-button:hover {
  background-color: #E6B800; /* Slightly darker accent on hover */
  transform: translateY(-2px);
}

.page-contact-button-primary {
  background-color: #FFD700;
  color: #0A192F;
}

.page-contact-button-primary:hover {
  background-color: #E6B800;
}

.page-contact-contact-info {
  background-color: #1A2A40; /* Slightly lighter dark background for info */
  padding: 40px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.page-contact-info-list {
  list-style: none;
  padding: 0;
  margin-bottom: 30px;
}

.page-contact-info-list li {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
  font-size: 1.1em;
}

.page-contact-info-icon {
  width: 28px;
  height: 28px;
  margin-right: 15px;
  filter: invert(80%) sepia(90%) saturate(2000%) hue-rotate(0deg) brightness(100%) contrast(100%); /* Gold tint */
}

.page-contact-info-list li a {
  color: #FFD700; /* Accent color for links */
  text-decoration: none;
  transition: color 0.3s ease;
}

.page-contact-info-list li a:hover {
  color: #FFFFFF; /* White on hover */
}

.page-contact-follow-us {
  font-size: 1.1em;
  margin-bottom: 20px;
  color: #B0B0B0;
}

.page-contact-social-links {
  display: flex;
  gap: 20px;
}

.page-contact-social-icon {
  width: 40px;
  height: 40px;
  filter: invert(80%) sepia(90%) saturate(2000%) hue-rotate(0deg) brightness(100%) contrast(100%); /* Gold tint */
  transition: transform 0.3s ease;
}

.page-contact-social-icon:hover {
  transform: translateY(-3px);
  filter: invert(100%) sepia(0%) saturate(0%) hue-rotate(0deg) brightness(100%) contrast(100%); /* White on hover */
}

.page-contact-faq-list {
  margin-top: 40px;
}

.page-contact-faq-item {
  background-color: #1A2A40;
  border-radius: 10px;
  padding: 25px;
  margin-bottom: 20px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
}

.page-contact-faq-question {
  font-size: 1.3em;
  color: #FFFFFF; /* White question text */
  margin-bottom: 10px;
}

.page-contact-faq-answer {
  font-size: 1em;
  color: #B0B0B0; /* Lighter gray answer text */
}

.page-contact-faq-answer a {
  color: #FFD700;
  text-decoration: none;
  font-weight: bold;
}

.page-contact-faq-answer a:hover {
  text-decoration: underline;
}

.page-contact-cta-bottom {
  text-align: center;
  padding-top: 40px;
}

.page-contact-cta-bottom p {
  font-size: 1.3em;
  margin-bottom: 25px;
  color: #FFFFFF;
}

/* Floating Promotion */
.page-contact-floating-promo {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background-color: #FFD700; /* Accent color for promo */
  color: #0A192F; /* Dark text on accent background */
  padding: 10px 15px;
  border-radius: 50px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  display: flex;
  align-items: center;
  gap: 10px;
  z-index: 1000;
  animation: page-contact-bounce 2s infinite;
}

.page-contact-floating-promo a {
  display: flex;
  align-items: center;
  text-decoration: none;
  color: #0A192F;
  font-weight: bold;
}

.page-contact-promo-icon {
  width: 30px;
  height: 30px;
  filter: none; /* Icon already in brand color */
}

.page-contact-promo-text {
  font-size: 1em;
  margin-right: 10px;
}

.page-contact-close-promo {
  background: none;
  border: none;
  color: #0A192F;
  font-size: 1.2em;
  cursor: pointer;
  padding: 0 5px;
  transition: transform 0.2s ease;
}

.page-contact-close-promo:hover {
  transform: scale(1.2);
}

@keyframes page-contact-bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

@media (max-width: 768px) {
  .page-contact-hero-title {
    font-size: 2.5em;
  }
  .page-contact-section-title {
    font-size: 2em;
  }
  .page-contact-floating-promo {
    bottom: 10px;
    right: 10px;
    padding: 8px 12px;
  }
  .page-contact-promo-text {
    font-size: 0.9em;
  }
  .page-contact-promo-icon {
    width: 25px;
    height: 25px;
  }
}

@media (max-width: 480px) {
  .page-contact-hero-title {
    font-size: 2em;
  }
  .page-contact-section-title {
    font-size: 1.8em;
  }
  .page-contact-form-wrapper, .page-contact-contact-info {
    padding: 25px;
  }
  .page-contact-social-links {
    justify-content: center;
  }
  .page-contact-floating-promo {
    left: 50%;
    transform: translateX(-50%);
    right: auto;
    bottom: 5px;
  }
}