/* ═══════════════════════════════════════════════════
   SERVICES STRIP — bestseoservices.ca
   Prefix: ss-  (avoids conflicts with page styles)
   ═══════════════════════════════════════════════════ */

.ss-section {
  background: #09091a;
  border-top: 1px solid rgba(2,141,210,0.1);
  border-bottom: 1px solid rgba(2,141,210,0.08);
  padding: 52px 0;
}
.ss-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 28px;
}

/* ─── HEADER ROW ─── */
.ss-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
  flex-wrap: wrap;
  gap: 14px;
}
.ss-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 20px;
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.3px;
}
.ss-title span {
  background: linear-gradient(135deg, #028DD2, #00c4ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.ss-view-all {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 13px;
  font-weight: 700;
  color: #028DD2;
  text-decoration: none;
  transition: color 0.2s;
}
.ss-view-all:hover { color: #00c4ff; }

/* ─── CATEGORY TABS ─── */
.ss-tabs {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}
.ss-tab {
  padding: 7px 16px;
  border-radius: 20px;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 12px;
  font-weight: 700;
  cursor: pointer;
  border: 1px solid rgba(255,255,255,0.08);
  background: transparent;
  color: #8892b0;
  transition: all 0.2s;
  white-space: nowrap;
  letter-spacing: 0.3px;
}
.ss-tab:hover {
  color: #fff;
  border-color: rgba(255,255,255,0.18);
}

/* ─── PANELS ─── */
.ss-panel { display: none; }
.ss-panel.active { display: block; }

/* ─── CAROUSEL WRAP ─── */
.ss-carousel-wrap {
  position: relative;
}
.ss-carousel-wrap::after {
  content: '';
  position: absolute;
  top: 0;
  right: 48px;
  bottom: 0;
  width: 80px;
  background: linear-gradient(to right, transparent, #09091a);
  pointer-events: none;
  z-index: 1;
}
.ss-carousel {
  display: flex;
  gap: 12px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  -ms-overflow-style: none;
  padding-bottom: 4px;
}
.ss-carousel::-webkit-scrollbar { display: none; }

/* ─── CARDS ─── */
.ss-card {
  display: flex;
  align-items: flex-start;
  gap: 13px;
  padding: 16px 18px;
  border-radius: 14px;
  background: rgba(255,255,255,0.025);
  border: 1px solid rgba(255,255,255,0.06);
  text-decoration: none;
  color: inherit;
  transition: all 0.22s;
  flex-shrink: 0;
  width: 230px;
  scroll-snap-align: start;
  position: relative;
  overflow: hidden;
}
.ss-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  opacity: 0;
  transition: opacity 0.22s;
  background: linear-gradient(135deg, #028DD2, #00c4ff);
}
.ss-card:hover {
  background: rgba(2,141,210,0.06);
  border-color: rgba(2,141,210,0.22);
  transform: translateY(-2px);
}
.ss-card:hover::before { opacity: 1; }
.ss-ico {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 15px;
}
.ss-name {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 13px;
  font-weight: 700;
  color: #e2e8f0;
  margin-bottom: 4px;
  display: block;
  transition: color 0.2s;
  line-height: 1.3;
}
.ss-desc {
  font-size: 11px;
  color: #4a5568;
  line-height: 1.45;
  display: block;
  transition: color 0.2s;
}
.ss-card:hover .ss-name { color: #fff; }
.ss-card:hover .ss-desc { color: #8892b0; }

/* ─── ARROW BUTTONS ─── */
.ss-arrows {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 5px;
  z-index: 2;
}
.ss-arr {
  width: 34px;
  height: 34px;
  border-radius: 8px;
  background: rgba(14,14,31,0.9);
  border: 1px solid rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: #8892b0;
  font-size: 11px;
  transition: all 0.2s;
}
.ss-arr:hover {
  background: rgba(2,141,210,0.15);
  border-color: rgba(2,141,210,0.35);
  color: #fff;
}

/* ─── FOOTER LINK ─── */
.ss-footer {
  text-align: center;
  margin-top: 22px;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.04);
}
.ss-footer a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 13px;
  font-weight: 700;
  color: #028DD2;
  text-decoration: none;
  transition: color 0.2s;
}
.ss-footer a:hover { color: #00c4ff; }

/* ─── RESPONSIVE ─── */
@media(max-width: 768px) {
  .ss-section { padding: 36px 0; }
  .ss-head { flex-direction: column; align-items: flex-start; }
  .ss-card { width: 200px; }
  .ss-arrows { display: none; }
  .ss-carousel-wrap::after { right: 0; width: 40px; }
}
@media(max-width: 480px) {
  .ss-card { width: 180px; }
}
