/* ============================================================================
   SERVICES PAGE STYLES - REDESIGNED
   ============================================================================ */

/* ============================================================================
   HERO SECTION
   ============================================================================ */

.services-hero {
  background: linear-gradient(135deg, #f8f9fa 0%, #fff3cd 100%);
  padding: 3rem 0;
}

.services-hero-badge {
  display: inline-flex;
  align-items: center;
  padding: 0.375rem 0.875rem;
  background: var(--brand-yellow);
  color: var(--brand-black);
  border-radius: 2rem;
  font-size: 0.75rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.services-hero-title {
  font-size: 2.25rem;
  font-weight: 700;
  color: var(--brand-black);
  line-height: 1.2;
  margin-bottom: 1rem;
}

.services-hero-desc {
  font-size: 1rem;
  color: #6b7280;
  line-height: 1.6;
  margin-bottom: 1.5rem;
  max-width: 32rem;
}

.services-hero-stats {
  display: flex;
  gap: 2rem;
}

.services-stat {
  text-align: center;
}

.services-stat-num {
  display: block;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--brand-blue);
}

.services-stat-label {
  font-size: 0.75rem;
  color: #6b7280;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* Hero Image Grid - Small Thumbnails */
.services-hero-img-grid {
  position: relative;
  height: 14rem;
}

.services-hero-thumb {
  position: absolute;
  border-radius: 0.75rem;
  box-shadow: 0 0.5rem 1.5rem rgba(0, 0, 0, 0.15);
  object-fit: cover;
}

.services-hero-thumb-1 {
  width: 7rem;
  height: 7rem;
  top: 0;
  left: 2rem;
  z-index: 3;
}

.services-hero-thumb-2 {
  width: 6rem;
  height: 6rem;
  top: 0.5rem;
  left: 10rem;
  z-index: 2;
}

.services-hero-thumb-3 {
  width: 5.5rem;
  height: 5.5rem;
  top: 5.5rem;
  left: 5.5rem;
  z-index: 1;
}

/* ============================================================================
   HOW IT WORKS STEPS
   ============================================================================ */

.services-steps {
  background: #fff;
  padding: 3rem 0;
}

.services-steps-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.services-step-card {
  background: #f8f9fa;
  border-radius: 1rem;
  padding: 1.5rem;
  text-align: center;
  flex: 0 1 14rem;
  position: relative;
}

.services-step-num {
  position: absolute;
  top: -0.75rem;
  left: 50%;
  transform: translateX(-50%);
  width: 1.5rem;
  height: 1.5rem;
  background: var(--brand-yellow);
  color: var(--brand-black);
  border-radius: 50%;
  font-size: 0.75rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}

.services-step-icon-wrap {
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--brand-yellow) 0%, var(--brand-primary-600) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 0.75rem;
  color: var(--brand-black);
  font-size: 1rem;
}

.services-step-arrow {
  color: #d1d5db;
  font-size: 1.25rem;
  display: flex;
  align-items: center;
}

/* ============================================================================
   SERVICE ZONES - CARD GRID
   ============================================================================ */

.services-zones {
  background: #f8f9fa;
  padding: 3rem 0;
}

.services-zone-card {
  background: #fff;
  border-radius: 1rem;
  padding: 1.5rem;
  height: 100%;
  display: flex;
  flex-direction: column;
  box-shadow: 0 0.125rem 0.5rem rgba(0, 0, 0, 0.06);
  border: 1px solid #e9ecef;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.services-zone-card:hover {
  transform: translateY(-0.25rem);
  box-shadow: 0 0.5rem 1.5rem rgba(0, 0, 0, 0.1);
}

.services-zone-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.services-zone-icon {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.services-zone-icon img {
  width: 1.5rem;
  height: 1.5rem;
  object-fit: contain;
}

.services-zone-property .services-zone-icon {
  background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
}

.services-zone-realtor .services-zone-icon {
  background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 100%);
}

.services-zone-workman .services-zone-icon {
  background: linear-gradient(135deg, #fee2e2 0%, #fecaca 100%);
}

.services-zone-badge {
  font-size: 0.625rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 0.25rem 0.5rem;
  border-radius: 1rem;
}

.services-zone-badge-property {
  background: #fef3c7;
  color: #92400e;
}

.services-zone-badge-realtor {
  background: #dbeafe;
  color: #1e40af;
}

.services-zone-badge-workman {
  background: #fee2e2;
  color: #991b1b;
}

.services-zone-title {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--brand-black);
  margin-bottom: 0.25rem;
}

.services-zone-tagline {
  font-size: 0.8125rem;
  color: var(--brand-blue);
  font-weight: 500;
  margin-bottom: 0.75rem;
}

.services-zone-desc {
  font-size: 0.8125rem;
  color: #6b7280;
  line-height: 1.5;
  margin-bottom: 1rem;
}

.services-zone-features {
  list-style: none;
  padding: 0;
  margin: 0 0 1rem 0;
  flex-grow: 1;
}

.services-zone-features li {
  font-size: 0.8125rem;
  color: #374151;
  padding: 0.375rem 0;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.services-zone-features li i {
  color: var(--color-success);
  font-size: 0.75rem;
}

.services-zone-footer {
  margin-top: auto;
}

.services-zone-btn {
  width: 100%;
  padding: 0.625rem 1rem;
  border-radius: 0.5rem;
  font-weight: 600;
  font-size: 0.875rem;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.services-zone-btn-property {
  background: linear-gradient(135deg, var(--brand-yellow) 0%, var(--brand-primary-600) 100%);
  color: var(--brand-black);
  border: none;
}

.services-zone-btn-property:hover {
  background: linear-gradient(135deg, var(--brand-primary-600) 0%, #c48f00 100%);
  color: var(--brand-black);
}

.services-zone-btn-realtor {
  background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
  color: #fff;
  border: none;
}

.services-zone-btn-realtor:hover {
  background: linear-gradient(135deg, #1d4ed8 0%, #1e3a8a 100%);
  color: #fff;
}

.services-zone-btn-workman {
  background: linear-gradient(135deg, var(--brand-red) 0%, #dc2626 100%);
  color: #fff;
  border: none;
}

.services-zone-btn-workman:hover {
  background: linear-gradient(135deg, #dc2626 0%, #b91c1c 100%);
  color: #fff;
}

/* ============================================================================
   BENEFITS SECTION
   ============================================================================ */

.services-benefits {
  background: #fff;
  padding: 3rem 0;
}

.services-benefit-card {
  background: #f8f9fa;
  border-radius: 0.75rem;
  padding: 1.25rem;
  text-align: center;
  height: 100%;
  transition: transform 0.3s ease;
}

.services-benefit-card:hover {
  transform: translateY(-0.125rem);
}

.services-benefit-card i {
  font-size: 1.5rem;
  color: var(--brand-yellow);
  margin-bottom: 0.75rem;
}

.services-benefit-card h6 {
  font-weight: 600;
  margin-bottom: 0.25rem;
}

/* ============================================================================
   CONNECT SECTION (WhatsApp & Careers)
   ============================================================================ */

.services-more {
  background: #f8f9fa;
  padding: 3rem 0;
}

.services-connect-card {
  background: #fff;
  border-radius: 0.75rem;
  padding: 1.25rem;
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  box-shadow: 0 0.125rem 0.5rem rgba(0, 0, 0, 0.06);
  border: 1px solid #e9ecef;
  height: 100%;
}

.services-connect-icon {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1.125rem;
}

.services-connect-whatsapp .services-connect-icon {
  background: #dcfce7;
  color: #16a34a;
}

.services-connect-careers .services-connect-icon {
  background: #dbeafe;
  color: #2563eb;
}

.services-connect-content {
  flex: 1;
}

/* ============================================================================
   CTA SECTION
   ============================================================================ */

.services-cta {
  background: linear-gradient(135deg, var(--brand-blue) 0%, #2d3553 100%);
  padding: 3rem 0;
}

/* ============================================================================
   RESPONSIVE
   ============================================================================ */

@media (max-width: 991.98px) {
  .services-hero-title {
    font-size: 1.75rem;
  }

  .services-hero-stats {
    gap: 1.5rem;
  }

  .services-stat-num {
    font-size: 1.25rem;
  }
}

@media (max-width: 767.98px) {
  .services-hero {
    padding: 2rem 0;
    text-align: center;
  }

  .services-hero-desc {
    margin-left: auto;
    margin-right: auto;
  }

  .services-hero-stats {
    justify-content: center;
  }

  .services-hero-title {
    font-size: 1.5rem;
  }

  .services-steps,
  .services-zones,
  .services-benefits,
  .services-more,
  .services-cta {
    padding: 2rem 0;
  }

  .services-steps-row {
    flex-direction: column;
    gap: 1.5rem;
  }

  .services-step-card {
    width: 100%;
    max-width: 16rem;
  }

  .services-zone-card {
    padding: 1.25rem;
  }

  .services-zone-title {
    font-size: 1rem;
  }

  .services-connect-card {
    flex-direction: column;
    text-align: center;
    align-items: center;
  }

  .services-benefit-card {
    padding: 1rem;
  }

  .services-benefit-card i {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
  }

  .services-benefit-card h6 {
    font-size: 0.875rem;
  }
}

/* ============================================================================
   LEGACY SUPPORT (Keep for compatibility)
   ============================================================================ */

.services-step-icon {
  width: 4rem;
  height: 4rem;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--brand-yellow) 0%, var(--brand-primary-600) 100%);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--brand-black);
  font-size: 1.5rem;
}

.services-cta-section {
  background: linear-gradient(135deg, var(--brand-blue) 0%, #2d3553 100%);
}
