/* Service CTA Button - Enhanced styling for Services Page */
.service-cta-button {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  padding: 1rem 1.5rem;
  border-radius: var(--radius-xl);
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: var(--body-font);
  font-weight: 600;
  font-size: 1.1rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  width: 100%;
  background: var(--primary-gradient);
  color: var(--white-color);
}

.service-cta-button:hover {
  background: var(--primary-gradient-hover);
  transform: translateY(-2px);
}

.service-cta-icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  color: var(--white-color);
}

.service-cta-text {
  font-size: 1.1rem;
  font-weight: 600;
  font-family: var(--body-font);
}

.service-cta-button.whatsapp {
  background: #25D366;
  color: white;
}

.service-cta-button.whatsapp:hover {
  background: #1fa855;
}

.service-cta-button.whatsapp .service-cta-icon {
  color: white;
}

/* View All Services Button */
.services-view-all {
  margin-top: 3rem;
  display: flex;
  justify-content: center;
  align-items: center;
}

.view-all-services-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-sm);
  padding: var(--space-sm) var(--space-lg);
  border-radius: var(--radius-pill);
  border: 2px solid rgba(255, 255, 255, 0.9);
  background: rgba(255, 255, 255, 0.15);
  color: rgba(255, 255, 255, 0.95);
  font-family: var(--body-font);
  font-weight: 700;
  font-size: var(--text-base);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  cursor: pointer;
  transition: all var(--transition-slow) var(--ease-bounce);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  box-shadow: 
    0 6px 12px rgba(0, 0, 0, 0.15),
    0 2px 4px rgba(0, 0, 0, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.3);
  text-decoration: none;
  position: relative;
  overflow: hidden;
}

.view-all-services-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.5s;
}

.view-all-services-btn:hover::before {
  left: 100%;
}

.view-all-services-btn:hover {
  background: rgba(255, 255, 255, 0.95);
  color: var(--primary-color, #5512dd);
  border-color: rgba(255, 255, 255, 1);
  transform: translateY(-2px);
  box-shadow: 
    0 8px 16px rgba(0, 0, 0, 0.2),
    0 4px 8px rgba(0, 0, 0, 0.15),
    inset 0 1px 0 rgba(255, 255, 255, 0.5);
}

.view-all-services-btn:hover .view-all-arrow {
  transform: translateX(5px);
  color: var(--primary-color, #5512dd);
}

.view-all-services-btn:active {
  transform: translateY(-1px) scale(1.01);
}

.view-all-arrow {
  width: var(--text-base);
  height: var(--text-base);
  transition: all var(--transition-slow) var(--ease-in-out);
  color: rgba(255, 255, 255, 0.95);
}

/* Mobile adjustments */
@media screen and (max-width: 48rem) {
  .service-cta-button {
    padding: 0.85rem 1.2rem;
    font-size: 1rem;
  }
  
  .service-cta-icon {
    width: 18px;
    height: 18px;
  }
  
  .service-cta-text {
    font-size: 1rem;
  }

  .services-view-all {
    margin-top: 2rem;
  }

  .view-all-services-btn {
    padding: var(--space-sm) var(--space-lg);
    font-size: var(--text-base);
  }

  .view-all-arrow {
    width: var(--text-base);
    height: var(--text-base);
  }
}

/* Service Card */
.service-card {
  position: relative;
  overflow: hidden;
  background-color: #fff !important; /* Override transparent background */
  border-radius: var(--radius-xl);
  padding: 1.5rem;
  box-shadow: 0 4px 25px rgba(14, 36, 49, 0.15);
  text-align: center;
  margin-bottom: 2rem;
  width: 100%;
  box-sizing: border-box;
} 