/* Shared footer styles with video background (uses videos/tap.mp4) */
footer {
  position: relative;
  overflow: hidden;
  color: white;
  padding: 40px 30px 20px;
}

footer::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.55);
  z-index: 0;
  pointer-events: none;
}

.footer-video {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: translate(-50%, -50%);
  z-index: -1;
  pointer-events: none;
}

.footer-content,
.footer-bottom {
  position: relative;
  z-index: 1;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 30px;
  max-width: 1000px;
  margin: 0 auto 20px;
}

.footer-content h3 { margin-bottom: 10px; }
.footer-content a { color: white; text-decoration: none; }
.footer-content a:hover { text-decoration: underline; }

.footer-bottom { text-align: center; border-top: 1px solid rgba(255,255,255,0.2); padding-top: 20px; font-size: 14px; }

/* Phone link styling used in footers and service cards */
.phone-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: white;
  font-weight: 600;
}
.phone-icon {
  width: 18px;
  height: 18px;
  display: inline-block;
  vertical-align: middle;
  fill: white;
}

/* =====================
   SERVICES
===================== */
.services-section {
  padding: 70px 50px;
  background: var(--light-blue);
  text-align: center;
}

.services-section h2 {
  color: var(--dark-blue);
  margin-bottom: 40px;
}

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

.service-item {
  background: white;
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.08);
  text-align: center;
}

.service-item img {
  width: 100%;
  max-height: 150px;
  object-fit: contain;
  margin-bottom: 15px;
}

.service-item h3 {
  color: var(--primary-blue);
  margin-bottom: 10px;
}