/* Page Header - Scoped only to Service Pages with Gradient Backgrounds */
.page-driver .page-header,
.page-helper .page-header,
.page-technical .page-header,
.page-cleaning .page-header,
.page-support .page-header,
.page-administrasi .page-header {
  text-align: center;
  margin-bottom: 50px;
  padding: 50px 30px;
  border-radius: 24px;
  color: white !important;
  position: relative;
  overflow: hidden;
  box-shadow: 0 12px 30px rgba(18, 50, 75, 0.05);
}

.page-driver .page-header h1,
.page-helper .page-header h1,
.page-technical .page-header h1,
.page-cleaning .page-header h1,
.page-support .page-header h1,
.page-administrasi .page-header h1 {
  margin-bottom: 12px;
  color: white !important;
  font-size: 2.2rem;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.page-driver .page-header .subtitle,
.page-helper .page-header .subtitle,
.page-technical .page-header .subtitle,
.page-cleaning .page-header .subtitle,
.page-support .page-header .subtitle,
.page-administrasi .page-header .subtitle {
  color: rgba(255, 255, 255, 0.9) !important;
  font-size: 1.05rem;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

/* Default non-service Page Header (About, Contact, Career) */
.page-about .page-header,
.page-contact .page-header,
.page-career .page-header {
  text-align: center;
  margin-bottom: 40px;
  padding: 60px 0 40px;
  color: var(--text) !important;
}

.page-about .page-header h1,
.page-contact .page-header h1,
.page-career .page-header h1 {
  color: var(--text) !important;
  font-size: 2.2rem;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.page-about .page-header .subtitle,
.page-contact .page-header .subtitle,
.page-career .page-header .subtitle {
  color: var(--muted) !important;
  font-size: 1.1rem;
}

/* Service Page Headers Gradient Color Themes */
.page-driver .page-header {
  background: linear-gradient(135deg, #102a43 0%, #2f7dff 100%);
}
.page-helper .page-header {
  background: linear-gradient(135deg, #0f3057 0%, #00b4db 100%);
}
.page-technical .page-header {
  background: linear-gradient(135deg, #180b30 0%, #8e54e9 100%);
}
.page-cleaning .page-header {
  background: linear-gradient(135deg, #093028 0%, #237a57 100%);
}
.page-support .page-header {
  background: linear-gradient(135deg, #310f30 0%, #db36a4 100%);
}
.page-administrasi .page-header {
  background: linear-gradient(135deg, #16222f 0%, #3a6073 100%);
}

.page-header::before {
  content: '';
  position: absolute;
  top: -60px;
  right: -60px;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  filter: blur(40px);
  pointer-events: none;
}
.page-header::after {
  content: '';
  position: absolute;
  bottom: -40px;
  left: -40px;
  width: 160px;
  height: 160px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  filter: blur(30px);
  pointer-events: none;
}

/* Content Grid - Service Pages */
.content-grid {
  display: grid;
  grid-template-columns: 1fr 350px;
  gap: 40px;
  margin-bottom: 60px;
}

.content-main {
  background: var(--surface);
  padding: 40px;
  border-radius: 24px;
  border: 1px solid var(--border);
  box-shadow: 0 10px 30px rgba(18, 50, 75, 0.03);
}

.content-main h2 {
  margin-top: 40px;
  margin-bottom: 24px;
}

.content-main h2:first-child {
  margin-top: 0;
}

.content-main p {
  margin-bottom: 20px;
  line-height: 1.8;
}

/* Features List - Overhauled to Grid Card Style */
.features-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  margin: 35px 0;
}

.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 24px;
  gap: 16px;
  transition: all 0.3s cubic-bezier(0.25, 1, 0.5, 1);
}

.feature-item:hover {
  background: var(--surface);
  transform: translateY(-5px);
  border-color: var(--primary);
  box-shadow: 0 10px 25px rgba(47, 125, 255, 0.06);
}

.feature-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: var(--surface);
  border: 1px solid var(--border);
  box-shadow: 0 4px 10px rgba(18, 50, 75, 0.03);
  transition: all 0.3s ease;
}

.feature-icon svg {
  width: 24px;
  height: 24px;
  color: var(--primary);
  transition: transform 0.3s cubic-bezier(0.25, 1, 0.5, 1);
}

.feature-item:hover .feature-icon {
  background: var(--primary);
  border-color: var(--primary);
  box-shadow: 0 4px 12px rgba(47, 125, 255, 0.2);
}

.feature-item:hover .feature-icon svg {
  transform: scale(1.15);
  color: white;
}

.feature-content h3 {
  margin-top: 0;
  margin-bottom: 8px;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text);
}

.feature-content p {
  margin: 0;
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.6;
}

/* Benefits List */
.benefits-list {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px 24px;
  margin: 28px 0;
  padding: 0;
}

.benefits-list li {
  position: relative;
  padding-left: 28px;
  font-size: 0.95rem;
  color: var(--text);
  line-height: 1.6;
}

.benefits-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--success);
  font-weight: 800;
  font-size: 1.1rem;
}

/* Sidebar */
.sidebar {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.sidebar-card {
  background: var(--surface);
  padding: 30px;
  border-radius: 20px;
  border: 1px solid var(--border);
  box-shadow: 0 10px 30px rgba(18, 50, 75, 0.03);
}

.sidebar-card h3 {
  margin-top: 0;
  margin-bottom: 16px;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text);
}

/* Sidebar Advantages Card with SVG List styling */
.sidebar-advantages {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.sidebar-adv-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.adv-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: var(--bg);
  border: 1px solid var(--border);
  color: var(--primary);
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.sidebar-adv-item:hover .adv-icon {
  background: var(--primary);
  border-color: var(--primary);
  color: white;
  box-shadow: 0 4px 10px rgba(47, 125, 255, 0.2);
}

.adv-icon svg {
  width: 20px;
  height: 20px;
}

.adv-info h4 {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 4px;
}

.adv-info p {
  font-size: 0.82rem;
  color: var(--muted);
  line-height: 1.5;
  margin: 0;
}

.sidebar-card p {
  margin-bottom: 16px;
}

/* Pricing */
.pricing {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.price-item {
  padding: 12px;
  background: var(--bg);
  border-radius: 8px;
  border-left: 3px solid var(--primary);
}

.price-item h4 {
  font-size: 1rem;
  margin-bottom: 4px;
}

.price-item .price {
  font-size: 0.9rem;
  color: var(--primary);
  font-weight: 600;
}

/* Stats Box */
.stats-box {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}

.stat-box-item {
  background: var(--bg);
  padding: 16px;
  border-radius: 8px;
  text-align: center;
}

.stat-box-item h4 {
  font-size: 1.5rem;
  color: var(--primary);
  margin-bottom: 4px;
}

.stat-box-item p {
  font-size: 0.85rem;
  margin: 0;
}

/* Service List */
.service-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.service-list li {
  padding: 12px;
  background: var(--bg);
  border-radius: 8px;
  font-size: 0.95rem;
}

/* Process Flow */
.process-flow {
  display: flex;
  justify-content: space-around;
  align-items: center;
  gap: 16px;
  margin: 40px 0;
  flex-wrap: wrap;
}

.process-step {
  text-align: center;
  flex: 0 0 auto;
}

.step-number {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--primary);
  color: white;
  font-weight: 700;
  font-size: 1.2rem;
  margin: 0 auto 12px;
}

.process-step h4 {
  font-size: 0.95rem;
  margin: 0 0 4px;
}

.process-step p {
  font-size: 0.85rem;
  margin: 0;
}

.process-arrow {
  font-size: 1.5rem;
  color: var(--primary);
  font-weight: bold;
  display: none;
}

@media (min-width: 769px) {
  .process-arrow {
    display: block;
  }
}

/* Responsive */
@media (max-width: 768px) {
  .content-grid {
    grid-template-columns: 1fr;
  }

  .sidebar {
    order: -1;
  }

  .benefits-list {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .process-flow {
    flex-direction: column;
    gap: 20px;
  }

  .process-arrow {
    transform: rotate(90deg);
    margin: 0;
  }

  .content-main {
    padding: 24px;
  }

  .sidebar-card {
    padding: 24px;
  }
}

/* Service Pages Background Graphics */
.page-driver .content-main,
.page-helper .content-main,
.page-technical .content-main,
.page-cleaning .content-main,
.page-support .content-main,
.page-administrasi .content-main {
  position: relative;
  overflow: hidden;
}

.page-driver .content-main::before,
.page-helper .content-main::before,
.page-technical .content-main::before,
.page-cleaning .content-main::before,
.page-support .content-main::before,
.page-administrasi .content-main::before {
  content: '';
  position: absolute;
  bottom: -40px;
  right: -40px;
  width: 280px;
  height: 280px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: bottom right;
  opacity: 0.05;
  pointer-events: none;
  z-index: 0;
  transition: all 0.3s ease;
}

/* Light Theme Graphics (Primary/Custom Colors) */
.page-driver .content-main::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='240' height='240' viewBox='0 0 24 24' fill='none' stroke='%232196f3' stroke-width='1.2'%3E%3Crect x='1' y='3' width='15' height='13'%3E%3C/rect%3E%3Cpolygon points='16 8 20 8 23 11 23 16 16 16 16 8'%3E%3C/polygon%3E%3Ccircle cx='5.5' cy='18.5' r='2.5'%3E%3C/circle%3E%3Ccircle cx='18.5' cy='18.5' r='2.5'%3E%3C/circle%3E%3C/svg%3E");
}
.page-helper .content-main::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='240' height='240' viewBox='0 0 24 24' fill='none' stroke='%234caf50' stroke-width='1.2'%3E%3Cpath d='M21 8a2 2 0 0 0-1-1.73l-7-4a2 2 0 0 0-2 0l-7 4A2 2 0 0 0 3 8v8a2 2 0 0 0 1 1.73l7 4a2 2 0 0 0 2 0l7-4A2 2 0 0 0 21 16Z'%3E%3C/path%3E%3Cpath d='m3.3 7 8.7 5 8.7-5'%3E%3C/path%3E%3Cpath d='M12 22V12'%3E%3C/path%3E%3C/svg%3E");
}
.page-technical .content-main::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='240' height='240' viewBox='0 0 24 24' fill='none' stroke='%23ff9800' stroke-width='1.2'%3E%3Ccircle cx='12' cy='12' r='3'%3E%3C/circle%3E%3Cpath d='M19.4 15a1.65 1.65 0 0 0 .33 1.82l.06.06a2 2 0 1 1-2.83 2.83l-.06-.06a1.65 1.65 0 0 0-1.82-.33 1.65 1.65 0 0 0-1 1.51V21a2 2 0 0 1-4 0v-.09A1.65 1.65 0 0 0 9 19.4a1.65 1.65 0 0 0-1.82.33l-.06.06a2 2 0 1 1-2.83-2.83l.06-.06a1.65 1.65 0 0 0 .33-1.82 1.65 1.65 0 0 0-1.51-1H3a2 2 0 0 1 0-4h.09A1.65 1.65 0 0 0 4.6 9a1.65 1.65 0 0 0-.33-1.82l-.06-.06a2 2 0 1 1 2.83-2.83l.06.06a1.65 1.65 0 0 0 1.82.33H9a1.65 1.65 0 0 0 1-1.51V3a2 2 0 0 1 4 0v.09a1.65 1.65 0 0 0 1 1.51 1.65 1.65 0 0 0 1.82-.33l.06-.06a2 2 0 1 1 2.83 2.83l-.06.06a1.65 1.65 0 0 0-.33 1.82V9a1.65 1.65 0 0 0 1.51 1H21a2 2 0 0 1 0 4h-.09a1.65 1.65 0 0 0-1.51 1z'%3E%3C/path%3E%3C/svg%3E");
}
.page-cleaning .content-main::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='240' height='240' viewBox='0 0 24 24' fill='none' stroke='%2300bcd4' stroke-width='1.2'%3E%3Cpath d='m12 3-1.912 5.813a2 2 0 0 1-1.275 1.275L3 12l5.813 1.912a2 2 0 0 1 1.275 1.275L12 21l1.912-5.813a2 2 0 0 1 1.275-1.275L21 12l-5.813-1.912a2 2 0 0 1-1.275-1.275Z'%3E%3C/path%3E%3C/svg%3E");
}
.page-support .content-main::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='240' height='240' viewBox='0 0 24 24' fill='none' stroke='%23e91e63' stroke-width='1.2'%3E%3Cpath d='M22 16.92v3a2 2 0 0 1-2.18 2 19.79 19.79 0 0 1-8.63-3.07 19.5 19.5 0 0 1-6-6 19.79 19.79 0 0 1-3.07-8.67A2 2 0 0 1 4.11 2h3a2 2 0 0 1 2 1.72 12.84 12.84 0 0 0 .7 2.81 2 2 0 0 1-.45 2.11L8.09 9.91a16 16 0 0 0 6 6l1.27-1.27a2 2 0 0 1 2.11-.45 12.84 12.84 0 0 0 2.81.7A2 2 0 0 1 22 16.92z'%3E%3C/path%3E%3C/svg%3E");
}
.page-administrasi .content-main::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='240' height='240' viewBox='0 0 24 24' fill='none' stroke='%239c27b0' stroke-width='1.2'%3E%3Crect x='2' y='7' width='20' height='14' rx='2' ry='2'%3E%3C/rect%3E%3Cpath d='M16 21V5a2 2 0 0 0-2-2h-4a2 2 0 0 0-2 2v16'%3E%3C/path%3E%3C/svg%3E");
}

