/* California Dental Credentialing Page Styles */

:root {
  --cal-primary: #0b2240;
  --cal-purple: #3c1b75;
  --cal-purple-light: #f5f3ff;
  --cal-green: #1a9c40;
  --cal-green-hover: #148033;
  --cal-bg-light: #f8fafc;
  --cal-border: #e2e8f0;
  --cal-text-dark: #1e293b;
  --cal-text-muted: #64748b;
  --cal-transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Breadcrumb Styles */
.cal-breadcrumbs {
  font-size: 14px;
  color: var(--cal-text-muted);
}
.cal-breadcrumbs a {
  color: var(--cal-text-muted);
  text-decoration: none;
  transition: var(--cal-transition);
}
.cal-breadcrumbs a:hover {
  color: var(--cal-purple);
  text-decoration: underline;
}

/* Hero Section */
.cal-hero-section {
  position: relative;
  background-color: var(--cal-bg-light);
  border-bottom: 1px solid var(--cal-border);
}
.cal-hero-bg {
  position: absolute;
  top: 0;
  right: 0;
  width: 67%;
  height: 100%;
  background-size: cover;
  background-position: center;
  z-index: 1;
  opacity: 0.9;
  -webkit-mask-image: linear-gradient(to right, transparent 0%, rgba(0, 0, 0, 1) 35%);
  mask-image: linear-gradient(to right, transparent 0%, rgba(0, 0, 0, 1) 35%);
}
@media (max-width: 991.98px) {
  .cal-hero-bg {
    width: 100%;
    opacity: 0.12;
    mask-image: none;
    -webkit-mask-image: none;
  }
}
.cal-hero-content {
  position: relative;
  z-index: 2;
}
.cal-hero-title {
  color: var(--cal-primary);
  font-size: 3rem;
  line-height: 1.15;
  letter-spacing: -0.02em;
  font-weight: 800;
}
@media (max-width: 767.98px) {
  .cal-hero-title {
    font-size: 2.25rem;
  }
}
.cal-hero-subtitle {
  color: var(--cal-purple);
  font-weight: 600;
  font-size: 1.35rem;
  line-height: 1.4;
}
.cal-hero-desc {
  color: var(--cal-text-muted);
  font-size: 1.05rem;
  line-height: 1.6;
}

/* Bullets */
.cal-bullet-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14.5px;
  font-weight: 600;
  color: var(--cal-text-dark);
  margin-bottom: 12px;
}
.cal-bullet-item i {
  color: var(--cal-green);
  font-size: 16px;
}

/* Badges */
.cal-hero-badges {
  font-size: 13.5px;
  font-weight: 600;
  color: var(--cal-text-muted);
}
.cal-badge-item {
  display: flex;
  align-items: center;
  gap: 6px;
}
.cal-badge-item i {
  font-size: 14px;
}

/* Buttons */
.cal-btn-primary {
  background-color: var(--cal-green);
  color: #ffffff !important;
  font-weight: 700;
  padding: 13px 26px;
  border-radius: 8px;
  border: none;
  box-shadow: 0 4px 6px -1px rgba(26, 156, 64, 0.2);
  transition: var(--cal-transition);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.cal-btn-primary:hover {
  background-color: var(--cal-green-hover);
  transform: translateY(-1px);
}
.cal-btn-secondary {
  background-color: #ffffff;
  color: var(--cal-text-dark) !important;
  font-weight: 700;
  padding: 13px 26px;
  border-radius: 8px;
  border: 1px solid var(--cal-border);
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.05);
  transition: var(--cal-transition);
}
.cal-btn-secondary:hover {
  background-color: var(--cal-bg-light);
  border-color: #cbd5e1;
  transform: translateY(-1px);
}

/* Sidebar Logo Card */
.cal-hero-sidebar-card {
  border-color: #f1f5f9 !important;
  max-width: 351px;
}
@media (max-width: 991.98px) {
  .cal-hero-sidebar-card {
    margin-right: auto;
  }
}
.cal-card-heading {
  color: var(--cal-purple);
  font-size: 1.25rem;
}
.cal-logo-row {
  border-bottom: 1px solid #f1f5f9;
  padding-bottom: 8px;
}
.cal-logo-row:last-child {
  border-bottom: none;
  padding-bottom: 0;
}
.cal-logo-img-wrapper {
  width: 100px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-shrink: 0;
}
.cal-logo-img-wrapper img {
  max-height: 100%;
  object-fit: contain;
}
.cal-logo-text-col {
  flex-grow: 1;
}
.cal-card-link {
  color: var(--cal-purple);
  transition: var(--cal-transition);
}
.cal-card-link:hover {
  color: var(--cal-primary);
  text-decoration: underline !important;
}

/* Section Title Line */
.cal-title-line {
  width: 40px;
  height: 3px;
  background-color: var(--cal-purple);
  margin: 10px auto 0;
  border-radius: 2px;
}

