/* CSS for section section:Contact */
#section-contact-hero {
  padding: 80px 0;
}
#section-contact-hero .contact-header {
  margin-bottom: 0;
}
.contact-section {
  padding-top: 24px;
  padding-bottom: 80px;
}
.contact-header {
  text-align: center;
  margin-bottom: 64px;
}
.contact-header p {
  font-size: 20px;
  margin-top: 16px;
}
.contact-content-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 64px;
}
.contact-info h2, .contact-form-wrapper h2 {
  margin-bottom: 32px;
}
.info-group {
  display: flex;
  flex-direction: column;
  gap: 48px;
  margin-bottom: 60px;
}
.info-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}
.info-icon-wrapper {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-shrink: 0;
}
.info-icon-wrapper img {
  width: 24px;
  height: 24px;
}
.info-text h3 {
  margin-bottom: 4px;
}
.info-text p {
  line-height: 1.5;
}
.whatsapp-link {
  color: var(--primary-color);
  font-weight: 600;
  font-size: 14px;
  display: inline-block;
  margin-top: 12px;
}
.operating-hours {
  background-color: var(--bg-light);
  border-radius: 12px;
  padding: 24px;
}
.operating-hours h3 {
  margin-bottom: 12px;
}
.operating-hours p {
  line-height: 1.5;
}
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.form-group {
  display: flex;
  flex-direction: column;
}
.form-group label {
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 8px;
  font-size: 16px;
}
.form-group input, .form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid var(--border-color);
  border-radius: 6px;
  font-family: 'Inter', sans-serif;
  font-size: 16px;
}
.form-group input::placeholder, .form-group textarea::placeholder {
  color: #9ca3af;
}
.submit-button {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  background-color: var(--primary-color);
  color: var(--white);
  border: none;
  padding: 12px;
  border-radius: 6px;
  font-size: 18px;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.3s ease;
  box-shadow: 0px 4px 6px -4px rgba(0, 0, 0, 0.1), 0px 10px 15px -3px rgba(0, 0, 0, 0.1);
}
.submit-button:hover {
  background-color: #255036;
}
.submit-button img {
  width: 20px;
  height: 20px;
}
@media (max-width: 992px) {
  .contact-content-grid {
    grid-template-columns: 1fr;
    gap: 80px;
  }
}