/* Dark Theme Graphics overrides */
[data-theme="dark"] .page-driver .content-main::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='240' height='240' viewBox='0 0 24 24' fill='none' stroke='%23ffffff' stroke-width='1.2'%3E%3Crect x='1' y='3' width='15' height='13'%3E%3C/rect%3E%3Cpolygon points='16 8 20 8 23 11 23 16 16 16 16 8'%3E%3C/polygon%3E%3Ccircle cx='5.5' cy='18.5' r='2.5'%3E%3C/circle%3E%3Ccircle cx='18.5' cy='18.5' r='2.5'%3E%3C/circle%3E%3C/svg%3E");
}
[data-theme="dark"] .page-helper .content-main::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='240' height='240' viewBox='0 0 24 24' fill='none' stroke='%23ffffff' stroke-width='1.2'%3E%3Cpath d='M21 8a2 2 0 0 0-1-1.73l-7-4a2 2 0 0 0-2 0l-7 4A2 2 0 0 0 3 8v8a2 2 0 0 0 1 1.73l7 4a2 2 0 0 0 2 0l7-4A2 2 0 0 0 21 16Z'%3E%3C/path%3E%3Cpath d='m3.3 7 8.7 5 8.7-5'%3E%3C/path%3E%3Cpath d='M12 22V12'%3E%3C/path%3E%3C/svg%3E");
}
[data-theme="dark"] .page-technical .content-main::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='240' height='240' viewBox='0 0 24 24' fill='none' stroke='%23ffffff' stroke-width='1.2'%3E%3Ccircle cx='12' cy='12' r='3'%3E%3C/circle%3E%3Cpath d='M19.4 15a1.65 1.65 0 0 0 .33 1.82l.06.06a2 2 0 1 1-2.83 2.83l-.06-.06a1.65 1.65 0 0 0-1.82-.33 1.65 1.65 0 0 0-1 1.51V21a2 2 0 0 1-4 0v-.09A1.65 1.65 0 0 0 9 19.4a1.65 1.65 0 0 0-1.82.33l-.06.06a2 2 0 1 1-2.83-2.83l.06-.06a1.65 1.65 0 0 0 .33-1.82 1.65 1.65 0 0 0-1.51-1H3a2 2 0 0 1 0-4h.09A1.65 1.65 0 0 0 4.6 9a1.65 1.65 0 0 0-.33-1.82l-.06-.06a2 2 0 1 1 2.83-2.83l.06.06a1.65 1.65 0 0 0 1.82.33H9a1.65 1.65 0 0 0 1-1.51V3a2 2 0 0 1 4 0v.09a1.65 1.65 0 0 0 1 1.51 1.65 1.65 0 0 0 1.82-.33l.06-.06a2 2 0 1 1 2.83 2.83l-.06.06a1.65 1.65 0 0 0-.33 1.82V9a1.65 1.65 0 0 0 1.51 1H21a2 2 0 0 1 0 4h-.09a1.65 1.65 0 0 0-1.51 1z'%3E%3C/path%3E%3C/svg%3E");
}
[data-theme="dark"] .page-cleaning .content-main::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='240' height='240' viewBox='0 0 24 24' fill='none' stroke='%23ffffff' stroke-width='1.2'%3E%3Cpath d='m12 3-1.912 5.813a2 2 0 0 1-1.275 1.275L3 12l5.813 1.912a2 2 0 0 1 1.275 1.275L12 21l1.912-5.813a2 2 0 0 1 1.275-1.275L21 12l-5.813-1.912a2 2 0 0 1-1.275-1.275Z'%3E%3C/path%3E%3C/svg%3E");
}
[data-theme="dark"] .page-support .content-main::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='240' height='240' viewBox='0 0 24 24' fill='none' stroke='%23ffffff' stroke-width='1.2'%3E%3Cpath d='M22 16.92v3a2 2 0 0 1-2.18 2 19.79 19.79 0 0 1-8.63-3.07 19.5 19.5 0 0 1-6-6 19.79 19.79 0 0 1-3.07-8.67A2 2 0 0 1 4.11 2h3a2 2 0 0 1 2 1.72 12.84 12.84 0 0 0 .7 2.81 2 2 0 0 1-.45 2.11L8.09 9.91a16 16 0 0 0 6 6l1.27-1.27a2 2 0 0 1 2.11-.45 12.84 12.84 0 0 0 2.81.7A2 2 0 0 1 22 16.92z'%3E%3C/path%3E%3C/svg%3E");
}
[data-theme="dark"] .page-administrasi .content-main::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='240' height='240' viewBox='0 0 24 24' fill='none' stroke='%23ffffff' stroke-width='1.2'%3E%3Crect x='2' y='7' width='20' height='14' rx='2' ry='2'%3E%3C/rect%3E%3Cpath d='M16 21V5a2 2 0 0 0-2-2h-4a2 2 0 0 0-2 2v16'%3E%3C/path%3E%3C/svg%3E");
}

