/* OUR SERVICES PAGE */

/* ---------- Hero Section ---------- */
.services-hero {
  padding: 100px 0 60px;
}
.services-hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.services-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 14px;
  border-radius: 999px;
  background: var(--sr-clr-pr-1);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.services-hero-content h2 {
  font-size: 42px;
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.03em;
  color: var(--sr-clr-black-3);
  margin-bottom: 16px;
}
.services-hero-desc {
  font-size: 17px;
  line-height: 1.7;
  color: var(--sr-clr-black-4);
  margin-bottom: 28px;
  max-width: 520px;
}
.services-hero-actions {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}
.services-hero-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--sr-clr-black-4);
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: color 0.3s;
}
.services-hero-link:hover {
  color: var(--sr-clr-pr-1);
}
.services-hero-visual {
  position: relative;
  min-height: 380px;
}
.services-hero-card {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 14px;
  background: #fff;
  border: 1px solid rgba(15, 23, 42, 0.07);
  border-radius: 16px;
  padding: 16px 20px;
  box-shadow: 0 14px 36px rgba(15, 23, 42, 0.08);
  transition: transform 0.3s ease;
}
.services-hero-card:hover {
  transform: translateY(-4px);
}
.services-hero-card-1 {
  top: 0;
  left: 0;
}
.services-hero-card-2 {
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.services-hero-card-2:hover {
  transform: translate(-50%, calc(-50% - 4px));
}
.services-hero-card-3 {
  bottom: 0;
  right: 0;
}
.services-hero-card-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: linear-gradient(145deg, rgba(0, 147, 147, 0.12), rgba(1, 221, 221, 0.06));
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.services-hero-card-icon img {
  width: 24px;
  height: 24px;
  object-fit: contain;
}
.services-hero-card-label {
  font-size: 14px;
  font-weight: 700;
  color: var(--sr-clr-black-3);
  margin: 0 0 2px;
}
.services-hero-card-meta {
  font-size: 12px;
  color: var(--sr-clr-black-4);
  margin: 0;
}

/* ---------- Stats Bar ---------- */
.services-stats {
  padding: 40px 0 80px;
}
.services-stats-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
}
.services-stat {
  text-align: center;
  padding: 28px 16px 22px;
  border-radius: 16px;
  background: #fff;
  border: 1px solid rgba(15, 23, 42, 0.07);
  box-shadow: 0 4px 24px rgba(15, 23, 42, 0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.services-stat:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 50px rgba(15, 23, 42, 0.12);
}
.services-stat-number {
  font-size: 36px;
  font-weight: 800;
  letter-spacing: -0.03em;
  background: linear-gradient(135deg, var(--sr-clr-pr-1), #7a5af8);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 4px;
}
.services-stat-label {
  font-size: 13px;
  font-weight: 600;
  color: var(--sr-clr-black-4);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

/* ---------- Section Header ---------- */
.services-section-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 48px;
}
.services-subtitle {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  border-radius: 50px;
  border: 1px solid var(--sr-clr-black-6);
  margin-bottom: 20px;
}
.services-subtitle .icon {
  width: 24px;
  height: 24px;
  background: var(--sr-clr-pr-1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.services-subtitle .icon img {
  width: 12px;
  height: 12px;
  filter: brightness(0) invert(1);
}
.services-subtitle .text {
  font-size: 13px;
  font-weight: 600;
  color: var(--sr-clr-black-3);
}
.services-section-header h2 {
  font-size: 36px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.03em;
  color: var(--sr-clr-black-3);
  margin-bottom: 12px;
}
.services-section-desc {
  font-size: 17px;
  line-height: 1.7;
  color: var(--sr-clr-black-4);
}

/* ---------- Services Grid ---------- */
.services-grid-section {
  padding: 80px 0;
  background: #f8fafc;
}
.services-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}
.services-card {
  background: #ffffff;
  border: 1px solid rgba(15, 23, 42, 0.07);
  border-radius: 20px;
  padding: 32px 28px 28px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.services-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 22px 54px rgba(15, 23, 42, 0.1);
}
.services-card-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: linear-gradient(145deg, rgba(0, 147, 147, 0.1), rgba(0, 147, 147, 0.04));
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}
.services-card-icon img {
  width: 28px;
  height: 28px;
  object-fit: contain;
}
.services-card h3 {
  font-size: 18px;
  font-weight: 700;
  line-height: 1.3;
  color: var(--sr-clr-black-3);
  margin-bottom: 10px;
}
.services-card p {
  font-size: 15px;
  line-height: 1.6;
  color: var(--sr-clr-black-4);
  margin-bottom: 16px;
}
.services-card-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.services-card-tags li {
  padding: 6px 11px;
  border-radius: 999px;
  background: #f6f8ff;
  border: 1px solid rgba(15, 23, 42, 0.07);
  color: #475569;
  font-size: 12px;
  font-weight: 600;
}

/* ---------- Process Section ---------- */
.services-process {
  padding: 80px 0;
}
.services-process-steps {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
}
.services-step {
  text-align: center;
  position: relative;
  padding: 36px 24px 28px;
  border-radius: 20px;
  background: #ffffff;
  border: 1px solid rgba(15, 23, 42, 0.07);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.services-step:hover {
  transform: translateY(-6px);
  box-shadow: 0 22px 54px rgba(15, 23, 42, 0.1);
}
.services-step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(145deg, var(--sr-clr-pr-1), #01dddd);
  color: #ffffff;
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 16px;
}
.services-step:nth-child(2) .services-step-number {
  background: linear-gradient(145deg, #0a6b6b, var(--sr-clr-pr-1));
}
.services-step:nth-child(3) .services-step-number {
  background: linear-gradient(145deg, #1f2a44, #4a6078);
}
.services-step:nth-child(4) .services-step-number {
  background: linear-gradient(145deg, #7a5af8, #958df6);
}
.services-step h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--sr-clr-black-3);
  margin-bottom: 8px;
}
.services-step p {
  font-size: 14px;
  line-height: 1.6;
  color: var(--sr-clr-black-4);
  margin: 0;
}

/* ---------- Why Choose Us ---------- */
.services-why {
  padding: 80px 0;
  background: #f8fafc;
}
.services-why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.services-why-content h2 {
  font-size: 36px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.03em;
  color: var(--sr-clr-black-3);
  margin-bottom: 16px;
}
.services-why-content > p {
  font-size: 16px;
  line-height: 1.7;
  color: var(--sr-clr-black-4);
  margin-bottom: 28px;
}
.services-why-checklist {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.services-check-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 15px;
  font-weight: 500;
  color: var(--sr-clr-black-3);
}
.services-check-item i {
  font-size: 22px;
  color: var(--sr-clr-pr-1);
  flex-shrink: 0;
}
.services-why-visual {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.services-why-card {
  background: #fff;
  border-radius: 20px;
  padding: 28px 24px;
  border: 1px solid rgba(15, 23, 42, 0.07);
  box-shadow: 0 4px 24px rgba(15, 23, 42, 0.06);
}
.services-why-card-stat {
  font-size: 32px;
  font-weight: 800;
  letter-spacing: -0.03em;
  background: linear-gradient(135deg, var(--sr-clr-pr-1), #7a5af8);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 6px;
}
.services-why-card p {
  font-size: 14px;
  line-height: 1.6;
  color: var(--sr-clr-black-4);
  margin: 0;
}

/* ---------- CTA Banner ---------- */
.services-cta {
  padding: 100px 0;
  text-align: center;
  background: linear-gradient(145deg, var(--sr-clr-pr-1), #01dddd);
}
.services-cta h2 {
  font-size: 36px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 12px;
  letter-spacing: -0.03em;
}
.services-cta p {
  font-size: 17px;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 28px;
  max-width: 540px;
  margin-left: auto;
  margin-right: auto;
}
.services-cta .sr-pr-btn-1 {
  background: #fff;
  color: var(--sr-clr-pr-1);
}
.services-cta .sr-pr-btn-1:hover {
  background: rgba(255,255,255,0.9);
}

/* ---------- Responsive ---------- */
@media (max-width: 1200px) {
  .services-hero-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .services-hero-visual {
    min-height: 300px;
    max-width: 500px;
    margin: 0 auto;
  }
  .services-cards-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .services-process-steps {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .services-stats-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .services-why-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

@media (max-width: 768px) {
  .services-hero {
    padding: 60px 0 40px;
  }
  .services-hero-content h2 {
    font-size: 28px;
  }
  .services-hero-visual {
    min-height: auto;
    display: flex;
    flex-direction: column;
    gap: 16px;
    position: static;
  }
  .services-hero-card {
    position: static;
    transform: none !important;
  }
  .services-cards-grid {
    grid-template-columns: 1fr;
  }
  .services-process-steps {
    grid-template-columns: 1fr;
  }
  .services-stats-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }
  .services-stat-number {
    font-size: 28px;
  }
  .services-section-header h2,
  .services-why-content h2,
  .services-cta h2 {
    font-size: 28px;
  }
}