/* Feature Cards Grid */
.cal-feature-card {
  background-color: #ffffff;
  border: 1px solid #f1f5f9;
  border-radius: 12px;
  transition: var(--cal-transition);
}
.cal-feature-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.04);
}
.cal-feature-icon-wrapper {
  font-size: 28px;
  color: var(--cal-purple);
}

/* Serving Section */
.cal-serving-section {
  background-color: #f8fafc;
}
.cal-city-item {
  font-size: 15px;
  font-weight: 600;
  color: var(--cal-text-dark);
}
.cal-city-item i {
  color: var(--cal-purple);
}
.cal-practice-card {
  border-color: #f1f5f9 !important;
  transition: var(--cal-transition);
}
.cal-practice-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 12px -3px rgba(0, 0, 0, 0.04);
}
.cal-practice-icon-wrapper {
  width: 48px;
  height: 48px;
  background-color: #e6f6ec;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
}
.cal-arrow-link {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  transition: var(--cal-transition);
}
.cal-arrow-link:hover {
  text-decoration: underline !important;
}

/* Timeline & Requirements */
.cal-timeline::before {
  content: '';
  position: absolute;
  top: 10px;
  bottom: 10px;
  left: 17px;
  width: 2px;
  border-left: 2px dashed #cbd5e1;
}
.cal-timeline-item {
  padding-left: 18px;
}
.cal-timeline-circle {
  position: absolute;
  left: -27px;
  top: 2px;
  width: 36px;
  height: 36px;
  background-color: #ffffff;
  border: 2px solid var(--cal-purple);
  border-radius: 50%;
  color: var(--cal-purple);
  font-size: 15px;
  z-index: 2;
}
.cal-need-card {
  background-color: #f8fafc !important;
  border-color: #f1f5f9 !important;
}

/* Testimonials */
.cal-testimonials-section {
  background-color: #ffffff;
}
.cal-testimonial-card {
  border-color: #f1f5f9 !important;
}

/* Footer Purple Banner */
.cal-purple-cta {
  background: linear-gradient(135deg, #3c1b75, #220e46);
}
.cal-purple-cta-icon-wrapper {
  background-color: rgba(255, 255, 255, 0.12);
  width: 60px;
  height: 60px;
  flex-shrink: 0;
}
.cal-btn-cta-green {
  background-color: var(--cal-green);
  color: #ffffff !important;
  padding: 12px 24px;
  transition: var(--cal-transition);
}
.cal-btn-cta-green:hover {
  background-color: var(--cal-green-hover);
  transform: translateY(-1px);
}

/* Dark Footer highlights */
.cal-dark-highlights {
  background-color: #0b2240;
}
.cal-highlight-item {
  color: #ffffff;
  display: flex;
  align-items: center;
  gap: 8px;
}
.cal-highlight-item i {
  color: var(--cal-green);
}
@media (max-width: 767.98px) {
  .cal-dark-highlights {
    flex-direction: column;
    align-items: flex-start !important;
    gap: 12px;
  }
}
.text-green{
  color: var(--cal-green);
}
.gap-2\.5{
  gap: 10px;
}

@media (min-width: 768px) {
  .col-md-2-4 {
    flex: 0 0 auto;
    width: 20%;
  }
}
@media (min-width: 992px) {
  .col-lg-2-4 {
    flex: 0 0 auto;
    width: 20%;
  }
}

/* Premium Process Steps */
.process-steps-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  margin-top: 3.5rem;
}

@media (min-width: 992px) {
  .process-steps-container {
    flex-direction: row;
    align-items: flex-start;
    gap: 1rem;
  }
}

.process-step-item {
  position: relative;
  text-align: center;
  flex: 1;
  max-width: 320px;
}

.process-circle-wrapper {
  position: relative;
  width: 100px;
  height: 100px;
  margin: 0 auto 1.5rem;
}

.process-step-number {
  position: absolute;
  top: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 28px;
  height: 28px;
  background-color: var(--cal-green);
  color: #ffffff;
  font-weight: 700;
  font-size: 14px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2.5px solid #ffffff;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.1);
  z-index: 10;
}

.process-circle-icon {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background-color: #f0f5fa;
  border: 1.5px solid #e2e8f0;
  color: var(--cal-primary);
  font-size: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 15px rgba(11, 34, 64, 0.04);
  transition: var(--cal-transition);
}

.process-step-item:hover .process-circle-icon {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(11, 34, 64, 0.08);
  border-color: #cbd5e1;
  background-color: #eef4fc;
}

.process-step-title {
  color: var(--cal-primary) !important;
  font-weight: 700 !important;
  line-height: 1.3;
  margin-bottom: 0.5rem;
}

.process-step-desc {
  color: var(--cal-text-muted);
  line-height: 1.45;
  margin-bottom: 0;
}

.process-step-arrow {
  position: absolute;
  top: 50px;
  left: calc(50% + 50px);
  width: calc(100% - 100px);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 5;
  transform: translateY(-50%);
}

@media (min-width: 992px) {
  .process-step-arrow {
    display: flex;
  }
}