/* Sidebar Services Switcher */
.sidebar-nav-menu {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.sidebar-nav-item a {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 8px;
  color: var(--text);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.95rem;
  transition: all 0.3s ease;
}

.sidebar-nav-item a:hover {
  background: rgba(47, 125, 255, 0.08);
  border-color: var(--primary);
  color: var(--primary);
  transform: translateX(4px);
}

.sidebar-nav-item.active a {
  background: var(--primary);
  border-color: var(--primary);
  color: white;
}

/* Modern WhatsApp & Email buttons styling */
.contact-buttons-group {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 16px;
}

.contact-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 20px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  transition: all 0.3s ease;
}

.btn-whatsapp {
  background: #25D366;
  color: white !important;
  box-shadow: 0 4px 12px rgba(37, 211, 102, 0.2);
}

.btn-whatsapp:hover {
  background: #20ba5a;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(37, 211, 102, 0.3);
}

.btn-gmail {
  background: #ea4335;
  color: white !important;
  box-shadow: 0 4px 12px rgba(234, 67, 53, 0.2);
}

.btn-gmail:hover {
  background: #d93025;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(234, 67, 53, 0.3);
}

/* Service Advantages Grid */
.service-advantages-section {
  margin-top: 48px;
  padding-top: 32px;
  border-top: 1px solid var(--border);
}

