/* Contact Us Page - Minimal Design */

.content.contact-us {
  padding: 80px 0;
}

.content.contact-us h1 {
  margin-bottom: 8px;
  font-weight: 600;
}

.content.contact-us .intro {
  font-size: 1.1rem;
  line-height: 1.6;
  color: #666;
  max-width: 540px;
  margin-bottom: 0;
}

/* Contact info column */
.content.contact-us .contact-info {
  padding-right: 40px;
}

/* Contact sections - minimal, no boxes */
.content.contact-us .contact-section {
  margin-bottom: 28px;
  padding: 0;
  background: none;
  border: none;
  border-radius: 0;
}

.content.contact-us .contact-section:last-child {
  margin-bottom: 0;
}

.content.contact-us .contact-section h2 {
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin: 0 0 8px 0;
  color: #999;
}

.content.contact-us .contact-section h2 svg {
  margin-right: 6px;
  color: #ff9100;
}

.content.contact-us .contact-section p {
  margin: 0 0 6px 0;
  line-height: 1.5;
  color: #363739;
}

/* Phone numbers */
.content.contact-us .phone-number {
  font-size: 1.5rem;
  font-weight: 600;
  color: #363739;
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
  letter-spacing: -0.01em;
}

.content.contact-us .phone-number svg {
  color: #ff9100;
  font-size: 1rem;
}

/* Hours list */
.content.contact-us .hours {
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0;
  font-size: 0.9375rem;
}

.content.contact-us .hours > div {
  display: flex;
  gap: 16px;
  padding: 6px 0;
  border-bottom: 1px solid #f0f0f0;
}

.content.contact-us .hours > div:last-child {
  border-bottom: none;
}

.content.contact-us .hours dt {
  min-width: 85px;
  color: #888;
}

.content.contact-us .hours dd {
  margin: 0;
  color: #363739;
}

/* Portal link button */
.content.contact-us .portal-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #ff9100;
  font-weight: 500;
  text-decoration: none;
  font-size: 0.875rem;
  padding: 10px 18px;
  border: 1px solid #ff9100;
  border-radius: 4px;
  transition: background-color 0.15s ease, color 0.15s ease;
}

.content.contact-us .portal-link:hover {
  background-color: #ff9100;
  color: #fff;
}

.content.contact-us .portal-link svg {
  font-size: 0.7rem;
  transition: transform 0.15s ease;
}

.content.contact-us .portal-link:hover svg {
  transform: translateX(3px);
}

/* Location info column */
.content.contact-us .location-info img {
  width: 100%;
  max-width: 480px;
  border-radius: 3px;
  margin-bottom: 20px;
}

.content.contact-us address {
  font-style: normal;
  line-height: 1.5;
  margin-bottom: 8px;
  color: #363739;
}

/* Map link */
.content.contact-us .map-link {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  color: #ff9100;
  text-decoration: none;
  font-weight: 500;
  font-size: 0.9375rem;
  transition: color 0.15s ease;
}

.content.contact-us .map-link:hover {
  color: #e68200;
}

.content.contact-us .map-link svg {
  font-size: 0.8rem;
}

/* Success message */
#contact-us-success {
  text-align: center;
  font-size: 18px;
  visibility: hidden;
}

#contact-us-success.active {
  visibility: visible;
}

/* Responsive */
@media (max-width: 768px) {
  .content.contact-us {
    padding: 48px 0;
  }

  .content.contact-us .contact-info {
    padding-right: 15px;
  }

  .content.contact-us .contact-section {
    margin-bottom: 24px;
  }

  .content.contact-us .phone-number {
    font-size: 1.25rem;
  }
}
