/************************************ CONTACT PAGE STYLES ******************************************/

.contact-wrapper {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-start;
  gap: 2rem;
  margin: 0 90px;
}

.contact-section {
  flex: 3;
  background-color: #f1f8f5;
  padding: 2rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.contact-content {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
  align-items: flex-start;
}

.contact-info {
  flex: 1;
}

.contact-image {
  max-width: 400px;
  width: 100%;
  border-radius: var(--radius);
}

.contact-form select {
  padding: 10px;
  border-radius: 5px;
  border: 1px solid #ccc;
  font-family: inherit;
  font-size: 1rem;
  width: 100%;
}

.contact-success-message {
  color: green;
  background: #e6f9e6;
  padding: 1rem;
  margin-top: 1rem;
  border: 1px solid green;
  display: none;
}

.map-container {
  margin-top: 2rem;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.faq {
  margin-top: 2rem;
  padding: 1rem;
  background-color: #f8f8f8;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.faq h3 {
  margin-bottom: 1rem;
}

.faq details {
  margin-bottom: 1rem;
}

.faq summary {
  font-weight: bold;
  cursor: pointer;
}

.social-media {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  justify-content: flex-start;
}

.social-link {
  display: flex;
  flex-direction: column;
  align-items: center;
  background-color: #f1f8f5;
  padding: 1rem;
  width: 200px;
  height: auto;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  text-align: center;
}

.social-link img {
  width: 60px;
  height: auto;
  border-radius: var(--radius);
  transition: transform 0.3s ease;
}

.social-link img:hover {
  transform: scale(1.2);
}

.social-link span {
  margin-top: 0.5rem;
  font-weight: bold;
  color: var(--dark);
}

.whatsapp-float {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 100;
  width: 60px;
}

.whatsapp-float img {
  width: 60px;
  height: auto;
  border-radius: var(--radius);
  transition: transform 0.3s ease;
}

.whatsapp-float img:hover {
  transform: scale(1.2);
}

/************************************ END CONTACT PAGE STYLES ******************************************/