.service-advantages-section h2 {
  font-size: 1.6rem;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.service-advantages-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-bottom: 40px;
}

.advantage-card {
  background: var(--bg);
  border: 1px solid var(--border);
  padding: 24px;
  border-radius: 12px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.advantage-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(47, 125, 255, 0.08);
  border-color: var(--primary);
}

.advantage-card h3 {
  font-size: 1.1rem;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--text);
}

.advantage-card p {
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.6;
  margin-bottom: 0;
}

/* Service CTA Box */
.service-cta-box {
  background: linear-gradient(135deg, rgba(47, 125, 255, 0.05) 0%, rgba(47, 125, 255, 0.02) 100%);
  border: 1px solid var(--border);
  padding: 36px;
  border-radius: 16px;
  text-align: center;
  margin-top: 40px;
  box-shadow: 0 10px 30px rgba(18, 50, 75, 0.03);
}

.service-cta-box h3 {
  font-size: 1.5rem;
  margin-bottom: 12px;
}

.service-cta-box p {
  font-size: 0.95rem;
  color: var(--muted);
  margin-bottom: 24px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.service-cta-buttons {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.service-cta-buttons .contact-btn {
  flex: 0 1 200px;
  min-width: 160px;
}

/* Home Page Slider Additions */
.slide-advantages-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 16px;
  margin-bottom: 20px;
  list-style: none;
  padding: 0;
}

.slide-advantages-list li {
  font-size: 0.85rem;
  color: var(--muted);
  display: flex;
  align-items: center;
  gap: 6px;
  background: rgba(47, 125, 255, 0.06);
  padding: 4px 10px;
  border-radius: 99px;
  font-weight: 500;
}

[data-theme="dark"] .slide-advantages-list li {
  background: rgba(255, 255, 255, 0.05);
}

.slide-cta-wrapper {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.slide-cta-wrapper .contact-btn {
  padding: 8px 16px;
  font-size: 0.85rem;
  border-radius: 6px;
}

/* Responsive fixes */
@media (max-width: 768px) {
  .service-advantages-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  
  .service-cta-box {
    padding: 24px 16px;
  }
  
  .service-cta-buttons {
    flex-direction: column;
    align-items: stretch;
  }
  
  .service-cta-buttons .contact-btn {
    flex: 1;
    width: 100%;
  }

  .slide-cta-wrapper {
    width: 100%;
    justify-content: center;
    gap: 8px;
  }

  .slide-cta-wrapper .contact-btn {
    flex: 1;
  }

  .slide-advantages-list {
    justify-content: center;
  }
}

/* Sidebar Advantages Styling */
.sidebar-card.advantages-card {
  padding: 24px;
}

.sidebar-advantages {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.sidebar-adv-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.sidebar-adv-item .adv-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 8px;
  background: rgba(47, 125, 255, 0.08);
  color: var(--primary);
  flex-shrink: 0;
  transition: all 0.3s ease;
}

[data-theme="dark"] .sidebar-adv-item .adv-icon {
  background: rgba(255, 255, 255, 0.05);
}

.sidebar-adv-item:hover .adv-icon {
  background: var(--primary);
  color: white;
  transform: translateY(-2px);
}

.sidebar-adv-item .adv-icon svg {
  width: 20px;
  height: 20px;
}

.sidebar-adv-item .adv-info h4 {
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 4px;
  color: var(--text);
  line-height: 1.3;
}

.sidebar-adv-item .adv-info p {
  font-size: 0.82rem;
  color: var(--muted);
  line-height: 1.5;
  margin: 0;
}



/* Staffing Calculator Section */
.staffing-calculator {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 30px;
  margin-top: 40px;
}

.staffing-calculator h3 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--text);
}

