/*
 * ============================================================
 * AFAQ AL-SPL — SERVICE PAGE SHARED STYLESHEET
 * Used by all individual service pages in /pages/
 * Brand: Orange (#f7931e) / Dark (#1a1a1a) / White (#fff)
 * ============================================================
 */

/* ===================== PAGE TRANSITION ===================== */
.page-transition-overlay {
  position: fixed;
  inset: 0;
  background: #1a1a1a;
  z-index: 9999;
  transform-origin: top;
  transform: scaleY(1);
  pointer-events: none;
}

/* ===================== SERVICE HERO ===================== */
.service-hero {
  position: relative;
  min-height: 70vh;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, #1a1a1a 0%, #2b2b2b 60%, #3a2a1a 100%);
  overflow: hidden;
  padding: 140px 0 80px;
}

.service-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 70% 50%, rgba(247, 147, 30, 0.08) 0%, transparent 60%);
  pointer-events: none;
}

/* Floating Shapes */
.service-hero .hero-shapes {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}

.service-hero .hero-shape {
  position: absolute;
  border-radius: 50%;
  opacity: 0.06;
  animation: floatShape 8s ease-in-out infinite;
}

.service-hero .shape-1 {
  width: 450px; height: 450px;
  background: #f7931e;
  top: -150px; right: -100px;
  animation-duration: 9s;
}

.service-hero .shape-2 {
  width: 280px; height: 280px;
  background: #f7931e;
  bottom: -80px; left: -60px;
  animation-duration: 11s;
  animation-direction: reverse;
}

.service-hero .shape-3 {
  width: 180px; height: 180px;
  background: #ffffff;
  top: 30%; left: 15%;
  opacity: 0.03;
  animation-duration: 7s;
  animation-delay: 1s;
  border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
}

.service-hero .shape-4 {
  width: 120px; height: 120px;
  background: #f7931e;
  top: 15%; right: 20%;
  opacity: 0.08;
  animation-duration: 10s;
  animation-delay: 2s;
}

/* Breadcrumb */
.service-breadcrumb {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 24px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
}

.service-breadcrumb a {
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  transition: color 0.3s;
}

.service-breadcrumb a:hover { color: #f7931e; }

.service-breadcrumb .bc-sep {
  color: rgba(255, 255, 255, 0.3);
}

.service-breadcrumb .bc-current {
  color: #f7931e;
  font-weight: 600;
}

/* Hero Content */
.service-hero-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
}

.service-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(247, 147, 30, 0.15);
  border: 1px solid rgba(247, 147, 30, 0.4);
  color: #f7931e;
  padding: 6px 18px;
  border-radius: 30px;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 20px;
}

.service-hero-title {
  font-size: 52px;
  font-weight: 900;
  color: #ffffff;
  line-height: 1.2;
  margin-bottom: 20px;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.service-hero-title span {
  color: #f7931e;
}

.service-hero-desc {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.8;
  margin-bottom: 36px;
  max-width: 580px;
}

.service-hero-btns {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.service-btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 36px;
  background: #f7931e;
  color: #ffffff;
  border: 2px solid #f7931e;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 700;
  font-size: 16px;
  transition: all 0.4s ease;
  box-shadow: 0 6px 20px rgba(247, 147, 30, 0.35);
}

.service-btn-primary:hover {
  background: #e67e0e;
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(247, 147, 30, 0.5);
  color: #ffffff;
}

.service-btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 36px;
  background: transparent;
  color: #ffffff;
  border: 2px solid rgba(255, 255, 255, 0.4);
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  font-size: 16px;
  transition: all 0.4s ease;
}

.service-btn-outline:hover {
  border-color: #f7931e;
  color: #f7931e;
  transform: translateY(-3px);
}

