/* =========================================================
   THIRD PARTY INSPECTION STYLESHEET (abhimo.com Style)
   All In One Technology - Turn-Key Projects & Quality Audits
   ========================================================= */

:root {
  --insp-primary: #0284c7;
  --insp-secondary: #0369a1;
  --insp-accent: #059669;
  --insp-amber: #d97706;
  --insp-glow: rgba(2, 132, 199, 0.15);
  --insp-card-bg: #ffffff;
}

/* Division Pill Badge (Abhimo style) */
.badge-inspection {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.45rem 1.1rem;
  border-radius: 9999px;
  background: rgba(2, 132, 199, 0.08);
  border: 1px solid rgba(2, 132, 199, 0.22);
  color: #0369a1;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
}

/* Audit Service Card (Abhimo Frosted Card) */
.audit-card {
  background: var(--insp-card-bg);
  border: 1px solid rgba(0, 119, 255, 0.12);
  border-radius: 20px;
  padding: 2rem;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 119, 255, 0.04);
}

.audit-card:hover {
  transform: translateY(-5px);
  border-color: rgba(2, 132, 199, 0.4);
  box-shadow: 0 20px 45px rgba(2, 132, 199, 0.14);
}

.audit-card h3 {
  color: #082032;
  font-weight: 700;
}

.audit-card p {
  color: #475569;
  text-align: justify;
  line-height: 1.8;
}

/* Workflow Stage Box */
.workflow-stage-box {
  background: var(--insp-card-bg);
  border: 1px solid rgba(0, 119, 255, 0.12);
  border-radius: 16px;
  padding: 1.5rem;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02);
}

.workflow-stage-box:hover {
  background: #ffffff;
  border-color: rgba(2, 132, 199, 0.35);
  transform: translateY(-3px);
  box-shadow: 0 12px 28px rgba(2, 132, 199, 0.1);
}

.workflow-stage-box h4 {
  color: #082032;
  font-weight: 700;
}

.workflow-stage-box p {
  color: #64748b;
  text-align: justify;
  line-height: 1.6;
}

/* Responsive Enhancements for Third Party Inspection */
@media (max-width: 640px) {
  .audit-card {
    padding: 1.25rem;
    border-radius: 16px;
  }
  .workflow-stage-box {
    padding: 1.15rem;
  }
}