.calc-intro {
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.6;
  margin-bottom: 24px;
}

.calc-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 24px;
  margin-bottom: 24px;
}

.calc-control label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--muted);
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.counter-widget {
  display: flex;
  align-items: center;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: var(--surface);
  overflow: hidden;
  width: 140px;
}

.counter-btn {
  width: 44px;
  height: 44px;
  background: none;
  border: none;
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--muted);
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease;
}

.counter-btn:hover {
  background: var(--bg);
  color: var(--primary);
}

.counter-val {
  flex: 1;
  width: 100%;
  height: 44px;
  border: none;
  text-align: center;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text);
  background: transparent;
}

.duration-widget {
  display: flex;
  gap: 8px;
}

.duration-btn {
  flex: 1;
  height: 44px;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: var(--surface);
  color: var(--text);
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
}

.duration-btn:hover {
  border-color: var(--primary);
  color: var(--primary);
}

.duration-btn.active {
  background: var(--primary);
  border-color: var(--primary);
  color: white;
  box-shadow: 0 4px 10px rgba(47, 125, 255, 0.15);
}

.calc-summary {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 20px;
  margin-bottom: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.summary-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.9rem;
}

.summary-item .label {
  color: var(--muted);
}

.summary-item .value {
  font-weight: 600;
  color: var(--text);
}

