/* Base Setup */
.pp-services-wrapper {
  --primary-purple: #2d1645;
  --vivid-purple: #8b5cf6;
  --soft-bg: #fdfaff;
  background-color: var(--soft-bg);
  padding: 60px 20px;
  font-family: 'Segoe UI', Arial, sans-serif;
}

.pp-content-container {
  max-width: 1200px;
  margin: 0 auto;
}

/* Header Styles */
.pp-header-action {
  display: flex;
  justify-content: flex-end;
  margin-bottom: 30px;
}

.pp-btn-book {
  background: #7a3df0;
  color: #fff;
  border: none;
  padding: 8px 8px 8px 20px;
  border-radius: 50px;
  display: flex;
  align-items: center;
  gap: 15px;
  font-weight: 600;
  cursor: pointer;
}

.pp-btn-book:hover {

background-color: #6230d1;
transition: 0.2s ease-in-out;
}

.pp-icon-circle {
  background: #fff;
  color: var(--primary-purple);
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.pp-header-main {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 50px;
}

.pp-label { color: #833; font-weight: 700; font-size: 14px; }
.pp-main-heading { 
  font-size: clamp(40px, 8vw, 80px); 
  line-height: 0.9; 
  color: var(--primary-purple);
}

.pp-description-group { max-width: 380px; }
.pp-description-group p { color: #555; line-height: 1.6; margin-bottom: 20px; }
.pp-nav-links a { 
  text-decoration: none; 
  color: var(--primary-purple); 
  font-weight: 700; 
  margin-right: 25px; 
}

/* Grid & Card Logic */
.pp-services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.pp-service-card {
  position: relative;
  height: 400px;
  border-radius: 28px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  filter: grayscale(0.6) brightness(0.8); /* Desaturated look like the image */
}

.pp-service-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(45, 22, 69, 0.9) 10%, transparent 60%);
  z-index: 1;
}

.pp-card-inner {
  position: relative;
  z-index: 2;
  height: 100%;
  padding: 25px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.pp-card-inner h3 { color: #fff; font-size: 18px; max-width: 130px; margin: 0; }

.pp-btn-arrow {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 50px;
  height: 50px;
  background: #333;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  border-top-left-radius: 20px;
  transition: 0.3s;
}

/* Hover & Active States */
.pp-service-card:hover, .pp-active {
  transform: translateY(-12px);
  filter: grayscale(0) brightness(1);
  box-shadow: 0 15px 30px rgba(139, 92, 246, 0.4);
}

.pp-service-card:hover .pp-btn-arrow, .pp-active .pp-btn-arrow {
  background: var(--vivid-purple);
}

/* --- ADD YOUR IMAGE URLS HERE --- */
.pp-img-1 { background-image: url('1.png'); }
.pp-img-2 { background-image: url('2.png'); }
.pp-img-3 { background-image: url('3.png'); }
.pp-img-4 { background-image: url('4.png'); }

/* Progress Bar */
.pp-footer-line {
  margin-top: 60px;
  height: 2px;
  background: #eee;
  position: relative;
}

.pp-progress-indicator {
  position: absolute;
  height: 100%;
  width: 30%;
  background: var(--primary-purple);
  left: 35%;
}

/* Responsive */
@media (max-width: 900px) {
  .pp-services-grid { grid-template-columns: repeat(2, 1fr); }
  .pp-header-main { flex-direction: column; align-items: flex-start; gap: 30px; }
}