/* ====================================================
   SERVICES.CSS — Reusable styles for all service pages
   Elvoraplus | Premium Home Solutions
==================================================== */
.hamburger{
  background-color: white;
}
/* ========================
   PAGE HERO
======================== */
.sp-hero {
  padding: 160px 0 100px;
  background: #f5f5f5;
  overflow: hidden;
}

.sp-hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
  gap: 60px;
}

.sp-hero-image-box {
  width: 100%;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.15);
}

.sp-hero-image-box img {
  width: 100%;
  display: block;
  transition: transform 0.6s ease;
}

.sp-hero-left {
  position: relative;
}

.sp-breadcrumb {
  font-size: 13px;
  color: #64748b;
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.sp-breadcrumb a {
  color: #64748b;
  text-decoration: none;
  transition: color 0.3s ease;
}

.sp-breadcrumb a:hover {
  color: #6a5cff;
}

.sp-breadcrumb .sep {
  font-size: 10px;
  opacity: 0.5;
}

.sp-breadcrumb .current {
  color: #6a5cff;
  font-weight: 500;
}

.sp-hero-tag {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #8b7dff;
  margin-bottom: 8px;
}

.sp-hero h1 {
  font-size: 52px;
  font-weight: 500;
  color: #0f172a;
  line-height: 1.1;
  margin-bottom: 24px;
}

.sp-hero h1 span {
  color: #8b7dff;
}

.sp-hero-desc {
  font-size: 18px;
  color: #475569;
  max-width: 560px;
  line-height: 1.7;
  margin-bottom: 40px;
}

.sp-hero-actions {
  display: flex;
  gap: 16px;
  align-items: center;
  flex-wrap: wrap;
}

.sp-btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, #6a5cff, #8b7dff);
  color: #fff;
  padding: 16px 36px;
  border-radius: 50px;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 10px 25px -5px rgba(106, 92, 255, 0.4);
}

.sp-btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 20px 30px -10px rgba(106, 92, 255, 0.5);
}

.sp-btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #334155;
  font-size: 16px;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.3s ease;
}

.sp-btn-ghost i {
  color: #8b7dff;
  transition: transform 0.3s ease;
}

.sp-btn-ghost:hover {
  color: #6a5cff;
}

.sp-btn-ghost:hover i {
  transform: translateY(5px);
}

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

.sp-section-alt {
  background: #f8f8fc;
}

.sp-section-dark {
  background: #0a0e17;
  color: #fff;
}

.sp-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #8b7dff;
  margin-bottom: 6px;
}

.sp-section-dark .sp-tag {
  color: #a78bfa;
}

.sp-heading {
  font-size: 38px;
  font-weight: 500;
  color: #111;
  line-height: 1.2;
  margin-bottom: 18px;
}

.sp-heading span {
  color: #8b7dff;
}

.sp-section-dark .sp-heading {
  color: #fff;
}

.sp-subtext {
  font-size: 16px;
  color: #555;
  line-height: 1.7;
  max-width: 560px;
}

.sp-section-dark .sp-subtext {
  color: #9ca3af;
}

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

.sp-overview-img {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
}

.sp-overview-img img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  display: block;
  border-radius: 20px;
}

.sp-overview-img::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 20px;
  box-shadow: inset 0 0 0 1px rgba(106, 92, 255, 0.12);
}

.sp-overview-text .sp-subtext {
  margin-bottom: 30px;
  max-width: 100%;
}

.sp-check-list {
  list-style: none;
  padding: 0;
  margin: 0 0 40px 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px 20px;
}

.sp-check-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 15px;
  color: #333;
  font-weight: 500;
}

.sp-check-list li i {
  width: 22px;
  height: 22px;
  background: rgba(106, 92, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #6a5cff;
  font-size: 11px;
  flex-shrink: 0;
}

/* ========================
   WHAT WE OFFER — CARDS
======================== */
.sp-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 50px;
}

.sp-card {
  background: #fff;
  border-radius: 22px;
  padding: 36px 30px;
  border: 1px solid #f0f0f6;
  transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1),
              box-shadow 0.4s ease,
              border-color 0.3s ease;
}

.sp-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(106, 92, 255, 0.08);
  border-color: rgba(106, 92, 255, 0.2);
}

.sp-card-icon {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  margin-bottom: 24px;
  color: #fff;
}