.calc-cta-btn {
  width: 100%;
  justify-content: center;
  text-align: center;
}

/* SOP Timeline Section */
.sop-section {
  margin-top: 40px;
  padding-top: 40px;
  border-top: 1px solid var(--border);
}

.sop-section h3 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 24px;
  color: var(--text);
}

.sop-timeline {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  position: relative;
}

.sop-step {
  position: relative;
  text-align: center;
}

.sop-badge {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--primary);
  color: white;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 12px;
  border: 3px solid var(--surface);
  box-shadow: 0 0 0 1px var(--border);
  position: relative;
  z-index: 2;
}

.sop-step h4 {
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 6px;
  color: var(--text);
}

.sop-step p {
  font-size: 0.8rem;
  color: var(--muted);
  line-height: 1.5;
  margin: 0;
}

.sop-timeline::before {
  content: '';
  position: absolute;
  top: 18px;
  left: 12.5%;
  right: 12.5%;
  height: 2px;
  background: var(--border);
  z-index: 1;
}

/* Certification Section */
.certification-section {
  margin-top: 40px;
  padding-top: 40px;
  border-top: 1px solid var(--border);
}

.certification-section h3 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 16px;
  color: var(--text);
}

.cert-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.cert-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 16px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  transition: all 0.3s ease;
}

