/* 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;
}

.page-contact__hero {
  background: linear-gradient(135deg, #007BFF 0%, #0056b3 100%);
  color: #fff;
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-contact__hero::before {
  content: '';
  position: absolute;
  top: -50px;
  left: -50px;
  width: 200px;
  height: 200px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  transform: rotate(45deg);
}

.page-contact__hero::after {
  content: '';
  position: absolute;
  bottom: -50px;
  right: -50px;
  width: 250px;
  height: 250px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 50%;
  transform: rotate(-30deg);
}

.page-contact__title {
  font-size: 3.5em;
  margin-bottom: 20px;
  font-weight: bold;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.page-contact__subtitle {
  font-size: 1.3em;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-contact__button {
  display: inline-block;
  background-color: #FFC107;
  color: #333;
  padding: 15px 30px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease, transform 0.3s ease;
  margin: 10px;
  border: none;
  cursor: pointer;
}

.page-contact__button:hover {
  background-color: #e0a800;
  transform: translateY(-3px);
}

.page-contact__button--secondary {
  background-color: #fff;
  color: #007BFF;
  border: 2px solid #007BFF;
}

.page-contact__button--secondary:hover {
  background-color: #f0f0f0;
  color: #0056b3;
  border-color: #0056b3;
}

.page-contact__button--submit {
  background-color: #007BFF;
  color: #fff;
  padding: 12px 25px;
  font-size: 1em;
  border-radius: 8px;
  margin-top: 20px;
}

.page-contact__button--submit:hover {
  background-color: #0056b3;
}

.page-contact__info-section {
  background-color: #f8f9fa;
  padding: 60px 0;
  text-align: center;
}

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

.page-contact__info-card {
  background-color: #fff;
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  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 2px 5px rgba(0, 0, 0, 0.2));
}

.page-contact__info-heading {
  font-size: 1.8em;
  color: #007BFF;
  margin-bottom: 10px;
}

.page-contact__info-text {
  font-size: 1.1em;
  color: #555;
  margin-bottom: 15px;
}

.page-contact__info-detail {
  font-size: 1.2em;
  font-weight: bold;
  color: #333;
}

.page-contact__form-section {
  padding: 60px 0;
  background-color: #e9ecef;
}

.page-contact__section-heading {
  font-size: 2.5em;
  color: #007BFF;
  text-align: center;
  margin-bottom: 20px;
  font-weight: bold;
}

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

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

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

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

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

.page-contact__form-input:focus,
.page-contact__form-textarea:focus {
  border-color: #007BFF;
  box-shadow: 0 0 0 3px rgba(0, 123, 255, 0.25);
  outline: none;
}

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

.page-contact__hours-social-section {
  padding: 60px 0;
  background-color: #f8f9fa;
}

.page-contact__grid-2-cols {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
}

@media (min-width: 768px) {
  .page-contact__grid-2-cols {
    grid-template-columns: repeat(2, 1fr);
  }
}

.page-contact__hours,
.page-contact__social {
  background-color: #fff;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.page-contact__hours-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.page-contact__hours-list li {
  margin-bottom: 10px;
  font-size: 1.1em;
  color: #333;
}

.page-contact__note {
  font-style: italic;
  color: #666;
  margin-top: 15px;
  font-size: 0.95em;
}

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

.page-contact__social-icon-link {
  display: inline-block;
  transition: transform 0.3s ease;
}

.page-contact__social-icon-link:hover {
  transform: translateY(-5px);
}

.page-contact__social-icon {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.page-contact__social-text {
  font-size: 1.1em;
  color: #555;
  text-align: center;
}

.page-contact__map-section {
  padding: 60px 0;
  background-color: #e9ecef;
  text-align: center;
}

.page-contact__map-placeholder {
  width: 100%;
  max-width: 900px;
  height: 450px;
  background-color: #ccc;
  margin: 40px auto 0;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

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

/* Responsive adjustments */
@media (max-width: 992px) {
  .page-contact__title {
    font-size: 2.8em;
  }
  .page-contact__subtitle {
    font-size: 1.1em;
  }
  .page-contact__info-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 576px) {
  .page-contact__hero {
    padding: 60px 0;
  }
  .page-contact__title {
    font-size: 2em;
  }
  .page-contact__subtitle {
    font-size: 1em;
  }
  .page-contact__button {
    padding: 12px 20px;
    font-size: 1em;
  }
  .page-contact__section-heading {
    font-size: 2em;
  }
  .page-contact__form {
    padding: 20px;
  }
  .page-contact__map-placeholder {
    height: 300px;
  }
  .page-contact__social-links {
    flex-wrap: wrap;
    justify-content: center;
  }
}