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

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

.page-contact__hero {
  background-color: #0A2E36;
  color: #fff;
  padding: 80px 0;
  text-align: center;
  background-image: url('[GALLERY:bg:abstract,geometric,dark_pattern]');
  background-size: cover;
  background-position: center;
}

.page-contact__hero-title {
  font-size: 3em;
  margin-bottom: 20px;
  color: #fff;
}

.page-contact__hero-description {
  font-size: 1.2em;
  margin-bottom: 30px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  color: #e0e0e0;
}

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

.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;
  cursor: pointer;
  font-size: 1em;
  border: none;
}

.page-contact__btn--primary {
  background-color: #E74C3C;
  color: #fff;
}

.page-contact__btn--primary:hover {
  background-color: #c0392b;
}

.page-contact__btn--secondary {
  background-color: #0A2E36;
  color: #fff;
  border: 1px solid #0A2E36;
}

.page-contact__btn--secondary:hover {
  background-color: #1a424b;
  border-color: #1a424b;
}

.page-contact__info-section, .page-contact__form-section, .page-contact__location-section {
  padding: 60px 0;
  background-color: #f9f9f9;
}

.page-contact__info-section {
  background-color: #fff;
}

.page-contact__section-title {
  font-size: 2.5em;
  color: #0A2E36;
  text-align: center;
  margin-bottom: 20px;
}

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

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

.page-contact__info-card {
  background-color: #fff;
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
}

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

.page-contact__info-icon {
  width: 60px;
  height: 60px;
  margin-bottom: 20px;
  object-fit: contain;
}

.page-contact__info-card-title {
  font-size: 1.5em;
  color: #E74C3C;
  margin-bottom: 10px;
}

.page-contact__info-card-text {
  color: #555;
  margin-bottom: 5px;
}

.page-contact__form {
  max-width: 700px;
  margin: 0 auto;
  background-color: #fff;
  padding: 40px;
  border-radius: 8px;
  box-shadow: 0 4px 15px 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: #0A2E36;
}

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

.page-contact__form-input:focus, .page-contact__form-textarea:focus {
  border-color: #E74C3C;
  outline: none;
  box-shadow: 0 0 0 2px rgba(231, 76, 60, 0.2);
}

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

.page-contact__address {
  text-align: center;
  font-style: normal;
  font-size: 1.1em;
  color: #555;
  margin-bottom: 30px;
}

.page-contact__map-container {
  width: 100%;
  height: 400px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

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

/* Responsive adjustments */
@media (max-width: 768px) {
  .page-contact__hero-title {
    font-size: 2.5em;
  }
  .page-contact__hero-description {
    font-size: 1em;
  }
  .page-contact__section-title {
    font-size: 2em;
  }
  .page-contact__grid {
    grid-template-columns: 1fr;
  }
  .page-contact__form {
    padding: 30px;
  }
  .page-contact__map-container {
    height: 300px;
  }
}

@media (max-width: 480px) {
  .page-contact__hero {
    padding: 60px 0;
  }
  .page-contact__hero-title {
    font-size: 2em;
  }
  .page-contact__btn {
    padding: 10px 20px;
    font-size: 0.9em;
  }
  .page-contact__info-section, .page-contact__form-section, .page-contact__location-section {
    padding: 40px 0;
  }
  .page-contact__section-title {
    font-size: 1.8em;
  }
  .page-contact__section-description {
    font-size: 0.9em;
  }
  .page-contact__form {
    padding: 20px;
  }
  .page-contact__map-container {
    height: 250px;
  }
}