/* Hero Illustration */
.service-hero-visual {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-visual-circle {
  width: 380px;
  height: 380px;
  background: rgba(247, 147, 30, 0.06);
  border: 1px solid rgba(247, 147, 30, 0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  animation: pulse-ring 4s ease-in-out infinite;
}

.hero-visual-circle::before {
  content: '';
  position: absolute;
  inset: 20px;
  background: rgba(247, 147, 30, 0.06);
  border: 1px solid rgba(247, 147, 30, 0.2);
  border-radius: 50%;
}

.hero-visual-icon {
  font-size: 100px;
  color: #f7931e;
  opacity: 0.8;
  position: relative;
  z-index: 1;
}

@keyframes pulse-ring {
  0%, 100% { box-shadow: 0 0 0 0 rgba(247, 147, 30, 0.1); }
  50% { box-shadow: 0 0 0 30px rgba(247, 147, 30, 0); }
}

/* Hero stats mini */
.hero-mini-stats {
  display: flex;
  gap: 32px;
  margin-top: 40px;
  padding-top: 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.hero-mini-stat .num {
  font-size: 28px;
  font-weight: 900;
  color: #f7931e;
  display: block;
  line-height: 1;
}

.hero-mini-stat .lbl {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.6);
  margin-top: 4px;
  display: block;
}

/* ===================== SECTION SHARED ===================== */
.sp-section {
  padding: 100px 0;
}

.sp-section-light { background: #f8f9fa; }
.sp-section-dark { background: linear-gradient(135deg, #1a1a1a 0%, #2b2b2b 100%); }
.sp-section-white { background: #ffffff; }

.sp-section-header {
  text-align: center;
  margin-bottom: 64px;
}

.sp-tag {
  display: inline-block;
  background: rgba(247, 147, 30, 0.12);
  color: #f7931e;
  padding: 6px 18px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.5px;
  margin-bottom: 16px;
}

.sp-title {
  font-size: 42px;
  font-weight: 900;
  color: #1a1a1a;
  margin-bottom: 16px;
  line-height: 1.2;
}

.sp-title-white { color: #ffffff !important; }

.sp-subtitle {
  font-size: 17px;
  color: #666;
  max-width: 600px;
  margin: 0 auto 24px;
  line-height: 1.7;
}

.sp-subtitle-light { color: #aaa !important; }

.sp-divider {
  width: 60px;
  height: 4px;
  background: linear-gradient(90deg, #f7931e, #e67e0e);
  border-radius: 2px;
  margin: 0 auto;
}

/* ===================== OVERVIEW SECTION ===================== */
.sp-overview-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.sp-overview-text h3 {
  font-size: 32px;
  font-weight: 800;
  color: #1a1a1a;
  margin-bottom: 20px;
  line-height: 1.3;
}

.sp-overview-text h3 span { color: #f7931e; }

.sp-overview-text p {
  font-size: 16px;
  color: #555;
  line-height: 1.9;
  margin-bottom: 16px;
}

.sp-check-list {
  list-style: none;
  padding: 0;
  margin: 24px 0 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.sp-check-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 15px;
  color: #444;
  line-height: 1.6;
}

.sp-check-list li i {
  color: #f7931e;
  font-size: 16px;
  margin-top: 2px;
  flex-shrink: 0;
}

.sp-overview-visual {
  position: relative;
}

.sp-overview-visual-inner {
  background: linear-gradient(135deg, #1a1a1a, #2b2b2b);
  border-radius: 24px;
  padding: 48px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  position: relative;
  overflow: hidden;
}

.sp-overview-visual-inner::before {
  content: '';
  position: absolute;
  top: -50px; right: -50px;
  width: 200px; height: 200px;
  background: rgba(247, 147, 30, 0.08);
  border-radius: 50%;
}

.sp-ov-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(247, 147, 30, 0.15);
  border-radius: 14px;
  padding: 20px;
  text-align: center;
  transition: all 0.3s ease;
}

.sp-ov-card:hover {
  border-color: rgba(247, 147, 30, 0.5);
  background: rgba(247, 147, 30, 0.05);
}

.sp-ov-card i {
  font-size: 28px;
  color: #f7931e;
  margin-bottom: 10px;
  display: block;
}

.sp-ov-card span {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.7);
  font-weight: 600;
}

/* ===================== FEATURES SECTION ===================== */
.sp-features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.sp-feature-card {
  background: #ffffff;
  border: 1px solid #eee;
  border-radius: 18px;
  padding: 36px 28px;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.sp-feature-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, #f7931e, #e67e0e);
  transform: scaleX(0);
  transition: transform 0.4s ease;
  transform-origin: right;
}

.sp-feature-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
  border-color: transparent;
}

.sp-feature-card:hover::after { transform: scaleX(1); }

.sp-feature-icon {
  width: 60px; height: 60px;
  background: linear-gradient(135deg, #f7931e, #e67e0e);
  border-radius: 16px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
  transition: transform 0.3s ease;
  box-shadow: 0 6px 20px rgba(247, 147, 30, 0.3);
}

.sp-feature-card:hover .sp-feature-icon { transform: scale(1.1) rotate(5deg); }

.sp-feature-icon i { font-size: 26px; color: #ffffff; }

.sp-feature-title {
  font-size: 19px;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 12px;
}

.sp-feature-desc {
  font-size: 15px;
  color: #666;
  line-height: 1.8;
}

/* ===================== BENEFITS SECTION ===================== */
.sp-benefits-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.sp-benefits-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.sp-benefit-item {
  display: flex;
  gap: 20px;
  position: relative;
  padding-bottom: 32px;
}

.sp-benefit-item:not(:last-child)::after {
  content: '';
  position: absolute;
  right: 19px;
  top: 50px;
  bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, rgba(247, 147, 30, 0.4), transparent);
}

.sp-benefit-num {
  width: 40px; height: 40px;
  background: linear-gradient(135deg, #f7931e, #e67e0e);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  font-size: 14px;
  font-weight: 900;
  color: #ffffff;
  position: relative;
  z-index: 1;
  box-shadow: 0 4px 12px rgba(247, 147, 30, 0.4);
}

.sp-benefit-content h4 {
  font-size: 18px;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 8px;
}

.sp-benefit-content p {
  font-size: 15px;
  color: #666;
  line-height: 1.7;
}

.sp-benefits-visual {
  background: linear-gradient(135deg, #1a1a1a, #2b2b2b);
  border-radius: 24px;
  padding: 48px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.sp-benefits-visual::before {
  content: '';
  position: absolute;
  top: -80px; right: -80px;
  width: 250px; height: 250px;
  background: rgba(247, 147, 30, 0.06);
  border-radius: 50%;
}

.sp-roi-item {
  text-align: center;
  padding: 24px;
  border: 1px solid rgba(247, 147, 30, 0.15);
  border-radius: 16px;
  margin-bottom: 16px;
  transition: border-color 0.3s;
}

.sp-roi-item:hover { border-color: rgba(247, 147, 30, 0.5); }

.sp-roi-item .roi-num {
  font-size: 42px;
  font-weight: 900;
  color: #f7931e;
  display: block;
  line-height: 1;
}

.sp-roi-item .roi-lbl {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
  margin-top: 6px;
  display: block;
}

/* ===================== WHY AFAQ SECTION ===================== */
.sp-why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.sp-why-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(247, 147, 30, 0.15);
  border-radius: 18px;
  padding: 36px 28px;
  text-align: center;
  transition: all 0.4s ease;
}

.sp-why-card:hover {
  border-color: rgba(247, 147, 30, 0.5);
  background: rgba(247, 147, 30, 0.04);
  transform: translateY(-8px);
}

.sp-why-icon {
  width: 70px; height: 70px;
  background: linear-gradient(135deg, rgba(247, 147, 30, 0.15), rgba(247, 147, 30, 0.05));
  border: 1px solid rgba(247, 147, 30, 0.3);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 20px;
  transition: all 0.3s ease;
}

.sp-why-card:hover .sp-why-icon {
  background: linear-gradient(135deg, #f7931e, #e67e0e);
  border-color: #f7931e;
  box-shadow: 0 10px 30px rgba(247, 147, 30, 0.4);
}

.sp-why-icon i { font-size: 28px; color: #f7931e; transition: color 0.3s; }
.sp-why-card:hover .sp-why-icon i { color: #ffffff; }

.sp-why-card h3 { font-size: 18px; font-weight: 700; color: #ffffff; margin-bottom: 12px; }
.sp-why-card p { font-size: 14px; color: #999; line-height: 1.7; }

/* ===================== PROCESS SECTION ===================== */
.sp-process-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  position: relative;
}

.sp-process-grid::before {
  content: '';
  position: absolute;
  top: 36px;
  right: 16.7%;
  left: 16.7%;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(247,147,30,0.3), rgba(247,147,30,0.3), transparent);
}

.sp-process-step {
  text-align: center;
  position: relative;
  z-index: 1;
}

.sp-process-step:hover .sp-process-icon {
  background: #f7931e;
  border-color: #f7931e;
  box-shadow: 0 10px 30px rgba(247, 147, 30, 0.4);
  transform: scale(1.1);
}

.sp-process-step:hover .sp-process-icon i { color: #ffffff; }

.sp-step-num {
  font-size: 10px;
  font-weight: 800;
  color: #f7931e;
  letter-spacing: 3px;
  margin-bottom: 12px;
  opacity: 0.7;
}

.sp-process-icon {
  width: 72px; height: 72px;
  border: 2px solid rgba(247, 147, 30, 0.3);
  background: rgba(247, 147, 30, 0.08);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 20px;
  transition: all 0.4s ease;
}

.sp-process-icon i { font-size: 28px; color: #f7931e; transition: color 0.3s; }

.sp-process-step h4 { font-size: 17px; font-weight: 700; color: #ffffff; margin-bottom: 10px; }
.sp-process-step p { font-size: 13px; color: #888; line-height: 1.6; }

/* ===================== INDUSTRIES SECTION ===================== */
.sp-industries-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.sp-industry-card {
  background: #ffffff;
  border: 1px solid #eee;
  border-radius: 16px;
  padding: 28px 16px;
  text-align: center;
  transition: all 0.4s ease;
}

.sp-industry-card:hover {
  transform: translateY(-8px);
  border-color: #f7931e;
  box-shadow: 0 15px 40px rgba(247, 147, 30, 0.15);
}

.sp-ind-icon {
  width: 60px; height: 60px;
  background: rgba(247, 147, 30, 0.1);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 14px;
  transition: all 0.3s;
}

.sp-industry-card:hover .sp-ind-icon {
  background: linear-gradient(135deg, #f7931e, #e67e0e);
  box-shadow: 0 8px 20px rgba(247, 147, 30, 0.35);
}

.sp-ind-icon i { font-size: 24px; color: #f7931e; transition: color 0.3s; }
.sp-industry-card:hover .sp-ind-icon i { color: #ffffff; }

.sp-ind-name { font-size: 14px; font-weight: 700; color: #333; transition: color 0.3s; }
.sp-industry-card:hover .sp-ind-name { color: #f7931e; }

/* ===================== FAQ SECTION ===================== */
.sp-faq-wrapper {
  max-width: 800px;
  margin: 0 auto;
}

.sp-faq-item {
  border: 1px solid #eee;
  border-radius: 14px;
  overflow: hidden;
  margin-bottom: 12px;
  transition: border-color 0.3s;
}

.sp-faq-item.active { border-color: #f7931e; }

.sp-faq-q {
  width: 100%;
  display: flex; align-items: center; justify-content: space-between;
  padding: 22px 28px;
  background: #ffffff; border: none; cursor: pointer;
  font-family: 'Lyon Arabic', 'Cairo', sans-serif;
  font-size: 16px; font-weight: 600; color: #1a1a1a;
  text-align: right; gap: 20px;
  transition: all 0.3s;
}

.sp-faq-q:hover, .sp-faq-item.active .sp-faq-q { color: #f7931e; background: rgba(247,147,30,0.04); }

.sp-faq-q i { font-size: 14px; color: #f7931e; flex-shrink: 0; transition: transform 0.3s; }
.sp-faq-item.active .sp-faq-q i { transform: rotate(45deg); }

.sp-faq-a {
  max-height: 0; overflow: hidden;
  transition: max-height 0.4s ease;
  padding: 0 28px;
}

.sp-faq-item.active .sp-faq-a { max-height: 400px; padding: 0 28px 24px; }

.sp-faq-a p {
  font-size: 15px; color: #666; line-height: 1.8;
  border-top: 1px solid rgba(247,147,30,0.15);
  padding-top: 18px;
}

/* ===================== RELATED SERVICES ===================== */
.sp-related-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.sp-related-card {
  background: linear-gradient(135deg, #2b2b2b, #1a1a1a);
  border: 1px solid rgba(247,147,30,0.12);
  border-radius: 18px;
  padding: 32px;
  text-decoration: none;
  transition: all 0.4s ease;
  display: block;
}

.sp-related-card:hover {
  transform: translateY(-8px);
  border-color: rgba(247,147,30,0.5);
  box-shadow: 0 20px 50px rgba(0,0,0,0.4);
}

.sp-related-icon {
  width: 52px; height: 52px;
  background: rgba(247,147,30,0.12);
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 16px;
  transition: all 0.3s;
}

.sp-related-card:hover .sp-related-icon { background: #f7931e; }

.sp-related-icon i { font-size: 22px; color: #f7931e; transition: color 0.3s; }
.sp-related-card:hover .sp-related-icon i { color: #ffffff; }

.sp-related-card h4 { font-size: 17px; font-weight: 700; color: #ffffff; margin-bottom: 10px; }
.sp-related-card p { font-size: 14px; color: #888; line-height: 1.6; margin: 0; }

.sp-related-arrow {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #f7931e;
  font-size: 13px;
  font-weight: 600;
  margin-top: 16px;
  transition: gap 0.3s;
}

.sp-related-card:hover .sp-related-arrow { gap: 12px; }

/* ===================== PREMIUM CTA SECTION ===================== */
.sp-cta-section {
  padding: 100px 0;
  background: linear-gradient(135deg, #f7931e 0%, #e67e0e 100%);
  position: relative;
  overflow: hidden;
  text-align: center;
}

.sp-cta-section::before {
  content: '';
  position: absolute;
  top: -100px; right: -100px;
  width: 400px; height: 400px;
  background: rgba(255,255,255,0.06);
  border-radius: 50%;
}

.sp-cta-section::after {
  content: '';
  position: absolute;
  bottom: -80px; left: -80px;
  width: 300px; height: 300px;
  background: rgba(0,0,0,0.06);
  border-radius: 50%;
}

.sp-cta-content { position: relative; z-index: 1; }

.sp-cta-content h2 {
  font-size: 44px;
  font-weight: 900;
  color: #ffffff;
  margin-bottom: 18px;
  text-shadow: 0 4px 20px rgba(0,0,0,0.15);
}

.sp-cta-content p {
  font-size: 18px;
  color: rgba(255,255,255,0.9);
  max-width: 600px;
  margin: 0 auto 40px;
  line-height: 1.7;
}

.sp-cta-btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

.sp-cta-btn-white {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 16px 40px;
  background: #ffffff; color: #f7931e;
  border: 2px solid #ffffff;
  border-radius: 30px;
  text-decoration: none; font-weight: 700; font-size: 16px;
  transition: all 0.4s;
  box-shadow: 0 6px 20px rgba(0,0,0,0.15);
}

.sp-cta-btn-white:hover {
  background: transparent; color: #ffffff;
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(0,0,0,0.25);
}

.sp-cta-btn-dark {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 16px 40px;
  background: rgba(0,0,0,0.2); color: #ffffff;
  border: 2px solid rgba(255,255,255,0.4);
  border-radius: 30px;
  text-decoration: none; font-weight: 600; font-size: 16px;
  transition: all 0.4s;
}

.sp-cta-btn-dark:hover {
  background: rgba(0,0,0,0.3); border-color: #ffffff;
  transform: translateY(-3px);
  color: #ffffff;
}

/* ===================== FOOTER ===================== */
.sp-footer {
  background: #111111;
  padding: 80px 0 0;
}

.sp-footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 60px;
  padding-bottom: 60px;
}

.sp-footer-brand img { height: 60px; margin-bottom: 20px; }

.sp-footer-brand p {
  font-size: 15px;
  color: #888;
  line-height: 1.7;
  max-width: 280px;
}

.sp-footer-social { display: flex; gap: 12px; margin-top: 24px; }

.sp-footer-social .social-link {
  width: 38px; height: 38px;
  background: rgba(247,147,30,0.1);
  border: 1px solid rgba(247,147,30,0.2);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: #f7931e; font-size: 15px;
  text-decoration: none;
  transition: all 0.3s;
}

.sp-footer-social .social-link:hover { background: #f7931e; color: #ffffff; border-color: #f7931e; }

.sp-footer-col h4 {
  font-size: 16px; font-weight: 700; color: #ffffff;
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(247,147,30,0.2);
}

.sp-footer-col ul { list-style: none; padding: 0; margin: 0; }
.sp-footer-col ul li { margin-bottom: 12px; }
.sp-footer-col ul li a { font-size: 14px; color: #888; text-decoration: none; transition: color 0.3s; }
.sp-footer-col ul li a:hover { color: #f7931e; }

.sp-footer-contact-item {
  display: flex; align-items: flex-start; gap: 12px;
  font-size: 14px; color: #888; margin-bottom: 14px;
}

.sp-footer-contact-item i { color: #f7931e; font-size: 15px; margin-top: 2px; }

.sp-footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.05);
  padding: 24px 0;
  text-align: center;
  font-size: 14px;
  color: #555;
}

/* ===================== RESPONSIVE ===================== */
@media (max-width: 1199px) {
  .sp-features-grid { grid-template-columns: repeat(2, 1fr); }
  .sp-footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
}

@media (max-width: 991px) {
  .service-hero { padding: 120px 0 70px; }
  .service-hero-title { font-size: 40px; }
  .service-hero-visual { display: none; }
  .sp-overview-grid { grid-template-columns: 1fr; gap: 40px; }
  .sp-benefits-grid { grid-template-columns: 1fr; gap: 40px; }
  .sp-why-grid { grid-template-columns: repeat(2, 1fr); }
  .sp-process-grid { grid-template-columns: repeat(2, 1fr); }
  .sp-process-grid::before { display: none; }
  .sp-industries-grid { grid-template-columns: repeat(3, 1fr); }
  .sp-related-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .service-hero-title { font-size: 32px; }
  .service-hero-desc { font-size: 16px; }
  .sp-title { font-size: 32px; }
  .sp-section { padding: 70px 0; }
  .sp-features-grid { grid-template-columns: 1fr; }
  .sp-why-grid { grid-template-columns: 1fr; }
  .sp-process-grid { grid-template-columns: 1fr; }
  .sp-industries-grid { grid-template-columns: repeat(2, 1fr); }
  .sp-related-grid { grid-template-columns: 1fr; }
  .sp-footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .sp-cta-content h2 { font-size: 30px; }
  .hero-mini-stats { flex-direction: column; gap: 16px; }
}

@media (max-width: 576px) {
  .service-hero-title { font-size: 28px; }
  .service-hero-btns { flex-direction: column; }
  .service-btn-primary, .service-btn-outline { width: 100%; justify-content: center; }
}
