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

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

.page-contact__hero {
  background: linear-gradient(135deg, #0A2E36 0%, #0A2E36 60%, #1f4bff 100%); /* Dark blue/green to a contrasting deep blue */
  color: #F8F8F8;
  padding: 100px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-contact__hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('[GALLERY:bg:abstract,pattern,subtle]') no-repeat center center/cover;
  opacity: 0.1;
  z-index: 0;
}

.page-contact__hero > div {
  position: relative;
  z-index: 1;
}

.page-contact__title {
  font-size: 3.5em;
  margin-bottom: 20px;
  color: #E0B400; /* Secondary color for emphasis */
  font-weight: bold;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-contact__subtitle {
  font-size: 1.3em;
  max-width: 800px;
  margin: 0 auto 40px auto;
  color: #D3D3D3;
}

.page-contact__cta-button {
  display: inline-block;
  background-color: #E0B400; /* Secondary color for buttons */
  color: #0A2E36; /* Dark text on bright button */
  padding: 15px 30px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease, transform 0.3s ease;
  border: none;
  cursor: pointer;
}

.page-contact__cta-button:hover {
  background-color: #FFD700; /* Slightly brighter gold on hover */
  transform: translateY(-3px);
}

.page-contact__info-section {
  padding: 80px 0;
  background-color: #0A2E36;
}

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

.page-contact__info-card {
  background-color: #1A3F47; /* Slightly lighter dark background */
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease;
}

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

.page-contact__info-icon {
  width: 60px;
  height: 60px;
  margin-bottom: 20px;
  filter: drop-shadow(0 0 5px #E0B400);
}

.page-contact__info-title {
  font-size: 1.8em;
  color: #E0B400;
  margin-bottom: 15px;
}

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

.page-contact__link {
  color: #E0B400;
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s ease;
}

.page-contact__link:hover {
  color: #FFD700;
  text-decoration: underline;
}

.page-contact__form-section {
  padding: 80px 0;
  background-color: #1A3F47;
}

.page-contact__section-title {
  font-size: 2.8em;
  color: #E0B400;
  text-align: center;
  margin-bottom: 20px;
  font-weight: bold;
}

.page-contact__section-description {
  font-size: 1.1em;
  color: #D3D3D3;
  text-align: center;
  max-width: 700px;
  margin: 0 auto 50px auto;
}

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

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

.page-contact__form-label {
  display: block;
  font-size: 1.1em;
  color: #E0B400;
  margin-bottom: 10px;
  font-weight: bold;
}

.page-contact__form-input,
.page-contact__form-textarea {
  width: calc(100% - 20px);
  padding: 12px 10px;
  border: 1px solid #546d72; /* Slightly lighter dark border */
  border-radius: 5px;
  background-color: #0A2E36;
  color: #F8F8F8;
  font-size: 1em;
  transition: border-color 0.3s ease;
}

.page-contact__form-input::placeholder,
.page-contact__form-textarea::placeholder {
  color: #A0A0A0;
}

.page-contact__form-input:focus,
.page-contact__form-textarea:focus {
  border-color: #E0B400;
  outline: none;
}

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

.page-contact__submit-button {
  display: block;
  width: 100%;
  background-color: #E0B400;
  color: #0A2E36;
  padding: 15px 20px;
  border-radius: 5px;
  border: none;
  font-size: 1.2em;
  font-weight: bold;
  cursor: pointer;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.page-contact__submit-button:hover {
  background-color: #FFD700;
  transform: translateY(-2px);
}

.page-contact__map-section {
  padding: 80px 0;
  background-color: #0A2E36;
}

.page-contact__map-placeholder {
  width: 100%;
  height: 400px;
  background-color: #1A3F47;
  border-radius: 10px;
  margin-top: 30px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

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

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

.page-contact__promo-section {
  padding: 80px 0;
  background-color: #1A3F47;
}

.page-contact__promo-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
  text-align: center;
}

.page-contact__promo-text {
  max-width: 800px;
}

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

.page-contact__promo-description {
  font-size: 1.1em;
  color: #D3D3D3;
  margin-bottom: 30px;
}

.page-contact__cta-button--promo {
  background-color: #E0B400;
  color: #0A2E36;
  border: 2px solid #E0B400;
}

.page-contact__cta-button--promo:hover {
  background-color: #FFD700;
  border-color: #FFD700;
}

.page-contact__promo-image-wrapper {
  width: 100%;
  max-width: 600px;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.5);
}

.page-contact__promo-image {
  width: 100%;
  height: auto;
  display: block;
}

/* Responsive adjustments */
@media (min-width: 768px) {
  .page-contact__promo-content {
    flex-direction: row;
    text-align: left;
    justify-content: space-between;
  }
  .page-contact__promo-text {
    flex: 1;
    padding-right: 40px;
  }
  .page-contact__promo-image-wrapper {
    flex: 0 0 400px;
  }
}

@media (max-width: 768px) {
  .page-contact__title {
    font-size: 2.5em;
  }
  .page-contact__subtitle {
    font-size: 1em;
  }
  .page-contact__info-grid {
    grid-template-columns: 1fr;
  }
  .page-contact__section-title {
    font-size: 2em;
  }
  .page-contact__promo-title {
    font-size: 2em;
  }
  .page-contact__form {
    padding: 30px 20px;
  }
  .page-contact__map-placeholder {
    height: 300px;
  }
}

@media (max-width: 480px) {
  .page-contact__hero,
  .page-contact__info-section,
  .page-contact__form-section,
  .page-contact__map-section,
  .page-contact__promo-section {
    padding: 50px 0;
  }
  .page-contact__title {
    font-size: 2em;
  }
  .page-contact__info-title {
    font-size: 1.5em;
  }
  .page-contact__section-title {
    font-size: 1.8em;
  }
  .page-contact__promo-title {
    font-size: 1.8em;
  }
  .page-contact__cta-button,
  .page-contact__submit-button {
    padding: 12px 20px;
    font-size: 1em;
  }
}