.sp-card-icon.purple { background: linear-gradient(135deg, #8b5cf6, #7c3aed); }
.sp-card-icon.blue   { background: linear-gradient(135deg, #3b82f6, #2563eb); }
.sp-card-icon.teal   { background: linear-gradient(135deg, #14b8a6, #0d9488); }
.sp-card-icon.orange { background: linear-gradient(135deg, #f97316, #ea580c); }
.sp-card-icon.pink   { background: linear-gradient(135deg, #ec4899, #db2777); }
.sp-card-icon.indigo { background: linear-gradient(135deg, #6366f1, #4f46e5); }

.sp-card h3 {
  font-size: 19px;
  font-weight: 700;
  color: #111;
  margin-bottom: 12px;
  line-height: 1.25;
}

.sp-card p {
  font-size: 14px;
  color: #555;
  line-height: 1.7;
}

/* ========================
   STATS STRIP
======================== */
.sp-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  background: rgba(255,255,255,0.06);
  border-radius: 20px;
  overflow: hidden;
  margin-top: 60px;
}

.sp-stat {
  padding: 44px 30px;
  background: rgba(255,255,255,0.04);
  text-align: center;
  transition: background 0.3s ease;
}

.sp-stat:hover {
  background: rgba(139, 125, 255, 0.12);
}

.sp-stat-num {
  font-size: 46px;
  font-weight: 700;
  color: #a78bfa;
  line-height: 1;
  margin-bottom: 10px;
}

.sp-stat-label {
  font-size: 14px;
  color: #9ca3af;
  line-height: 1.4;
}

/* ========================
   PROCESS MINI
======================== */
.sp-process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  margin-top: 50px;
  position: relative;
}

.sp-process-step {
  text-align: center;
  padding: 0 20px;
  position: relative;
}

.sp-process-step:not(:last-child)::after {
  content: "\f105";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  position: absolute;
  top: 27px;
  right: -6px;
  color: #d1d5db;
  font-size: 16px;
}

.sp-step-num {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: linear-gradient(135deg, #6a5cff, #8b7dff);
  color: #fff;
  font-size: 18px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  box-shadow: 0 8px 20px rgba(106, 92, 255, 0.3);
  transition: transform 0.3s ease;
}

.sp-process-step:hover .sp-step-num {
  transform: scale(1.12);
}

.sp-process-step h4 {
  font-size: 16px;
  font-weight: 700;
  color: #111;
  margin-bottom: 10px;
}

.sp-process-step p {
  font-size: 13.5px;
  color: #666;
  line-height: 1.6;
}

/* ========================
   CTA SECTION
======================== */
.sp-cta-section {
  padding: 100px 0;
  background: #ffffff;
  text-align: center;
}

.sp-cta-inner {
  max-width: 680px;
  margin: 0 auto;
}

.sp-cta-inner .sp-heading {
  font-size: 42px;
  margin-bottom: 18px;
}

.sp-cta-inner .sp-subtext {
  font-size: 17px;
  margin: 0 auto 40px;
  max-width: 480px;
}

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

.sp-btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: 2px solid #6a5cff;
  color: #111;
  padding: 15px 36px;
  border-radius: 50px;
  font-size: 15px;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.3s ease;
}

.sp-btn-outline i {
  color: #6a5cff;
  transition: transform 0.3s ease;
}

.sp-btn-outline:hover {
  background: #6a5cff;
  color: #fff;
}

.sp-btn-outline:hover i {
  color: #fff;
  transform: translateX(4px);
}

/* ========================
   RESPONSIVE
======================== */
/* ========================
   RESPONSIVE
======================== */
@media (max-width: 1024px) {
  .sp-hero { padding: 140px 0 80px; }
  .sp-hero-grid { gap: 40px; }
  .sp-hero h1 { font-size: 42px; }
  .sp-heading { font-size: 32px; }
  .sp-overview-grid { grid-template-columns: 1fr; gap: 40px; }
  .sp-overview-img img { height: 340px; }
  .sp-cards-grid { grid-template-columns: repeat(2, 1fr); }
  .sp-stats { grid-template-columns: repeat(2, 1fr); }
  .sp-process-grid { grid-template-columns: repeat(2, 1fr); gap: 40px; }
  .sp-process-step:not(:last-child)::after { display: none; }
}

@media (max-width: 768px) {
  .sp-hero { padding: 120px 0 60px; }
  .sp-hero-grid { grid-template-columns: 1fr; gap: 40px; text-align: center; }
  .sp-hero-actions { justify-content: center; }
  .sp-breadcrumb { justify-content: center; }
  .sp-hero h1 { font-size: 32px; }
  .sp-hero-desc { font-size: 16px; margin-left: auto; margin-right: auto; }
  .sp-hero-image-box { 
    max-width: 500px; 
    margin: 30px auto 0; 
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
  }

  .sp-section { padding: 60px 0; }
  .sp-heading { font-size: 26px; }
  .sp-subtext { font-size: 15px; }

  .sp-cards-grid { grid-template-columns: 1fr; gap: 14px; }
  .sp-card { padding: 28px 22px; }

  .sp-check-list { grid-template-columns: 1fr; }

  .sp-stats { grid-template-columns: repeat(2, 1fr); }
  .sp-stat { padding: 30px 20px; }
  .sp-stat-num { font-size: 36px; }

  .sp-process-grid { grid-template-columns: 1fr; gap: 36px; }
  .sp-process-step { text-align: left; display: flex; gap: 20px; align-items: flex-start; }
  .sp-step-num { flex-shrink: 0; margin: 0; }

  .sp-cta-inner .sp-heading { font-size: 28px; }
  .sp-cta-inner .sp-subtext { font-size: 15px; }
  .sp-cta-section { padding: 70px 0; }
  .sp-btn-primary, .sp-btn-outline { width: 100%; justify-content: center; }
}

@media (max-width: 480px) {
  .sp-hero h1 { font-size: 28px; }
  .sp-stats { grid-template-columns: 1fr 1fr; }
}
