/* style/contact.css */
.page-contact {
  font-family: 'Arial', sans-serif;
  color: #333;
  line-height: 1.6;
}

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

/* Hero Section */
.page-contact__hero {
  background-color: #003366; /* Primary color */
  color: #fff;
  padding: 80px 0;
  text-align: center;
  background-image: url('[GALLERY:bg:abstract,geometric,blue_gold]');
  background-size: cover;
  background-position: center;
}

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

.page-contact__hero-description {
  font-size: 1.2em;
  max-width: 800px;
  margin: 0 auto;
  opacity: 0.9;
}

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

/* Section Titles */
.page-contact__section-title {
  font-size: 2.5em;
  color: #003366; /* Primary color */
  text-align: center;
  margin-bottom: 20px;
  padding-top: 60px;
  font-weight: bold;
}

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

/* Contact Methods */
.page-contact__methods {
  padding: 60px 0;
  background-color: #f8f8f8;
}

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

.page-contact__method-item {
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  padding: 30px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-contact__method-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.page-contact__method-icon {
  width: 60px;
  height: 60px;
  margin-bottom: 20px;
  filter: drop-shadow(2px 2px 3px rgba(0, 51, 102, 0.3)); /* Primary color shadow */
}

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

.page-contact__method-text {
  color: #666;
  margin-bottom: 25px;
}

/* Buttons */
.page-contact__btn {
  display: inline-block;
  padding: 12px 25px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, color 0.3s ease, transform 0.2s ease;
}

.page-contact__btn--primary {
  background-color: #FFD700; /* Secondary color */
  color: #003366; /* Text color with good contrast */
  border: 2px solid #FFD700;
}

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

.page-contact__btn--secondary {
  background-color: #003366; /* Primary color */
  color: #FFD700; /* Text color with good contrast */
  border: 2px solid #003366;
}

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

/* Contact Form */
.page-contact__form-section {
  padding: 60px 0;
  background-color: #fff;
}

.page-contact__form {
  max-width: 700px;
  margin: 40px auto 0;
  padding: 30px;
  background-color: #fefefe;
  border-radius: 10px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

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

.page-contact__form-label {
  display: block;
  margin-bottom: 8px;
  font-weight: bold;
  color: #003366;
}

.page-contact__form-input,
.page-contact__form-textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid #ddd;
  border-radius: 5px;
  font-size: 1em;
  color: #333;
  box-sizing: border-box;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.page-contact__form-input:focus,
.page-contact__form-textarea:focus {
  border-color: #FFD700; /* Secondary color for focus */
  box-shadow: 0 0 0 3px rgba(255, 215, 0, 0.2);
  outline: none;
}

.page-contact__form-textarea {
  resize: vertical;
}

/* Location Section */
.page-contact__location {
  padding: 60px 0;
  background-color: #f0f4f8; /* Lighter blue/grey */
}

.page-contact__map-container {
  margin-top: 40px;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.page-contact__map-image {
  width: 100%;
  height: 400px;
  display: block;
  object-fit: cover;
}

.page-contact__address-text {
  text-align: center;
  margin-top: 30px;
  font-size: 1.1em;
  color: #003366;
  font-weight: bold;
}

/* Call to Action */
.page-contact__cta {
  padding: 80px 0;
  background-color: #003366; /* Primary color */
  color: #fff;
  text-align: center;
  background-image: url('[GALLERY:bg:abstract,geometric,blue_gold_subtle]');
  background-size: cover;
  background-position: center;
}

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

.page-contact__cta-description {
  font-size: 1.2em;
  max-width: 800px;
  margin: 0 auto 40px;
  opacity: 0.9;
}

/* Responsive Design */
@media (max-width: 768px) {
  .page-contact__hero-title {
    font-size: 2.5em;
  }

  .page-contact__section-title {
    font-size: 2em;
  }

  .page-contact__method-grid {
    grid-template-columns: 1fr;
  }

  .page-contact__cta-title {
    font-size: 2em;
  }

  .page-contact__map-image {
    height: 300px;
  }
}

@media (max-width: 480px) {
  .page-contact__hero-title {
    font-size: 2em;
  }

  .page-contact__hero-description,
  .page-contact__section-subtitle,
  .page-contact__cta-description {
    font-size: 1em;
  }

  .page-contact__method-item {
    padding: 20px;
  }

  .page-contact__method-icon {
    width: 50px;
    height: 50px;
  }

  .page-contact__method-title {
    font-size: 1.5em;
  }

  .page-contact__btn {
    padding: 10px 20px;
    font-size: 0.9em;
  }

  .page-contact__map-image {
    height: 250px;
  }
}