/* Services Page - Theme: Teal/Purple Gradient */
:root {
  --services-primary: #0d9488;
  --services-secondary: #7c3aed;
  --services-accent: #fbbf24;
  --services-bg: linear-gradient(135deg, #ecfeff 0%, #f5f3ff 50%, #fffbeb 100%);
}

.hero-services {
  padding: 80px 0 60px;
  background: var(--services-bg);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero-services::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%230d9488' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  opacity: 0.5;
}

.hero-services h1 {
  font-size: clamp(2.5rem, 4vw, 3.5rem);
  font-weight: 800;
  background: linear-gradient(135deg, var(--services-primary), var(--services-secondary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 16px;
}

.hero-services p {
  font-size: clamp(1rem, 1.5vw, 1.25rem);
  color: #475569;
  max-width: 600px;
  margin: 0 auto;
}

.navbar-services {
  background: rgba(255, 255, 255, 0.95);
  border-bottom: 1px solid #e2e8f0;
}

.navbar-services .nav-menu a {
  color: #334155;
  font-weight: 600;
}

.navbar-services .nav-menu a.active,
.navbar-services .nav-menu a:hover {
  color: var(--services-primary);
}

/* Pricing Cards - Updated with Real Prices */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
  margin-top: 32px;
}

.pricing-card {
  padding: 28px;
  border-radius: 20px;
  background: #fff;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  transition: all 0.3s ease;
  border-left: 4px solid var(--services-primary);
  position: relative;
}

.pricing-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

.pricing-card.premium { border-left-color: #14b8a6; }
.pricing-card.premium::before {
  content: "PREMIUM";
  position: absolute;
  top: -12px;
  right: 20px;
  background: #14b8a6;
  color: #fff;
  padding: 4px 12px;
  border-radius: 999px;
  font-size: 0.7rem;
  font-weight: 700;
}

.pricing-card.vip { border-left-color: #8b5cf6; }
.pricing-card.vip::before {
  content: "VIP";
  position: absolute;
  top: -12px;
  right: 20px;
  background: #8b5cf6;
  color: #fff;
  padding: 4px 12px;
  border-radius: 999px;
  font-size: 0.7rem;
  font-weight: 700;
}

.pricing-card.vvip { border-left-color: #ec4899; }
.pricing-card.vvip::before {
  content: "VVIP";
  position: absolute;
  top: -12px;
  right: 20px;
  background: #ec4899;
  color: #fff;
  padding: 4px 12px;
  border-radius: 999px;
  font-size: 0.7rem;
  font-weight: 700;
}

.pricing-card .service-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 20px;
  font-size: 1.8rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f8fafc;
  border-radius: 16px;
}

.pricing-card.premium .service-icon { background: #ccfbf1; color: #0f766e; }
.pricing-card.vip .service-icon { background: #ede9fe; color: #7c3aed; }
.pricing-card.vvip .service-icon { background: #fce7f3; color: #db2777; }

.pricing-card h3 {
  text-align: center;
  font-size: 1.5rem;
  font-weight: 800;
  margin: 0 0 16px 0;
  color: var(--ink);
}

.pricing-card ul {
  list-style: none;
  padding: 0;
  margin: 20px 0;
}

.pricing-card ul li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 10px;
  font-size: 0.9rem;
  color: #475569;
}

.pricing-card ul li i {
  color: var(--green);
  flex-shrink: 0;
  margin-top: 3px;
}

.pricing-card .pricing-variants {
  background: #f8fafc;
  border-radius: 12px;
  padding: 16px;
  margin: 20px 0;
}

.pricing-card .pricing-variants h4 {
  font-size: 0.85rem;
  font-weight: 700;
  color: #64748b;
  margin: 0 0 12px 0;
  text-transform: uppercase;
}

.pricing-card .price-row {
  display: flex;
  justify-content: space-between;
  padding: 10px 12px;
  background: #fff;
  border-radius: 8px;
  margin-bottom: 8px;
  font-weight: 700;
}

.pricing-card .price-row.klinik { border-left: 3px solid #14b8a6; }
.pricing-card .price-row.rumah { border-left: 3px solid #0d9488; }

.pricing-card .price-row span {
  font-size: 1.1rem;
}

.pricing-card .btn {
  margin-top: 16px;
  border-radius: 12px;
}

.bg-light {
  background: #f8fafc;
}

.home-service-card {
  background: linear-gradient(135deg, var(--services-primary), var(--services-secondary));
  border-radius: 20px;
  padding: 48px;
  color: #fff;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 32px;
  align-items: center;
  box-shadow: 0 20px 25px -5px rgba(13, 148, 136, 0.3);
}

.home-service-content h2 {
  color: #fff;
  font-size: 2rem;
  margin-bottom: 16px;
}

.home-service-content p {
  color: #e2e8f0;
  font-size: 1rem;
  margin-bottom: 20px;
}

.home-service-features {
  list-style: none;
  padding: 0;
  margin: 16px 0;
  display: grid;
  gap: 8px;
}

.home-service-features li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 1rem;
}

.home-service-features li i {
  font-size: 1.1rem;
  color: #fbbf24;
}

.home-service-visual {
  font-size: 6rem;
  opacity: 0.8;
  text-align: center;
}

.home-service-visual i {
  color: #fff;
}

.footer-services {
  background: #0e2533;
  color: #d7e5ee;
  padding: 48px 0 20px;
}

@media (max-width: 768px) {
  .hero-services {
    padding: 60px 0 40px;
  }
  
  .home-service-card {
    grid-template-columns: 1fr;
    text-align: center;
    padding: 32px;
  }
  
  .home-service-visual {
    order: -1;
    font-size: 4rem;
    margin-bottom: 20px;
  }
  
  .pricing-grid {
    grid-template-columns: 1fr;
  }
  
  .pricing-card {
    padding: 24px;
  }
}
