/* Services Section */
.services-section {
  position: relative;
  padding: 80px 0;
  background: url("../images/clinic-interior.jpg") center/cover no-repeat;
  background-attachment: fixed;

  a {
    color: inherit !important;
  }
}

.services-background-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--tussock);
  opacity: 0.8;
  z-index: 1;
}

.services-container {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 30px;
}

.services-header {
  text-align: center;
  margin-bottom: 60px;
}

.services-label {
  display: block;
  color: var(--white);
  font-family: var(--font-family);
  font-weight: 700;
  font-size: 14px;
  line-height: 1.8000000544956751em;
  margin-bottom: 16px;
}

.services-title {
  color: var(--white);
  font-family: var(--font-family);
  font-weight: 700;
  font-size: 25.2px;
  line-height: 1em;
  margin: 0 0 16px 0;
}

.services-subtitle {
  color: var(--white);
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 14px;
  line-height: 1.8571428571428572em;
  margin: 0;
}

.services-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-bottom: 40px;
}

.service-card-item {
  background: var(--white);
  padding: 32px;
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s, box-shadow 0.3s;
}

.service-card-image {
  width: 100%;
  height: 180px;
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border-radius: 0;
  overflow: visible;
  box-shadow: none;
}

.service-card-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.service-card-item:hover {
  transform: translateY(-5px);
  box-shadow: 0px 8px 30px rgba(0, 0, 0, 0.15);
}

.service-card-title {
  font-family: var(--font-family);
  font-weight: 700;
  font-size: 18px;
  line-height: 1.5em;
  color: var(--haiti);
  margin: 0 0 16px 0;
}

.service-card-description {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 14px;
  line-height: 1.8571428571428572em;
  color: var(--boulder);
  margin: 0 0 24px 0;
  flex: 1;
}

.service-card-link {
  color: var(--tussock);
  font-family: var(--font-family);
  font-weight: 700;
  font-size: 14px;
  text-transform: uppercase;
  text-decoration: none;
  transition: color 0.3s;
}

.service-card-link:hover {
  color: #a67a3a;
}

.services-cta {
  text-align: center;
  margin-bottom: 60px;
}

.services-more-btn {
  background: transparent;
  color: var(--white);
  border: 2px solid var(--white);
  padding: 14px 32px;
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 14px;
  text-transform: uppercase;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.3s;
}

.services-more-btn:hover {
  background: var(--white);
  color: var(--tussock);
}

.services-appointment-cta {
  text-align: center;
}

.appointment-question {
  color: var(--white);
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 16px;
  margin: 0 0 16px 0;
}

.appointment-text {
  color: var(--white);
  font-family: var(--font-family);
  font-weight: 700;
  font-size: 24px;
  margin: 0 0 24px 0;
}

.appointment-btn {
  background: transparent;
  color: var(--white);
  border: 2px solid var(--white);
  padding: 14px 32px;
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 14px;
  text-transform: uppercase;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.3s;
}

.appointment-btn:hover {
  background: var(--white);
  color: var(--tussock);
}
