/* style/contact.css */
.page-contact {
  font-family: 'Arial', sans-serif;
  color: #e5dfd3; /* Light text for dark background */
  background-color: #1A202C;
}

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

/* Hero Section */
.page-contact__hero {
  background: linear-gradient(135deg, #1A202C 0%, #3a404c 100%); /* Darker gradient for hero */
  padding: 100px 0;
  text-align: center;
  border-bottom: 2px solid #FFD700;
}

.page-contact__title {
  font-size: 3.5em;
  color: #FFD700; /* Gold for main title */
  margin-bottom: 20px;
  font-weight: bold;
}

.page-contact__subtitle {
  font-size: 1.5em;
  color: #e5dfd3;
  margin-bottom: 40px;
  line-height: 1.6;
}

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

.page-contact__btn-primary {
  display: inline-block;
  background-color: #FFD700;
  color: #1A202C;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-size: 1.2em;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.3s ease;
  border: none;
  cursor: pointer;
}

.page-contact__btn-primary:hover {
  background-color: #e5c100;
  transform: translateY(-3px);
}

/* Info Section */
.page-contact__info-section {
  padding: 80px 0;
  text-align: center;
}

.page-contact__section-title {
  font-size: 2.8em;
  color: #FFD700;
  margin-bottom: 25px;
  font-weight: bold;
}

.page-contact__section-description {
  font-size: 1.2em;
  color: #e5dfd3;
  max-width: 800px;
  margin: 0 auto 60px;
  line-height: 1.8;
}

.page-contact__contact-methods {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-bottom: 80px;
}

.page-contact__method-card {
  background-color: #2a313e; /* Slightly lighter dark for card background */
  padding: 40px;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid #3a404c;
}

.page-contact__method-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.4);
}

.page-contact__method-icon {
  width: 70px;
  height: 70px;
  margin-bottom: 25px;
  filter: drop-shadow(0 0 5px rgba(255, 215, 0, 0.5)); /* Gold glow for icons */
}

.page-contact__method-title {
  font-size: 1.8em;
  color: #FFD700;
  margin-bottom: 15px;
  font-weight: bold;
}

.page-contact__method-text {
  font-size: 1.1em;
  color: #c7c7c7;
  margin-bottom: 25px;
  line-height: 1.7;
}

.page-contact__method-link {
  color: #FFD700;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  border-bottom: 2px solid #FFD700;
  padding-bottom: 5px;
  transition: color 0.3s ease, border-color 0.3s ease;
}

.page-contact__method-link:hover {
  color: #e5c100;
  border-color: #e5c100;
}

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

.page-contact__social-icon {
  width: 45px;
  height: 45px;
  filter: drop-shadow(0 0 3px rgba(255, 215, 0, 0.4));
  transition: transform 0.3s ease;
}

.page-contact__social-icon:hover {
  transform: scale(1.1);
}

/* Call to Action Bottom */
.page-contact__cta-bottom {
  background-color: #2a313e;
  padding: 60px;
  border-radius: 12px;
  margin-top: 60px;
  border: 1px solid #3a404c;
}

.page-contact__cta-title {
  font-size: 2.5em;
  color: #FFD700;
  margin-bottom: 20px;
  font-weight: bold;
}

.page-contact__cta-text {
  font-size: 1.3em;
  color: #e5dfd3;
  margin-bottom: 40px;
  line-height: 1.7;
}

.page-contact__btn-secondary {
  display: inline-block;
  background-color: #FFD700;
  color: #1A202C;
  padding: 18px 35px;
  border-radius: 8px;
  text-decoration: none;
  font-size: 1.3em;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.3s ease;
  border: none;
  cursor: pointer;
}

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

/* Responsive Design */
@media (max-width: 992px) {
  .page-contact__title {
    font-size: 2.8em;
  }
  .page-contact__subtitle {
    font-size: 1.3em;
  }
  .page-contact__section-title {
    font-size: 2.2em;
  }
  .page-contact__cta-title {
    font-size: 2em;
  }
  .page-contact__contact-methods {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  }
  .page-contact__method-card {
    padding: 30px;
  }
}

@media (max-width: 768px) {
  .page-contact__hero {
    padding: 80px 0;
  }
  .page-contact__title {
    font-size: 2.2em;
  }
  .page-contact__subtitle {
    font-size: 1.1em;
  }
  .page-contact__section-title {
    font-size: 1.8em;
  }
  .page-contact__section-description {
    font-size: 1em;
    margin-bottom: 40px;
  }
  .page-contact__contact-methods {
    grid-template-columns: 1fr;
  }
  .page-contact__method-card {
    padding: 25px;
  }
  .page-contact__method-icon {
    width: 60px;
    height: 60px;
  }
  .page-contact__method-title {
    font-size: 1.5em;
  }
  .page-contact__method-text {
    font-size: 0.95em;
  }
  .page-contact__cta-bottom {
    padding: 40px;
  }
  .page-contact__cta-title {
    font-size: 1.8em;
  }
  .page-contact__cta-text {
    font-size: 1.1em;
    margin-bottom: 30px;
  }
  .page-contact__btn-primary, .page-contact__btn-secondary {
    padding: 12px 25px;
    font-size: 1.1em;
  }
}

@media (max-width: 480px) {
  .page-contact__hero {
    padding: 60px 0;
  }
  .page-contact__title {
    font-size: 1.8em;
  }
  .page-contact__subtitle {
    font-size: 1em;
  }
  .page-contact__section-title {
    font-size: 1.5em;
  }
  .page-contact__cta-title {
    font-size: 1.5em;
  }
  .page-contact__cta-text {
    font-size: 1em;
  }
  .page-contact__btn-primary, .page-contact__btn-secondary {
    padding: 10px 20px;
    font-size: 1em;
  }
  .page-contact__method-card {
    padding: 20px;
  }
  .page-contact__method-icon {
    width: 50px;
    height: 50px;
  }
  .page-contact__method-title {
    font-size: 1.3em;
  }
  .page-contact__social-icon {
    width: 40px;
    height: 40px;
  }
}