/* Dave Holloway Services Clone Section */
.section-services {
  position: relative;
  width: 100vw;
  height: auto;
  min-height: 120vh;
  padding-top: 15vh;
  padding-bottom: 15vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
  cursor: grab;
  background-color: #e40a3e; /* Red theme background */
  z-index: 20;
}
.section-services:active {
  cursor: grabbing;
}
.section-services .wire {
  position: absolute;
  top: 92px;
  left: -25%;
  width: 150%;
  height: 6px;
  background: #111;
  box-shadow: 0 2px 5px rgba(0,0,0,0.5);
  z-index: 0;
}
.section-services .cards-track {
  display: flex;
  gap: 50px;
  padding: 0 10vw;
  transform: translateX(0);
  will-change: transform;
  user-select: none;
  position: relative;
}
.section-services .card {
  position: relative;
  width: 460px;
  height: 680px;
  border-radius: 30px;
  background: #000;
  border: 3px solid #000;
  box-shadow: 0 20px 40px rgba(0,0,0,0.4);
  z-index: 5;
  flex-shrink: 0;
  transform-origin: center 15%;
  will-change: transform;
  display: flex;
  flex-direction: column;
  pointer-events: none;
}
.section-services .clip {
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 90px;
  background: var(--accent);
  border-radius: 12px;
  z-index: 15;
  color: #000;
  font-weight: 800;
  font-size: 14px;
  border: 3px solid #000;
}
.section-services .clip-hole {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: #e40a3e; /* Match section background */
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  overflow: hidden;
  box-shadow: inset 0 2px 4px rgba(0,0,0,0.4);
}
.section-services .clip-hole::before {
  content: '';
  position: absolute;
  top: 50%;
  left: -5px;
  right: -5px;
  height: 6px;
  background: #111;
  transform: translateY(-50%);
}
.section-services .clip-code {
  position: absolute;
  top: 10px;
  left: 50%;
  transform: translateX(-50%);
}
.section-services .clip-date {
  position: absolute;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 10px;
  font-family: monospace;
}
.section-services .card-top {
  flex: 1;
  background: #000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 60px;
  border-radius: 27px 27px 0 0;
}
.section-services .card-top h2 {
  font-family: 'Anton', sans-serif;
  font-size: 140px;
  color: var(--accent);
  line-height: 1;
  letter-spacing: -2px;
}
.section-services .card-bottom {
  flex: 1.3;
  background: var(--bg-bottom);
  border-top: 3px solid #000;
  padding: 35px 30px;
  border-radius: 0 0 27px 27px;
  display: flex;
  flex-direction: column;
  position: relative;
}
.section-services .service-label {
  font-weight: 800;
  font-size: 12px;
  color: #111;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.section-services .service-title {
  font-family: 'Oswald', sans-serif;
  font-size: 46px;
  font-weight: 400;
  color: #000;
  line-height: 1.1;
  margin-top: 5px;
  text-transform: uppercase;
}
.section-services .first-letter {
  font-family: 'Imperial Script', cursive;
  font-size: 85px;
  font-weight: 400;
  color: #000;
  margin-right: 8px; /* Added proper gap to avoid overlapping */
  line-height: 0.6;
  text-transform: none;
  display: inline-block;
  vertical-align: bottom;
}
.section-services .timeline {
  margin-top: 50px;
  position: relative;
}
.section-services .timeline-line {
  width: 100%;
  height: 3px;
  background: #000;
  position: relative;
}
.section-services .timeline-points {
  position: absolute;
  top: -15px;
  left: 0;
  width: 100%;
  height: 30px;
  display: flex;
  justify-content: space-between;
  padding: 0 10px;
}
.section-services .t-point {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.section-services .t-point::before {
  content: '';
  width: 0; 
  height: 0; 
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  position: absolute;
}
.section-services .t-point.top::before {
  border-top: 8px solid #000;
  bottom: 12px;
}
.section-services .t-point.bottom::before {
  border-bottom: 8px solid #000;
  top: 19px;
}
.section-services .t-point span {
  font-size: 11px;
  font-weight: 600;
  color: #000;
  white-space: nowrap;
}
.section-services .t-point.top span {
  position: absolute;
  bottom: 22px;
}
.section-services .t-point.bottom span {
  position: absolute;
  top: 30px;
}
.section-services .card-footer {
  margin-top: auto;
  border-top: 2px dashed rgba(0,0,0,0.5);
  padding-top: 15px;
}
.section-services .footer-code {
  font-family: 'Oswald', sans-serif;
  font-size: 60px;
  font-weight: 300;
  color: #111;
  line-height: 1;
  text-align: center;
  letter-spacing: 0px;
}

/* Responsiveness */
@media (max-width: 1024px) {
  .section-services .cards-track-wrapper {
    transform: scale(0.85);
    transform-origin: center center;
  }
}
@media (max-width: 768px) {
  .section-services .cards-track-wrapper {
    transform: scale(0.65);
    transform-origin: left center;
    margin-top: 15vh !important;
  }
  .services-header {
    margin-top: -5vh !important;
    margin-left: 5vw !important;
    flex-direction: column !important;
    align-items: flex-start !important;
    gap: 15px !important;
  }
  .services-header h2 {
    font-size: 55px !important;
  }
  .services-header h2 .drop-cap {
    font-size: 3em !important;
  }
  .services-header .pill-title {
    font-size: 2rem !important;
  }
  .services-header p {
    font-size: 0.8rem !important;
  }
  .drag-indicator {
    bottom: 2vh !important;
    white-space: nowrap !important;
  }
}
@media (max-height: 800px) {
  .section-services .cards-track-wrapper {
    transform: scale(0.75);
    transform-origin: center top;
  }
}
