/* CIDE OUR SERVICES — Page-Specific Stylesheet
   Depends on: cide-global.css (load that first)
   Last updated: 2026-05-26
   ============================================================
   Only rules that are NOT in cide-global.css live here.
   Do NOT add global components to this file.
   ============================================================

   Removals handled by linking cide-global.css:
   - .cide-section-intro, .cide-feature-card, .cide-service-card
   - .cide-service-banner (box-shadow also removed — global has none)
   - .cide-service-card border-left: #8a7a56 → fixed to var(--cu-gold) by global
   - .cide-background-gray, all .cide-content sections
   - .cide-ctaSection, .cide-ctaCard, .cide-ctaIcon
   - .cide-work-row, .cide-work-img-col, .cide-case-study-card
   - All responsive breakpoints for the above
   - .cide-ctaSection--centered .cide-ctaCard typo (230 px) — fixed by global

   Contents:
   1. Package Cards (.cide-package-card, --gold, --silver, --custom)
   2. Custom Column (.col-md-2-4)
   3. Timeline (.timeline-row, .step-number)
   4. Testimonial gap override (40px — global default is 20px)
*/


/* ============================================================
   1. PACKAGE CARDS
   Shared with Industry Services — three tiers: gold, silver, custom
   ============================================================ */

.cide-package-card {
  display: flex;
  flex-direction: column;
  width: 100%;
  background: var(--white);
  border-radius: 0 4px 4px 0;
  padding: 20px 24px;
  gap: 8px;
}

.cide-package-card strong {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text-dark);
  line-height: 1.4;
}

.cide-package-card p {
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 0;
}

.cide-package-card--gold {
  border: 1px solid var(--cu-gold);
  border-left: 4px solid var(--cu-gold);
}

.cide-package-card--silver {
  border: 1px solid #999999;
  border-left: 4px solid #999999;
}

.cide-package-card--custom {
  border: 1px solid var(--border-light);
  border-left: 4px solid var(--border-light);
}


/* ============================================================
   2. CUSTOM COLUMN WIDTH
   5-column grid (20% each) for package tier display
   ============================================================ */

.col-md-2-4 {
  flex: 0 0 20%;
  max-width: 20%;
}

@media (max-width: 767.98px) {
  .col-md-2-4 {
    flex: 0 0 50%;
    max-width: 50%;
  }
}


/* ============================================================
   3. TIMELINE
   Process steps with connecting line above step numbers
   ============================================================ */

.timeline-row {
  position: relative;
}

.timeline-row::before {
  content: "";
  position: absolute;
  top: 32px;
  left: 10%;
  right: 10%;
  height: 1px;
  background-color: var(--text-dark);
  z-index: 0;
}

@media (max-width: 767.98px) {
  .timeline-row::before {
    display: none;
  }
}

.timeline-row .small {
  font-size: 1rem !important;
  line-height: 1.6;
}

.timeline-row h5 {
  font-size: 1.1rem;
  color: var(--text-dark);
}

.timeline-row ~ .text-center h2,
.text-center.mb-5 h2 {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--text-dark);
}

.text-center.mb-5 p {
  font-size: 1.15rem !important;
  color: var(--text-muted);
}

.step-number {
  position: relative;
  z-index: 1;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--cu-gold);
  color: #000;
  font-size: 1.4rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}


/* ============================================================
   4. TESTIMONIAL GAP OVERRIDE
   Our Services uses 40px gap. Global default is 20px.
   ============================================================ */

.cide-testimonial {
  gap: 40px;
}
