/* Documentation specific styles */
.docs-card {
    transition: all 0.3s ease;
}

.docs-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

.docs-link {
    transition: all 0.3s ease;
    position: relative;
}

.docs-link:hover {
    padding-left: 1rem;
    color: #f97316;
}

.docs-link::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 2px;
    background-color: #f97316;
    transition: width 0.3s ease;
}

.docs-link:hover::before {
    width: 0.5rem;
}

.faq-item {
    transition: all 0.3s ease;
    cursor: pointer;
}

.faq-item:hover {
    background-color: #f9fafb;
    border-left: 4px solid #f97316;
    padding-left: 1rem;
}

.step-number {
    transition: all 0.3s ease;
}

.docs-card:hover .step-number {
    transform: scale(1.1);
    background-color: #f97316;
    color: white;
}

.docs-cta {
    background: linear-gradient(135deg, #f97316 0%, #dc2626 100%);
    position: relative;
    overflow: hidden;
}

.docs-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s;
}

.docs-cta:hover::before {
    left: 100%;
}
