/* ============================================================
   BRAND 2 MEDIA — COMPONENTS STYLES
   ============================================================ */

/* ------------------------------------------------------------
   PROCESS WORKFLOW CARDS & TIMELINE
   ------------------------------------------------------------ */
.process-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  position: relative;
}

.process-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 36px 30px;
  position: relative;
  transition: transform 0.3s cubic-bezier(0.2, 0, 0, 1), box-shadow 0.3s, border-color 0.3s;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.process-card:hover {
  transform: translateY(-6px);
  border-color: var(--accent);
  box-shadow: var(--shadow-lg);
}

.process-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--accent), transparent);
  opacity: 0;
  transition: opacity 0.3s;
}

.process-card:hover::before {
  opacity: 1;
}

.process-step-num {
  font-family: var(--font-head);
  font-size: 2.8rem;
  font-weight: 900;
  color: var(--accent);
  opacity: 0.25;
  line-height: 1;
  margin-bottom: 0;
}

.process-card:hover .process-step-num {
  opacity: 0.9;
}

.process-icon-wrap {
  width: 54px;
  height: 54px;
  border-radius: 14px;
  background: var(--accent-light);
  color: var(--accent);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  line-height: 1;
  margin-bottom: 0;
  flex-shrink: 0;
}

.process-title {
  font-family: var(--font-head);
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--text);
  margin-top: 20px;
  margin-bottom: 14px;
}

.process-desc {
  font-size: 0.94rem;
  color: var(--text3);
  line-height: 1.65;
  margin-bottom: 20px;
  flex-grow: 1;
}

.process-deliverables {
  list-style: none;
  padding: 0;
  margin: 0;
  border-top: 1px solid var(--border);
  padding-top: 16px;
}

.process-deliverables li {
  font-size: 0.84rem;
  color: var(--text2);
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 8px;
  line-height: 1.5;
}

.process-deliverables li i {
  color: var(--accent);
  font-size: 0.9rem;
  margin-top: 3px;
  flex-shrink: 0;
  line-height: 1;
}

/* ------------------------------------------------------------
   ERROR PAGE (404 / 403 / 500)
   ------------------------------------------------------------ */
.error-page-wrapper {
  min-height: 75vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 140px 20px 80px;
  text-align: center;
}

.error-badge-code {
  font-family: var(--font-head);
  font-size: clamp(5rem, 15vw, 10rem);
  font-weight: 900;
  line-height: 1;
  color: var(--accent);
  margin-bottom: 10px;
  text-shadow: 0 10px 30px var(--accent-glow);
}

.error-heading {
  font-family: var(--font-head);
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  font-weight: 800;
  color: var(--text);
  margin-bottom: 18px;
}

.error-message {
  font-size: 1.1rem;
  color: var(--text3);
  max-width: 540px;
  margin: 0 auto 32px;
  line-height: 1.7;
}

/* ------------------------------------------------------------
   NAVBAR ACTIVE ROUTE INDICATORS
   ------------------------------------------------------------ */
.nav-link.active-route {
  color: var(--accent) !important;
  font-weight: 700;
}

.nav-link.active-route::after {
  content: '';
  display: block;
  width: 20px;
  height: 2px;
  background: var(--accent);
  margin: 4px auto 0;
  border-radius: 2px;
}

/* ------------------------------------------------------------
   ACCESSIBILITY & SCREEN READERS
   ------------------------------------------------------------ */
.sr-only,
.visually-hidden {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

/* ------------------------------------------------------------
   VALUE PILLARS / BADGES
   ------------------------------------------------------------ */
.value-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 32px 28px;
  transition: transform 0.25s, border-color 0.25s, box-shadow 0.25s;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.value-card:hover {
  transform: translateY(-4px);
  border-color: var(--accent);
  box-shadow: var(--shadow-md);
}

.value-card-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: var(--accent-light);
  color: var(--accent);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  line-height: 1;
  margin-bottom: 18px;
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.value-card:hover .value-card-icon {
  background: var(--accent);
  color: #fff;
  transform: scale(1.08);
}

.value-card h5 {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1.15rem;
  margin-bottom: 10px;
  color: var(--text);
  line-height: 1.3;
}

.value-card p {
  font-size: 0.92rem;
  color: var(--text3);
  margin: 0;
  line-height: 1.65;
  flex-grow: 1;
}
