/* Daphas Theme Utility Classes */
.text-xfix-primary {
    color: var(--xfix-primary);
}
.text-xfix-primary-dark {
    color: var(--xfix-primary-dark);
}
.text-xfix-text-dark {
    color: var(--xfix-text-dark);
}
.text-xfix-muted {
    color: var(--xfix-text-muted);
}
.bg-xfix-gradient {
    background: var(--xfix-primary-gradient);
}
.bg-xfix-light {
    background: var(--xfix-bg-light);
}
.bg-xfix-white {
    background: var(--xfix-bg-white);
}
.border-xfix-light {
    border-color: var(--xfix-border-light);
}
.rounded-xfix {
    border-radius: var(--xfix-radius);
}
.rounded-xfix-lg {
    border-radius: var(--xfix-radius-lg);
}
.rounded-xfix-xl {
    border-radius: var(--xfix-radius-xl);
}
.shadow-xfix {
    box-shadow: var(--xfix-shadow);
}
.shadow-xfix-lg {
    box-shadow: var(--xfix-shadow-lg);
}
.btn-xfix-primary {
    background: var(--xfix-primary-gradient);
    color: white;
    border: none;
    border-radius: var(--xfix-radius-xl);
    padding: 0.75rem 2rem;
    transition: all 0.3s ease;
}
.btn-xfix-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--xfix-shadow-lg);
    filter: brightness(1.05);
    color: white;
}
.btn-xfix-outline {
    border: 1px solid var(--xfix-primary);
    color: var(--xfix-primary);
    border-radius: var(--xfix-radius-xl);
    padding: 0.75rem 2rem;
    background: transparent;
}
.btn-xfix-outline:hover {
    background: var(--xfix-primary);
    color: white;
}
.card-xfix {
    border: none;
    border-radius: var(--xfix-radius);
    box-shadow: var(--xfix-shadow);
    transition: transform 0.2s, box-shadow 0.2s;
}
.card-xfix:hover {
    transform: translateY(-4px);
    box-shadow: var(--xfix-shadow-lg);
}
.section-title {
    color: var(--xfix-text-dark);
    font-weight: 700;
    position: relative;
    display: inline-block;
}
.section-title:after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: var(--xfix-primary);
    margin: 0.5rem auto 0;
    border-radius: var(--xfix-radius-sm);
}
.navbar-xfix {
    background: var(--xfix-bg-white);
    box-shadow: var(--xfix-shadow);
}

a, .text-decoration-line-none {
    text-decoration-line: none !important;
}

.step-circle {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    background-color: #e9ecef;
    color: #6c757d;
}

.step-item .step-label {
    font-size: 0.85rem;
    color: #495057;
}

.step-card {
    transition: all 0.2s ease;
}

.progress-bar {
    transition: width 0.3s ease;
}