.cert-card:hover {
  background: var(--surface);
  border-color: var(--primary);
  transform: translateY(-3px);
}

.cert-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--surface);
  border: 1px solid var(--border);
  color: var(--primary);
}

.cert-card h4 {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--text);
  margin: 0;
}

.cert-card p {
  font-size: 0.75rem;
  color: var(--muted);
  line-height: 1.4;
  margin: 0;
}

@media (max-width: 992px) {
  .calc-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}

@media (max-width: 768px) {
  .sop-timeline {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .sop-timeline::before {
    display: none;
  }
  .cert-grid {
    grid-template-columns: 1fr;
  }
}

/* Sticky Sidebar & Pricing Overrides */
.sidebar {
  display: flex;
  flex-direction: column;
  gap: 24px;
  position: sticky;
  top: 110px; /* Offset untuk Floating Navbar */
  align-self: start;
}

.price-item {
  padding: 14px 16px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-left: 4px solid var(--primary);
  border-radius: 12px;
  transition: all 0.3s ease;
  margin-bottom: 10px;
}

.price-item:last-child {
  margin-bottom: 0;
}

.price-item:hover {
  background: var(--surface);
  border-color: var(--primary);
  transform: translateX(4px);
  box-shadow: 0 4px 12px rgba(47, 125, 255, 0.04);
}

.price-item h4 {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 4px;
}

.price-item .price {
  font-size: 0.82rem;
  color: var(--muted);
  font-weight: 500;
  margin: 0;
}
